1
vote
4answers
107 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 …
2
votes
2answers
29 views
Ignore symlinks in clean URL’s in .htaccess
Example URL:
example.com/user
/user is both a symlinked directory and a valid URL to content on my site. I user Horde Routes to request the content and all requests to the site go through index.php.
…
3
votes
5answers
72 views
Mulitple Sites with common files
I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, i currently duplicate the files each time i create a new site and uplaod different css and images.
What …
2
votes
4answers
74 views
Can ‘make’ check if mtime of a dependency is *different* between runs, not just if it’s newer than target?
If foo_user.cpp depends on foo.h, then foo_user.cpp is built, and then foo.h's modification time is set to further in the past, make will not rebuild foo_user.cpp (because foo.cpp is 'newer'). I'd …
0
votes
3answers
41 views
Is there a way to edit a symlink without deleting it first?
So I created a symlink:
ln -s /location/to/link linkname
Now I want to change the location that the symlink links to. How do I do that? is there a way to do it without deleting it first?
1
vote
0answers
113 views
Ubuntu: Creating a symlink with network shared folder [closed]
Hi,
I'm trying to create a symlink with a network shared folder (located in a windows sys) from my ubuntu system using the command.
ln -s smb://sys-name/www www
It creates a link but it says the …
5
votes
3answers
78 views
Is there a version of os.getcwd() that doesn’t dereference symlinks?
I have a Python script that I run from a symlinked directory, and I call os.getcwd() in it, expecting to get the symlinked path I ran it from. Instead it gives me the "real" path, and in this case …
0
votes
1answer
42 views
Symlinks in Linux/PHP
Hello,
Using PHP on Linux, I can just use the is_link() function to detect whether a given file is a symbolic link. However, is there a way to detect if a given file is the target of any other …
1
vote
3answers
165 views
Can you change what a symlink points to after it is created?
Does any operating system provide a mechanism (system call - not command line program) to change the pathname referenced by a symbolic link (symlink) - other than by unlinking the old one and creating …
1
vote
1answer
133 views
Commit symlink into subversion
I'm tring to commit a symlink into subversion, but I get this error when I try to add the actual symlink:
Can't replace 'path/to/symlink' with a
node of a differing type; the deletion
must be …
11
votes
10answers
2k views
What is the difference between a symbolic link and a hard link?
Recently I was asked this during a job interview. I was honest and said I knew how a symbolic link behaves and how to create one, but do not understand the use of a hard link and how it differs from a …
4
votes
4answers
146 views
Symlinks on windows?
Does anyone know of a way to make/read symbolic links across versions of win32 from Python? Ideally there should be a minimum amount of platform specific code, as I need my app to be cross platform.
0
votes
2answers
139 views
Replace important symbolic link ‘safely’
I would like to change the target of symbolic link from within a bash script. The problem is that the symlink is quite important (it's /bin/sh, namely) and I would to do it in fashion that:
New …
2
votes
3answers
221 views
Bash script to automatically create symlinks to subdirectories in a tree
Ok, this is my third try posting this, maybe I'm asking the wrong question!!
It's been a few years since I've done any shell programming so I'm a bit rusty...
I'm trying to create a simple shell …
1
vote
1answer
144 views
Can the Subversion client (svn) derefence symbolic links as if they were files?
I have a directory on a Linux system that mostly contains symlinks to files on a different filesystem. I'd like to add the directory to a Subversion repository, dereferencing the symlinks in the …
