![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| problem with dd command or maybe AFS problem | Anta | Shell Programming and Scripting | 0 | 08-25-2006 07:10 AM |
| SSH Problem auth problem | budrito | UNIX for Advanced & Expert Users | 1 | 03-17-2004 07:12 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Problem with /usr/bin
I installed an application in this location /root/jython and I added a link to the /usr/bin because i want everyone on the system to be able to execute this
ln -s /root/jython/jython jython I can execute this anywhere when i am logged in as root but when i change user to say juju it returns juju@sus:~>jython bash:jython: command not found |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Well, you can check if the other user has privileges to read/execute the directory (/root) and the file.
But I would install the application on another place, like /opt, and then add to the PATH the binary directory. Installing applications into root's home directory it's not a good choice. So, if you install the application on, let's say /opt/jython and the executable file is there, then you should do an export PATH=$PATH:/opt/jython:. Good luck. |
||||
| Google The UNIX and Linux Forums |