LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 11-30-2004, 12:32 PM   #1
tortle
Newbie
 
Registered: Jul 2004
Location: Wisconsin
Distribution: OpenSUSE, SUSE, Slackware
Posts: 22

Rep: Reputation: 15
bash: ln and relative paths


Hello:

I just tried an 'ln -s' command in bash and got an unexpected result:

Code:
root@myhost:/usr/local/pkgs/mypkg# ln -s manual.html /usr/doc/mypkg/
root@myhost:/usr/local/pkgs/mypkg# cd /usr/doc/mypkg/
root@myhost:/usr/doc/mypkg# ls -l
total 1
lrwxrwxrwx  1 root root 12 2004-11-30 11:55 manual.html -> manual.html
'manual.html' ended up being a symbolic link to itself (?) rather than to the source that I thought I had specified.

I understand that the fix is to rm the existing link and then:

Code:
root@myhost:/usr/doc/mypkg# ln -s /usr/local/pkgs/mypkg/manual.html .
I did that and it worked. I am just wondering if anyone can provide insight as to why the relative paths that I specified in the original ln command were interpreted in the way that they were. TIA.

Last edited by tortle; 11-30-2004 at 12:33 PM.
 
Old 11-30-2004, 12:50 PM   #2
Hko
Senior Member
 
Registered: Aug 2002
Location: Groningen, The Netherlands
Distribution: Debian
Posts: 2,536

Rep: Reputation: 111Reputation: 111
Yes. "ln" sees this as "create a symlink in /usr/doc/mypkg/". To which file it doesn't know.

You need to think the other way around:

Code:
cd /usr/doc/mypkg
ln -s /usr/local/pkgs/mypkg/manual.html .
Or, if you really want to do it with relative paths:
Code:
cd /usr/doc/mypkg
ln -s ../../local/pkgs/mypkg/manual.html .
 
Old 12-01-2004, 11:38 AM   #3
tortle
Newbie
 
Registered: Jul 2004
Location: Wisconsin
Distribution: OpenSUSE, SUSE, Slackware
Posts: 22

Original Poster
Rep: Reputation: 15
Hi Hko:

Quote:
"ln" sees this as "create a symlink in /usr/doc/mypkg/".
Yes; and that was the intent. The part that came out wrong is that, instead of:

"create a symlink at /usr/doc/mypkg/manual.html that points to /usr/local/pkgs/mypkg/manual.html "

ln understood:

"create a symlink at /usr/doc/mypkg/manual.html that points to /usr/doc/mypkg/manual.html"

The question is, "why?" The form of the ln command (according to the man page) is:
Code:
ln src [dest]
So the command that I am trying to construct, using absolute paths, is:

Code:
ln -s /usr/local/pkgs/mypkg/manual.html /usr/doc/mypkg/manual.html
I should be able to issue that command from anywhere and get the correct result.

If my current working directory is /usr/local/pkgs/, I should be able to omit that part from either the 'src' or 'dest' part. So (since that is where I was), I should be able to abbreviate the above to:

Code:
ln -s manual.html /usr/doc/mypkg/manual.html
But that is not how the command was interpreted. (I also omitted the filename in the [dest] part, but I think the above is enough to illustrate my question.)

I am trying to understand why. Is it because:

-- I am not understanding how relative paths work under *nix/Linux/slackware
-- ln treats relative paths in an unusual but correct way
-- the fact that I omitted the filename in the 'dest' part changes something (what?)
-- there is a bug in ln

or some other reason?

Thanks,
tortle

Last edited by tortle; 12-01-2004 at 11:39 AM.
 
Old 12-02-2004, 03:45 AM   #4
dustu76
Member
 
Registered: Sep 2004
Distribution: OpenSuSe
Posts: 153

Rep: Reputation: 30
From ln man on solaris:

Quote:
-s Create a symbolic link.

