1
vote
0answers
75 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 lin …
4
votes
3answers
61 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, …
0
votes
1answer
34 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 targe …
1
vote
3answers
153 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 …
1
vote
1answer
92 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 …
4
votes
4answers
122 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 …
0
votes
2answers
105 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 fash …
11
votes
10answers
1k 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 h …
1
vote
1answer
114 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 …
2
votes
3answers
160 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 creat …
0
votes
3answers
30 views
Uploading symlinks to a server
Hi all,
Is it actually possible to upload symlinks and keep them as symlinks as opposed to uploading the files they're pointing to?
I have a directory structure that relies on sy …
2
votes
2answers
138 views
Ruby: How do I get the target of a symlink?
I have a string containing the file system path to an existing symlink. I want to get the path that this link points to.
Basically I want the same that I'd get through this bit of …
11
votes
4answers
2k views
Windows XP vs Vista: NTFS Junction points
Problem: I relied heavily on NTFS Junction points in Windows XP, even though they apparently were not an "official" feature of the operating system. Now MSFT has generously made NT …
0
votes
1answer
47 views
Combing a symlink to an external folder with a Rewrite Rule?
I've created a symlink in an account to an folder external to that user account (although with the same ownership). The symlink works but I'd like to combine it with a RewriteRule, …
2
votes
2answers
2k views
After adding a symbolic link in a svn repository I keep receiving an error inside of that directory
I created a symbolic link from /www/dir2/ to /home/dir2/
I then added it to the repository ( svn add /www/dir2/ )
Now if I go into that directory, and try to do anything with svn i …
