Results 1 to 2 of 2
ive been reading that if i wanna install a program without root password i can use a prefix which user has access to can someone please explain this to me ...
- 03-09-2007 #1
installing programs using prefix
ive been reading that if i wanna install a program without root password i can use a prefix which user has access to can someone please explain this to me as i cant quite fully understand how to do it thank you
- 03-09-2007 #2
During the configure process, you enter the "--prefix=/some/path" flag e.g. to install the package to /home/user/mypackages, you would do something like
Some packages like Firefox, Eclipse, RealPlayer etc can be installed in your home directory without any compiling because they are already compiled and include executable files to run the program.Code:$./configure --prefix=/home/user/mypackages $make $make install
RPMs, DEBs and other binary packages cannot be installed in your home directory because the path to which they can be installed is fixed and only writable by root.


Reply With Quote