Tagged Questions

5
votes
4answers
3k 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
91 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
286 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
1answer
737 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.