Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
8answers
8k 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 ...
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? :)
3
votes
2answers
54 views

Logarithm with SSE, or switch to FPU?

I'm doing some statistics calculations. I need them to be fast, so I rewrote most of it to use SSE. I'm pretty much new to it, so I was wondering what the right approach here is: To my knowledge, ...
2
votes
3answers
90 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
283 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 ...
2
votes
1answer
915 views

Create symbolic link to files on an FTP server

I do a lot of work with files hosted on an FTP server. Currently to edit a file on the server I have to open the server in Cyberduck, navigate with the mouse to the folder I want and then click ...
1
vote
2answers
74 views

Symbolic link not inheriting permissions

For example, I have foo.sh with 770 permissions. When I do: ln -s foo.sh bar.sh The link bar.sh has 2777 permissions. Why is this? I thought they were meant to be inherited?
1
vote
3answers
43 views

Symbolic links to symbolic links… partial canonicalization

Suppose I create a symbolic link "file2" to a file "file1" two directories above the current location (e.g., "ln -s ../../file1 file2". But now suppose that "file1" is also a symbolic link to a file ...
1
vote
4answers
1k 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
3answers
788 views

/usr/share/zoneinfo epic fail [closed]

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
1answer
47 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 ...
0
votes
1answer
20 views

shell command which returns the target of the static link

Is there a built-in unix/linux command which returns the target of a specific symbolic link? for example if i made a symbolic link: %> ln -s build_07-24-2011 latest is there a command "foo" ...
0
votes
0answers
24 views

GNU ln compatibility

I am noticing an annoying difference between GNU ln and ln as found on *BSD systems. For example let's take ln -s /etc /tmp/foo On *BSD this command creates the file /tmp/foo which is a symlink to ...
0
votes
0answers
14 views

How do i connect local directory(on server) to remote directory?

I have 2 servers. One having IP e.g. 1.1.1.1 and the other one e.g. 2.2.2.2. I have uploaded a directory on both servers. Can i connect first server's uploaded directory to the second one. copy ...
0
votes
1answer
115 views

How to link directory to public_html?

I have ~/public_html and few subdirectories with sites inside. But I have also ~/projects with all my projects (not only websites). I'm trying to link ~/projects/X with ~/public_html/X. ln -s ...
0
votes
0answers
233 views

symlink over ssh fails

Please help me out, as I'm trying to execute 'rm -Rf' and 'ln -s' on a bunch of servers through 'ssh -i' and somehow symlink fails, although running directly on servers works... $ ssh -i ...
0
votes
1answer
353 views

Symbolic Links in Ubuntu Recursively link to files in one directory to another

After searching stackoverflow and Google for the past hour I thought I would ask. If the title does not make sense here is what I am looking to achieve. /var/www/xxx/ Say there are files in this ...
0
votes
1answer
444 views

How to use MAMP's version of PHP instead of the default on OSX

I would like to use MAMP's version of PHP instead of the default installed on my mac. I tried using ln -s /Applications/MAMP/bin/php5.3/bin/php php but I get a "File exists" error. What's the ...
0
votes
2answers
154 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 ' to the ...
0
votes
1answer
734 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
306 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
84 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 ...