Hi, trying to understand more about symblic link, when I compiled a program called "match" in one folder
I want this program to be accessible like a system command by putting a symbolic link in
Not by setting the $PATH method in .bashrc at this time.
What I did is:
I was hoping to create the command match in /usr/bin/. The fact is the link is there but not executable as in the local folder: ~/downloadsoftware/match which is executable. When I tried:
It shows nothing but match is in /usr/bin/. If I go to /usr/bin/ and do
Why is it like this? I thought
should work for any circumstances. What did I miss? Thank you!
Do
to see what you have done.
The /path/to/source/file must be absolute or relative to the /path/to/destination/.
would be relative to /usr/bin/ i.e. point to itself.
or
is correct, because the /path/to/source/file is absolute.
This User Gave Thanks to MadeInGermany For This Post:
Thanks!
I did noticed sometimes that ls -l indicated the link is actually pointed to itself. It seems to me the trick is this statement
but the man page does not provide enough information about this. More care should be taken next time to create a soft link. Thanks a lot!
Hi everybody,
I read about treads realted to this issue but they did not resovle issue given below.
Please help me resolve issue given below
I have html file under /srv/www/htdocs/actual_folder
ls actual_folder/
test.html
and following link works... (0 Replies)
Hi all,
Can anyone please confirm if the command below is the only way that I can get what the symbolic link is set to?
mnlxd110(oracle)/db/posd2/dba$: ls -l | grep "^l"
lrwxrwxrwx 1 oracle dba 28 Aug 9 2011 bdump -> diag/rdbms/posp1/posp1/trace
mnlxd110(oracle)/db/posd2/dba$:... (7 Replies)
Hello All,
This may be a silly question to some but I am really stuck.
Is there a way to reverse the following;
sudo rm /bin/sh
sudo ln -s /bin/bash /bin/sh
It was part of a driver compile/installation procedure by Digi for Ubuntu stating that dash isn't supported and a symbolic link... (2 Replies)
Hi,
i am trying to create sym links on sles 11 , but it seems i am doing something wrong.
oracle@tests:/u01/app/oracle/oradata/ACIS> pwd
/u01/app/oracle/oradata/ACIS
oracle@tests:/u01/app/oracle/oradata/ACIS> ln -s /db/ACIS/dbase/dbf/ /u01/app/oracle/oradata/ACIS/... (2 Replies)
hello folks
how y'all doin
well i have some questions about symbolic link and hard link
hope some one answer me
i open terminal and join as root
and i wrote ln -s blah blah
then i wrote ls
i see red file called blah blah
but didn't understand what is this can some one explain and... (2 Replies)
I have just tried to make my first shortcut aka symbolic link.
I entered this command:
ln -s /one/two/three/four/help/admin admindirectory
to make a link called 'admindirectory' that would take me to:
/one/two/three/four/help/admin
It seems to have created a directory called... (5 Replies)
question abt symbolic link ...
i'm doing the following ...
ln -s x.sh ./scripts/y.sh
and
cat ./scripts/y.sh
it is giving following error
cat: cannot open y.sh
Any reason u an think of ?
But it is working fine when i goto scripts directory and cretae the symbolic link.
... (1 Reply)
I was wondering is it possible todo something like following:
A) Settings:-
- 2 servers on the network
- both can be reached via /net/SERVER1/datadir and /net/SERVER2/datadir
- i'm running rsync to syncronize the data coming to server1 from whatever application
B) Wanted:
on other... (2 Replies)