Can someone help create a symbolic link where I append my own string to the name of the link?
Possible Duplicate:
What is the difference between symbolic and hard links?
I've read quite a few articles regarding hard links and soft links, but I still dont understand the purpose of these two.
What happens if you hard link a file,
and what happens if you soft link a file?
I want to know theif functions i.e.
Say under directory /usr/local/boost_1_52_0/stage/lib, I have a symbolic link: libboost_timer.so, which points to the regular file libboost_timer.so.1.52.0 in the same directory.
How can I cp the symbolic links to directory /usr/local/lib while pointing to the same file /usr/local/boost_1_52_0/stage/lib/libboost_timer.so.1.52.0.
I have searched and tried several options.
Say under directory /usr/local/boost_1_52_0/stage/lib, I have a symbolic link: libboost_timer.so, which points to the regular file libboost_timer.so.1.52.0 in the same directory.
How can I cp the symbolic links to directory /usr/local/lib while pointing to the same file /usr/local/boost_1_52_0/stage/lib/libboost_timer.so.1.52.0.
I have searched and tried several options.
Is there a way to get pacman to show the package owner of a file which is a symbolic link? Note that I would like to know what owns the link file itself and not the file to which it points.
battlepanic
https://bbs.archlinux.org/profile.php?id=28337
2012-10-04T17:24:04Z
I am assembling my hello world with the following command:
nasm -f elf64 test.asm
I then link with this:
ld -s test.o -lc
I know this works because file a.out shows me
a.out: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), stripped
However when i run this with ./a.out i get bash: ./a.out: No such file or directory
When link without libc it runs fi
Hi,
I am trying to make symbolic link:
ln -s /home/application /application
where /home/application is NFS mounted file. I got follwing error:
ln: creating symbolic link `application': No such file or directory even in su mode.
Any idea?
Thanks.
I just upgraded my server to Fedora 17 which made a switch of my bootloader from GRUB Legacy to GRUB2. There are two symbolic links in the /etc folder that points to the files grub.conf and grub.cfg in /boot/grub and /boot/grub2 respectively. Though the targets seem correct, the link icons are displaying an X status which seems to indicate that the links are broken.
I have a symbolic link to a file in one directory. I would like to have that same link in another directory. How do I copy a symbolic link?
I tried to cp the symbolic link but this copies the file it points to instead of the symbolic link itself.