Hi All of Unix/Linux professional
Q.Why soft link file not open by cat command. Ihave make
following symbolic link but when i open with #cat
linkfilename it does not oped please see the following code
and try to answer.
# ln -s file1 ~/mydir/filea
[root@dhcppc0 ~]# cd mydir
[root@dhcppc0 mydir]# ls -l
total 4
lrwxrwxrwx 1 root root 5 2010-04-04 09:04 filea -> file1
[root@dhcppc0 mydir]# cat filea
cat: filea: No such file or directory
Answers were Sorted based on User's Feedback
Answer / kristofw
the problem arises because you did not provide path
information to the target file. ln will create the link
pointing to a file1 in the same directory as the link
itself. If you do add path information to the target, it
will work :
# ln -s ~/file1 ~/mydir/filea
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / nikhil maggu
Hi,
First of all a soft link is not an actual file it refers a
link to the original file at different location.
and cat shows the content of a file having data, info etc.
But "ln" never saves any info it just a reference of
original file to a different location
| Is This Answer Correct ? | 4 Yes | 3 No |
What is mkdir?
Enlist some linux networking and troubleshooting commands?
What is the root directory linux?
What command would you use to create an empty file without opening it to edit it?
How do I check command history?
Explain about document formatting?
What is ls command and what it does?
How do I find the linux version?
have you ever got warning message from unix admin that file system running out of space or not enough disk space?what will u do?
How do I check dns entry?
What does make clean command do?
What is Syntax of any Linux command?