If the -s option is used with two arguments, target
may be an existing directory or a non-existent file.
If target already exists and is not a directory, an
error is returned. source_file may be any path name
and need not exist. If it exists, it may be a file or
directory and may reside on a different file system
from target. If target is an existing directory, a
file is created in directory target whose name is
source_file or the last component of source_file. This
file is a symbolic link that references source_file.
If target does not exist, a file with name target is
created and it is a symbolic link that references
source_file.
ln just creates the symlink entry in the target_directory. In case there is no such file in the target_directory, it is a symlink to itself.

ln has no business guessing what you "intended" to do. Try this:

ln -s somefile

where "somefile" doesnt exist in the current directory.

Then do "vi somefile" ...

HTH.
 
Old 12-02-2004, 05:49 AM   #5
LasseW
Member
 
Registered: Oct 2004
Distribution: Fedora 7, OpenSuse 10.2
Posts: 108

Rep: Reputation: 15
The dest is a file you create and you can expect exactly the behaviour you're describing, ie omitting the dir path puts the link in your default dir. The source is the contents of the link.

ln -s manual /my/dir/manual1
ln -s /some/dir/manual /my/dir/manual2
cd /tmp
ls -l /my/dir/manual1 # same as ls -l manual, ie /tmp/manual
ls -l /my/dir/manual2 # same as ls -l /some/dir/manual
 
Old 05-10-2010, 03:36 AM   #6
ptyxs
LQ Newbie
 
Registered: May 2010
Distribution: Mandriva
Posts: 2

Rep: Reputation: 0
Though I may be misguided, I feel that no real answer was given to tortle's posts in this thread.

The question might be asked again, no ?

I wonder whether the problem is perhaps just with the man page where I find :

Quote:
SYNOPSIS
ln [OPTION]... [-T] TARGET LINK_NAME (1st form)
ln [OPTION]... TARGET (2nd form)
ln [OPTION]... TARGET... DIRECTORY (3rd form)
ln [OPTION]... -t DIRECTORY TARGET... (4th form)
and later on :

Quote:
In the 3rd and 4th forms, create links to each TARGET in DIRECTORY.
which, as I understand it, should permit the command issued by tortle (which seems to match 3rd form).
 
0 members found this post helpful.
Old 05-10-2010, 04:05 AM   #7
grail
LQ Guru
 
Registered: Sep 2009
Location: Perth
Distribution: Manjaro
Posts: 10,007

Rep: Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192
Yes nice to provide the information, but instead of resurrecting an ancient thread, you should have just created your own as an information
only one. The issue you have here is that it will never (well very unlikely due to age) be marked as SOLVED, so your information will still be lost
to those users seeking this information as they will disregard any not marked as so.
 
Old 05-10-2010, 05:04 AM   #8
ptyxs
LQ Newbie
 
Registered: May 2010
Distribution: Mandriva
Posts: 2

Rep: Reputation: 0
I understand your point. However, tortle posts express the problem very clearly and I saw no reason to duplicate them.
Moreover, this thread is easily found on the Web, if you try a search on the ln command, and for that reason is still worth discussing, in my opinion.
 
Old 05-10-2010, 05:50 AM   #9
grail
LQ Guru
 
Registered: Sep 2009
Location: Perth
Distribution: Manjaro
Posts: 10,007

Rep: Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192Reputation: 3192
See I am not saying it can't be found, let us face it, you found it, however, the standard on this forum is that once a problem has a solution
it is marked with the word SOLVED. If you look in the search engine you will see that it is also one of the choices you can make, ie to restrict your
search to only those marked as SOLVED.
Assuming you do this first but do not find a result, when you open your search, most (not all of course) people will ignore anything that is over a certain
age as if it has not been SOLVED by now then it is more than likely redundant.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Absolute and relative paths Gins Linux - General 6 11-08-2008 08:48 PM
Symbolic Links, directories, and relative paths (../). Can it be done? jimwillsher Linux - Newbie 1 03-11-2005 05:27 PM
relative/absolute paths in Java djgerbavore Programming 2 10-26-2004 08:01 PM
Settiing paths for bash jgoggel Programming 4 07-23-2004 08:41 AM
program that generates relative paths? TheMaXX Linux - Software 1 10-21-2003 02:17 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 06:01 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration