Find the answer to your Linux question:
Results 1 to 4 of 4
hi, so im new to linux, need it for a project. basically, im working off a cluster that runs on linux, i dont really know what distribution it is, but ...
  1. #1
    Just Joined!
    Join Date
    Jun 2010
    Posts
    2

    help with installation

    hi, so im new to linux, need it for a project. basically, im working off a cluster that runs on linux, i dont really know what distribution it is, but i dont think it will matter too much. Im trying to install something. I dled the source code did "./configure" and then i went into src directory and did "make install". the error message is that, i cannot create the directory /usr/local/lib/vmd. so...i believe this is because i am my own user and not the root...is there anyway to get around this? i need to install this and avoid asking the root user to do it for me. can i just install it on my own user account?

  2. #2
    Just Joined!
    Join Date
    Jun 2010
    Posts
    2

    installing without root access

    hi, i need to install something on linux. got source code. --> did "./configure" worked fine --> did "make" worked fine, i think --> "make install" returns a message like "mkdir /usr/local/.... ermission denied"

    I assume this is because i am not the root user and am trying to install software. I do not have root access. Can I install something on my own user account? how? change the configure file? is that it?

    also I have tried to add the prefix to ./configure command "./configure --prefix=/home" <-- this does not work

  3. #3
    Linux Newbie
    Join Date
    Oct 2008
    Posts
    140
    As long as the source and prefix are in your own directory, most programs ought to go in. Does the program require root access to run? That could be a problem.

  4. #4
    Trusted Penguin jayd512's Avatar
    Join Date
    Feb 2008
    Location
    Kentucky
    Posts
    4,071
    I've not tried to install without root access, and I'm not at my box right now... but try this instead:
    Code:
    ./configure --prefix=$HOME/install
    or this

    Code:
    ./configure --prefix=/home/user_name/bin
    Let us know if it works.
    Jay

    New users, read this first.
    New Member FAQ
    Registered Linux User #463940
    I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...