Results 1 to 8 of 8
Im reading through the Linux How-to forums about installing software from source.
It recommends saving source files to the /usr/local/src directory but whenever I try to save to that location ...
- 07-26-2007 #1Just Joined!
- Join Date
- Jul 2007
- Posts
- 7
"Do have permission"...
Im reading through the Linux How-to forums about installing software from source.
It recommends saving source files to the /usr/local/src directory but whenever I try to save to that location it wont download the file. So i have saved the file to my desktop and tried to copy it to that location and it informs me I dont have permission to copy files into the folder.
your #1 noob,
J.to.the.ason
- 07-26-2007 #2
You must have root privileges to access Folders outside of your Home Folder ( /home/user_is ).
Open Terminal and Execute 'su' command to gain root privileges.
Code:su cp ~/Desktop/<file_name> /usr/local/src
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 07-26-2007 #3Just Joined!
- Join Date
- Jul 2007
- Posts
- 7
i tried the su command earlier with no effect.
you command line after that (not sure what it does... transfer the file?) didnt work it said it couldnt find the directory.
i tried to edit the permissions for the /usr/local/src folder to allow me to write data into it but it says im not the owner.
i went into the user management utility and added myself to every group in the list and made my primary group "root" hoping that would make me owner... it did not.
i love linux and hope to raise above noob status someday... but for now this is frustrating.
- 07-26-2007 #4
Could you post the exact error message here?
Code:su cd ~/Desktop ls cp <file_name> /usr/local/src
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 07-26-2007 #5Just Joined!
- Join Date
- Jul 2007
- Posts
- 7
jason@linux-qohb:~> su
Password:
linux-qohb:/home/jason # cd ~/desktop
bash: cd: /root/desktop: No such file or directory
is what i keep getting.
- 07-26-2007 #6Just Joined!
- Join Date
- Jul 2007
- Posts
- 7
thanks for all the help by the way
- 07-26-2007 #7
cd to home folder of Normal User.
Code:su cd /home/<user_id>/Desktop
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 07-27-2007 #8


Reply With Quote
