Tagged Questions

5
votes
4answers
4k views

LINUX: Link all files from one to another directory [closed]

I want to link ( ln -s ) all files that are in /mnt/usr/lib/ into /usr/lib/ There are lots of file, how to do it fast? :)
2
votes
3answers
111 views

symbolic link without expanding $HOME or “~”?

the basic idea is that I want to link to path that's relative to $HOME, rather than explicitly expand the $HOME variable, as I want to make sure the link works on multiple machines, e.g., when I do ...
2
votes
1answer
391 views

Makefile and symbolic links

I'm experiencing a strange problem with a makefile. I simply want to set a symbolic link in the makefile but get an error message on one machine (Linux 2.6.18-238.12.1.el5) make: execvp: ln: Too many ...
0
votes
2answers
14 views

Does ln -s require you to be in a certain directory? [migrated]

I want to create a simple symlink to a file. It works perfectly if I run the command from inside the directory where I want the symlink to be created: /path/to/link $ ln -s /path/to/file . But if ...
0
votes
1answer
776 views

Link to a specific inode

I have a file that was deleted, but is still held open my a program. I found the inode number using lsof. How can I create a hard link back to that inode? Any code helps, but Perl would be handy.