Tagged Questions

1
vote
4answers
119 views

Create broken symlink with Python

Using Python I want to create a symbolic link pointing to a path that does not exist. However os.symlink just complains about "OSError: [Errno 2] No such file or directory:".. This can easily be done …
1
vote
2answers
68 views

/usr/share/zoneinfo epic fail

I have just, in my groggy morning state, reversed & confused the arguments to ln, replacing /usr/share/zoneinfo/America/Toronto with a link to the non-existant /etc/localtime, when I really wanted …
1
vote
4answers
273 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? :)
1
vote
1answer
33 views

Randomizing function, etc. locations for shared libs

Currently, when I create a shared library, functions from within the same object files like to lie together. Is there a good solution (that does not involve splitting up source files) to try and …
1
vote
0answers
133 views

To see hardlinks by `ls` [closed]

I run ln /a/A /b/B I would like to see at the folder a where the file A points to by ls. How can you see the actual hard link by ls?
1
vote
5answers
1k views

What is the Bash command to create a hardlink to a directory in OS X?

How do you create a hardlink (as opposed to a symlink or a Mac OS alias) in OS X that points to a directory? I already know the command "ln target destination" but that only works when the target is a …
0
votes
2answers
30 views

mdfind used for creating symlinks not working as expected.

I am trying to use the output from 'mdfind' to create a bunch of symlinks. Output of 'mdfind' is like this: /pathtofile1/ /pathtofile2/ /pathtofile3/ So, I used 'sed' to add 'ln -s ' …
0
votes
1answer
68 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.
0
votes
5answers
131 views

shell script to link specific files up one level

I've got a folder that's got a whole lot of folders inside, which each contain a movie file. Now I want to be able to see all these movies at one time (but I have to preserve the folder structure) so …
0
votes
2answers
55 views

Unable to make symlinks effectively with target files of the same names

I have a list of dotFiles at my workarea. For example, .bashrc and .vimrc. I want to make a symlinks from them to my Home such that their names are the same as in my workarea -folder. My attempt in …