active questions tagged symlink - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:29:53Zhttp://stackoverflow.com/feeds/tag/symlinkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1929368/ant-tar-task-create-symbolic-links-in-the-output-tar-gz-file0ANT, tar task: create symbolic links in the output .tar.gz file?mklhmnn2009-12-18T16:42:15Z2009-12-22T09:09:04Z
<p>We are using Windows as development system and ANT to create the platform-specific bundles. For the Mac OS X specific bundle (.tar.gz file) we are using the tar task. I want to create a symbolic link in the output .tar.gz file which points to another file in the same .tar.gz file. Can this be done using ANT?</p>
http://stackoverflow.com/questions/1931854/issue-with-symlinks-and-file-uploads0Issue with symlinks and file uploads...Andrew2009-12-19T03:28:48Z2009-12-19T18:54:03Z
<p>I'm having this weird thing happen. My Zend Framework (PHP) web application that I have been developing locally works fine on my computer, but once it's uploaded to the server, it thinks that the uploads directory doesn't exist.</p>
<p>My application has an uploads directory which is a symlink to a directory outside of the application:</p>
<pre><code>#local
/myapp.local
/application
/data
/uploads (symlink, points to ./../../shared_uploads)
/public/index.php
/shared_uploads
#remote
/shared_uploads
/current (symlink, points to ./releases/myapp-2009-12-18)
/releases
/myapp-2009-12-18
/application
/data
/uploads
/public/index.php
</code></pre>
<p>The server points to <code>/current/public/index.php</code> to serve up the application. Could it be that since it is actually in the releases directory that it's one level deeper? Or could it be a permissions error since I created the uploads symlink on my local computer instead of on the server?</p>
<p><strong>Update:</strong> In my <code>/public/index.php</code> file I'm defining my upload dir like this:</p>
<pre><code>// Define path to uploads directory
defined('APPLICATION_UPLOADS_DIR')
|| define('APPLICATION_UPLOADS_DIR', realpath(dirname(__FILE__) . '/../data/uploads'));
</code></pre>
http://stackoverflow.com/questions/1930437/mdfind-used-for-creating-symlinks-not-working-as-expected0mdfind used for creating symlinks not working as expected. Andrew2009-12-18T20:14:35Z2009-12-19T02:45:30Z
<p>I am trying to use the output from 'mdfind' to create a bunch of symlinks. Output of 'mdfind' is like this:</p>
<blockquote>
<p>/pathtofile1/ </p>
<p>/pathtofile2/</p>
<p>/pathtofile3/</p>
</blockquote>
<p>So, I used 'sed' to add 'ln -s ' to the start of each line, and awk {print $0 "/directory where I want this/"};</p>
<p>after my single-line script successfully outputs this:</p>
<blockquote>
<p>ln -s "/pathtofile1/" "/directory where I want this"</p>
<p>ln -s "/pathtofile2/" "/directory where I want this"</p>
<p>ln -s "/pathtofile3/" "/directory where I want this"</p>
</blockquote>
<p>Problem is, when I run this, I get this error: "/directory where I want this: File does not exist"</p>
<p>The weird thing is that when I run these lines individually, they links are created as expected, but running the entire command returns the error above. </p>
<p>Any ideas?</p>
<p>I don't think that this is the ideal way to do what I'm trying to do, so let me know if you have any better solutions. </p>
<p><hr></p>
<h2>Edited with more information. </h2>
<pre><code>#! /bin/bash
itemList=`mdfind -s "$1"| awk '{ print "ln -s \""$0"\" \"/Users/username/Local/Recent\""}'`
echo "$itemList"
`$itemList`
</code></pre>
<p>$1 is a test *.savedSearch that returns a list of files. </p>
<p>My result (from the echo) is: </p>
<pre><code>ln -s "/Users/username/Dropbox/Document.pdf" "/Users/username/Local/Recent"
ln -s "/Users/username/Dropbox/Document2.pdf" "/Users/username/Local/Recent"
</code></pre>
<p>and the error that I get is:</p>
<blockquote>
<p>ln: "/Users/username/Local/Recent": No such file or directory</p>
</blockquote>
<p>But, if I run a copy-pasted of each line individually, the links are created as expected. </p>
http://stackoverflow.com/questions/1928661/cant-commit-svn-controlled-directory-when-referencing-through-symlink0Can't commit svn controlled directory when referencing through symlinkunknown (google)2009-12-18T14:52:37Z2009-12-18T18:36:32Z
<p>I have a problem that I describe poorly in another question. I'm posting this to make it more clear what I want to do, and what problem I'm encountering. There is a highly-voted answer, but it doesn't actually address my problem (short story: I'm not trying to add a symlinked directory to my version-controlled project).</p>
<p><strong>If you already know how subversion works, skip to below to get the actual question.</strong></p>
<p>I am at the command line, and the current working directory is my home directory.</p>
<pre><code>$> pwd
/home/user
</code></pre>
<p>I have an svn project. Let's say it's called <code>some_project</code>. I want to check the project out to <code>real_directory/</code>.</p>
<pre><code>$> svn checkout http://svnhost.net/some_project real_directory
A real_directory/index.php
...
A real_directory/robots.txt
Checked out revision 1143.
</code></pre>
<p>I haven't <code>cd</code>ed into that directory; I'm still outside of it, in my home directory:
$> pwd
/home/user</p>
<p>Yet I can still use svn commands on files <code>real_directory/</code>, even though it's not my current working directory</p>
<pre><code>$> svn status real_directory/
$> touch real_directory/new_file.txt
$> svn status real_directory/
? real_directory/new_file.txt
$> svn add real_directory/new_file.txt
A real_directory/new_file.txt
</code></pre>
<p>I'm pointing this out to clarify misconceptions presented in the other question. Note that I added a file to the project, while still outside of the version-controlled directory. I can do this because of the existence of the <code>.svn/</code> directory in the <code>real_directory</code> directory. This is what makes <code>real_directory/</code> contain the <code>some_project</code> subversion project, even though it has a different name. </p>
<pre><code>$> ls real_directory/.svn
all-wcprops entries format prop-base props text-base tmp
</code></pre>
<p>( If you already know this, please bear with me -- my original question had a well-voted answer that gave wrong information about the ability to do this with subversion! )</p>
<p>This is the syntax of the <code>svn</code> command:</p>
<pre><code>svn [svn-controlled directory] command
</code></pre>
<p>If you don't specify the directory, svn will assume you're talking about the current directory. So all of these are equivalent (current working directory is in the shell prompt):</p>
<pre><code>[ /home/user ]$ svn status real_directory/
A real_directory/new_file.txt
[ /home/user ]$ cd real_directory/
[ /home/user/real_directory ]$ svn status .
A new_file.txt
[ /home/user/real_directory ]$ svn status
A new_file.txt
</code></pre>
<p>So, to recap: I can do anything I want <em>while not inside</em> the version controlled directory, <em>just as if I were inside of it</em>, simply by specifying the directory when I issue my svn commands. </p>
<p>OK, now that <em>that's</em> out of the way, <strong>here's the problem</strong>:</p>
<p>When I create a symlink to the subversion controlled directory, svn recognizes it for commands such as <code>add</code> and <code>status</code>, but not for <code>commit</code>!</p>
<p>Here is the symlink directory working just like the real directory when I add files and ask its status:</p>
<pre><code>$> svn status real_directory/
A real_directory/new_file.txt
$> ln -s real_directory/ symlink
$> svn status symlink
A symlink/new_file.txt
$> svn status real_directory/
A real_directory/new_file.txt
$> touch symlink/another_new_file.txt
$> svn status symlink
? symlink/another_new_file.txt
A symlink/new_file.txt
$> svn add symlink/another_new_file.txt
A symlink/another_new_file.txt
$> svn status symlink/
A symlink/another_new_file.txt
A symlink/new_file.txt
</code></pre>
<p>See how <code>symlink/</code> acts just like <code>real_directory/</code> for the purposes of <code>add</code> and <code>status</code>? <strong>Problem:</strong> this fails on the commit command:</p>
<pre><code>$> svn commit symlink/ -m "test commit"
svn: '/home/user' is not a working copy
svn: Can't open file '/home/user/.svn/entries': No such file or directory
</code></pre>
<p>Huh? That's weird. Svn certainly thinks that file exists when I do <code>status</code> and <code>add</code>! Maybe it got deleted?</p>
<pre><code>$> ls symlink/.svn/entries
symlink/.svn/entries
</code></pre>
<p>Nope, still there. Does it still have data in it?</p>
<pre><code>$> ls -lha !$
ls -lha symlink/.svn/entries
-r--r--r-- 1 user group 14K 2009-12-18 06:36 symlink/.svn/entries
</code></pre>
<p>Yup, seems to be okay! Alright, forget trying to commit the directory by its symlink. What about just committing the directory by its real name?</p>
<pre><code>$> svn commit real_directory/ -m "test commit"
Adding real_directory/another_new_file.txt
Adding real_directory/new_file.txt
Transmitting file data ..
Committed revision 1144.
</code></pre>
<p>Works fine. Why does svn work with <code>add</code> and <code>status</code> on a symlinked directory, but not <code>commit</code>?</p>
http://stackoverflow.com/questions/1883839/find-symlinks-to-certain-directory-or-one-of-its-subdirs0Find symlinks to certain directory or one of its subdirsPekka2009-12-10T20:37:14Z2009-12-10T21:39:27Z
<p>Is there an easy way to show whether there are any symlinks in a specified path <strong>pointing to a certain directory or one of its children?</strong></p>
http://stackoverflow.com/questions/706421/if-file-is-a-link-on-linux-os2if file is a link on LINUX OSkadeshpa2009-04-01T16:44:36Z2009-12-07T11:41:49Z
<p>I am trying to check if a symbolic link exists from korn shell script using "-h filename" command.This works good on HP boxes.</p>
<p>Not sure what is the correct option for Linux,AIX and Solaris boxes.</p>
http://stackoverflow.com/questions/753418/links-pointing-to-absolute-path1Links pointing to absolute pathkadeshpa2009-04-15T19:52:54Z2009-12-03T16:24:30Z
<p>Is it a good practice that links should always point to absolute path rather than pointing from current directory?</p>
<p>I am talking this with reference - where i need to maintain software and all its previous versions should always point to latest version.</p>
http://stackoverflow.com/questions/210120/remove-a-symlink-to-a-directory2Remove a symlink to a directoryMatthew Scouten2008-10-16T20:18:22Z2009-12-02T19:24:32Z
<p>I have a symlink to an important directory. I want top get rid of that symlink, while keeping the directory behind it.</p>
<p>I tried 'rm' and get back "rm: cannot remove 'foo'".</p>
<p>I tried 'rmdir' and got back "rmdir: failed to remove 'foo': Directory not empty"</p>
<p>I then progressed through 'rm -f', 'rm -rf' and 'sudo rm -rf'</p>
<p>Then I went to find my back-ups.</p>
<p>Is there a way to get rid of the symlink with out throwing away the baby with the bathwater? </p>
http://stackoverflow.com/questions/653774/capistrano-symlinking-problem0Capistrano symlinking problem?Millisami2009-03-17T11:06:56Z2009-11-27T12:00:01Z
<p>I've this capistrano command.</p>
<pre>
task :symlink_shared do
run "rm -rf #{current_path}/config/database.yml"
run "ln -nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml"
run "rm -rf #{current_path}/config/app_config.yml"
run "ln -nfs #{shared_path}/config/app_config.yml #{release_path}/config/app_config.yml"
run "rm -rf #{current_path}/public/records"
run "ln -nsf #{shared_path}/uploads/records #{release_path}/public/records"
run "rm -rf #{current_path}/public/documents"
run "ln -nsf #{shared_path}/uploads/documents #{release_path}/public/documents"
run "rm -rf #{current_path}/public/pdf_xmls"
run "ln -nsf #{shared_path}/uploads/pdf_xmls #{release_path}/public/pdf_xmls"
run "rm -rf #{current_path}/public/pdf_xml_files"
run "ln -nsf #{shared_path}/uploads/pdf_xml_files #{release_path}/public/pdf_xml_files"
end
</pre>
<p>Everything works and the symlinks are also created.
But the last command symlink creates the symlink pdf_xml_files one step inside.
i.e. it creates a directory named pdf_xml_files and inside it, the pdf_xml_files symlink is created.
Need some help?? </p>
http://stackoverflow.com/questions/1775264/ignore-symlinks-in-clean-urls-in-htaccess2Ignore symlinks in clean URL's in .htaccessed2092009-11-21T11:42:56Z2009-11-21T12:41:44Z
<p>Example URL:</p>
<p>example.com/user</p>
<p>/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.</p>
<p>I currently have a .htaccess file that looks like:</p>
<pre><code>Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
#allow cool urls
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]
#allow to have Url without index.php
</code></pre>
<p>But going to /user lists the directory contents rather than the webpage. Is it possible to ignore symlinks?</p>
<p>Additional to that is if you request:</p>
<p>example.com/user/some-css-file.css</p>
<p>That is a valid request that should not be ignored. So is it possible to allow files via symlinks to be requested, but the base symlinks themselves to be ignored and go to index.php?</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1762831/create-broken-symlink-with-python1Create broken symlink with PythonMathias2009-11-19T12:03:53Z2009-11-19T12:29:04Z
<p>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 with the <em>ln</em> program, but how to do it in Python without calling the <em>ln</em> program from Python?</p>
<p><strong>Edit:</strong> <em>somehow I really messed this up :/ ... both answers below is correct</em></p>
http://stackoverflow.com/questions/1730296/mulitple-sites-with-common-files3Mulitple Sites with common filesLizard2009-11-13T16:25:12Z2009-11-16T10:40:51Z
<p>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.</p>
<p>What would be the best practice to simply this into 1 main location for all common files?</p>
<p>Here is my current structure for each site:</p>
<pre><code>/home/ftpuser/public_html/commonfile1.php
/home/ftpuser/public_html/commonfile2.php
.....
/home/ftpuser/public_html/commonfileN.php
/home/ftpuser/public_html/commonfolder1/
/home/ftpuser/public_html/commonfolder2/
.....
/home/ftpuser/public_html/commonfolderN/
/home/ftpuser/public_html/css/
/home/ftpuser/public_html/css/mycssfiles.css
/home/ftpuser/public_html/images/
/home/ftpuser/public_html/images/myimages.jpg
</code></pre>
<p>How would i go about making all the common files located in 1 place for each site while still being able to have bespoke css and images.</p>
<p>Thanks in advance!</p>
<p>I am using Apache, PHP, Centos</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1727280/is-there-a-way-to-edit-a-symlink-without-deleting-it-first0Is there a way to edit a symlink without deleting it first?Andrew2009-11-13T05:22:00Z2009-11-13T07:01:03Z
<p>So I created a symlink:</p>
<pre><code>ln -s /location/to/link linkname
</code></pre>
<p>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?</p>
http://stackoverflow.com/questions/1704003/can-make-check-if-mtime-of-a-dependency-is-different-between-runs-not-just-i2Can 'make' check if mtime of a dependency is *different* between runs, not just if it's newer than target?Joseph Garvin2009-11-09T21:33:53Z2009-11-10T07:55:30Z
<p>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 prefer it if make recorded the modification times of dependencies, and if they changed at all (newer or older), to consider targets of that dependency to be out of date. Can GNU make do this? If not, is there an easy alternative?</p>
<p>In case you're curious how this situation arises: foo.h resides in a symlinked folder. The symlink may point to the foolib-1.0 folder, the foolib-2.0 folder, etc. When the symlink points at a different version of the library, even an older version, foo_user.cpp should be rebuilt. If I simply specifiy symlinkfolder/foo.h as a dependency of foo_user.cpp, make only pays attention to the timestamp of foo.h, not the timestamp of the symlink'd directory through which foo.h is accessed. I can't add the symlink itself as a dependency, because the make rule is generated by the compiler (GCC has a special flag that when given causes it to output a make rule for all the headers a source file depends on).</p>
http://stackoverflow.com/questions/432487/windows-xp-vs-vista-ntfs-junction-points11Windows XP vs Vista: NTFS Junction pointsdreftymac2009-01-11T07:04:29Z2009-11-05T15:28:08Z
<p><strong>Problem:</strong> 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 NTFS Junction points an official part of Vista, but apparently they also intentionally <em>broke</em> them. Now my WinXP-created junction points on portable USB drive don't work when I plug that drive into a Vista box.</p>
<p><strong>Questions:</strong> Does anyone have a script that will force NTFS junctions created on XP to work correctly within BOTH Vista and XP? Is there documentation or a spec that explains what MSFT did to cause this breakage?</p>
<p><strong>Update:</strong> Thanks, Ulrich and Scott, for your follow-up questions. The tool I used to create the junctions was <a href="http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx" rel="nofollow">Systinternals Junction v1.05</a> although I can't say for sure that all of them were created with that specific version of the now-MSFT-hosted app. </p>
<p>As far as how the junctions are used ... assuming an external "Q Drive" device: </p>
<ul>
<li><p>1) Some items on the Q Drive are junctions that point from one place on the Q Drive to another place on the Q Drive (e.g., cases where I needed to have a folder in more than one place, and a traditional .lnk style shortcut would not work)</p></li>
<li><p>2) Some items are junctions that point from the C Drive directly to locations on the Q Drive. These items obviously do not work when the Q Drive is not actually connected box (XP or Vista), but when connected on Vista, the junctions do not work as on XP.</p></li>
</ul>
http://stackoverflow.com/questions/185899/what-is-the-difference-between-a-symbolic-link-and-a-hard-link11What is the difference between a symbolic link and a hard link?Nick Stinemates2008-10-09T04:05:41Z2009-11-04T08:55:20Z
<p>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 symbolic one.</p>
http://stackoverflow.com/questions/1643698/ubuntu-creating-a-symlink-with-network-shared-folder1Ubuntu: Creating a symlink with network shared folder [closed]Pavan 2009-10-29T13:22:37Z2009-10-31T23:14:01Z
<p>Hi,</p>
<p>I'm trying to create a symlink with a network shared folder (located in a windows sys) from my ubuntu system using the command.</p>
<p>ln -s smb://sys-name/www www</p>
<p>It creates a link but it says the link is broken. But the path exists and I can browse to the network folder path.</p>
<p>Could anybody point me the issue?</p>
<p>Basically, I'm trying to create the link as I'm not able to access the network shared files from eclipse, so thought of making use of the symlinks, but didn't work out. Any other workaround for this ?</p>
<p>Thanks in advance,
- Pavan Kumar</p>
http://stackoverflow.com/questions/490379/after-adding-a-symbolic-link-in-a-svn-repository-i-keep-receiving-an-error-inside2After adding a symbolic link in a svn repository I keep receiving an error inside of that directoryRob2009-01-29T03:18:40Z2009-10-28T06:01:59Z
<p>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 in there I receive a "svn: warning: '.' is not a working copy" error.<br />
If I try to add a subdirectory (svn add /www/dir2/dir5 ) I receive the error:<br />
svn: 'dir2' is not a working copy<br />
svn: Can't open file 'dir2/.svn/entries': No such file or directory
I tried committing the directory addition and that worked fine</p>
<p>From the log:<br />
Changed paths:<br />
A /www/dir2<br />
svn pl dir2/<br />
Properties on 'dir2':<br />
svn:special </p>
<p>Any help would be appreciated. Thanks!</p>
http://stackoverflow.com/questions/1552868/symlinks-in-linux-php0Symlinks in Linux/PHPBrian2009-10-12T05:29:26Z2009-10-12T05:39:13Z
<p>Hello,</p>
<p>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 <i>other</i> symbolic links?</p>
<p>Thanks, Brian</p>
http://stackoverflow.com/questions/123958/how-to-get-set-logical-directory-path-in-python2How to get/set logical directory path in python.Moe2008-09-23T21:19:37Z2009-10-09T20:35:13Z
<p>In python is it possible to get or set a logical directory (as opposed to an absolute one).</p>
<p>For example if I have:</p>
<pre><code>/real/path/to/dir
</code></pre>
<p>and I have</p>
<pre><code>/linked/path/to/dir
</code></pre>
<p>linked to the same directory.</p>
<p>using os.getcwd and os.chdir will always use the absolute path</p>
<pre><code>>>> import os
>>> os.chdir('/linked/path/to/dir')
>>> print os.getcwd()
/real/path/to/dir
</code></pre>
<p>The only way I have found to get around this at all is to launch 'pwd' in another process and read the output. However, this only works until you call os.chdir for the first time.</p>
http://stackoverflow.com/questions/1542803/is-there-a-version-of-os-getcwd-that-doesnt-dereference-symlinks5Is there a version of os.getcwd() that doesn't dereference symlinks?Gabriel Hurley2009-10-09T09:32:10Z2009-10-09T20:34:41Z
<p>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 that's not helpful. I need it to actually give me the symlinked version.</p>
<p>Does Python have a command for that?</p>
http://stackoverflow.com/questions/1478428/commit-symlink-into-subversion1Commit symlink into subversionvise2009-09-25T16:56:00Z2009-09-25T17:28:24Z
<p>I'm tring to commit a symlink into subversion, but I get this error when I try to add the actual symlink:</p>
<blockquote>
<p>Can't replace 'path/to/symlink' with a
node of a differing type; the deletion
must be committed and the parent
updated before adding
'path/to/symlink'</p>
</blockquote>
http://stackoverflow.com/questions/1466566/can-you-change-what-a-symlink-points-to-after-it-is-created1Can you change what a symlink points to after it is created?Jonathan Leffler2009-09-23T14:58:13Z2009-09-24T16:35:31Z
<p>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 a new one?</p>
<p>The POSIX standard does not. Solaris 10 does not. MacOS X 10.5 (Leopard) does not.</p>
<p>Is there anything that does?</p>
<p>(I'm expecting that the answer is "No".)</p>
<p><hr></p>
<p>Since proving a negative is hard, let's reorganize the question.</p>
<p>If you know that some (Unix-like) operating system not already listed has no system call for rewriting the value of a symlink (the string returned by <code>readlink()</code>) without removing the old symlink and creating a new one, please add it - or them - in an answer. Since that means there probably won't be a single 'acceptable' answer, I'm converting to Community Wiki.</p>
http://stackoverflow.com/questions/1447575/symlinks-on-windows4Symlinks on windows?Harkonnen Jama2009-09-19T02:44:58Z2009-09-19T03:45:31Z
<p>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.</p>
http://stackoverflow.com/questions/622064/can-i-use-symbolic-links-for-cvs-root-to-simplify-server-consolidation0Can I use symbolic links for cvs root to simplify server consolidation?unknown (google)2009-03-07T16:20:33Z2009-09-16T05:00:00Z
<p>Hi,</p>
<p>We're consolidating two old cvs servers onto one new box.</p>
<p>I had hoped the following:
changing the dns entries for oldserver1 and oldserver2 (as well as some user account maintenance) would make the move transparent to cvs users.</p>
<p><strong>Problem:</strong><br />
I'm having problems due to the different cvs roots on each old server.</p>
<p><strong>Background</strong><br />
The old servers had the following cvs repository directories:</p>
<ul>
<li>old server1 cvs root: /cvshome</li>
<li>old server2 cvs root: /usr/local/cvs</li>
</ul>
<p>On the distribution we're using the default repository directory is /var/cvs. I opted to stick with this, i.e:</p>
<ul>
<li>new server cvs root: /var/cvs</li>
</ul>
<p><strong>Goal</strong><br />
I'd like minimal disruption on existing checked-out-projects, i.e. not having to find/replace all 'Root' files on each hard drive in the company.</p>
<p>To clarify, CVSROOT and CVS/Root entries for old server1 look like this:</p>
<pre><code>pserver:username@oldserver1:/cvshome
</code></pre>
<p><strong>Attempts</strong><br />
I tried this:
create a symbolic link on new server</p>
<pre><code>/cvshome points to /var/cvs
ln -s /var/cvs /cvshome
</code></pre>
<p>However, when I try an update (i.e. from a workstation that pointed to old server 1), I get this error:</p>
<pre><code>/cvshome : no such repository
</code></pre>
<p><strong>Summary</strong><br />
Can I use links to 'alias' a cvs repository?</p>
<p><em>OR</em> do I need to 'bite the bullet' and change all 'Root' files on all hard drives?</p>
<p>thanks,<br />
bill</p>
http://stackoverflow.com/questions/1425665/uploading-symlinks-to-a-server0Uploading symlinks to a serverWopdoowop2009-09-15T07:28:15Z2009-09-15T22:47:28Z
<p>Hi all,</p>
<p>Is it actually possible to upload symlinks and keep them as symlinks as opposed to uploading the files they're pointing to?</p>
<p>I have a directory structure that relies on symlinks and I'm looking for a way to send this to users who have no command line knowledge and would want to upload it to their servers. </p>
<p>Is there a way to create symlinks so that they're uploadable as symlinks? If not, is there an approach you could recommend?</p>
<p>Thanks!!!</p>
http://stackoverflow.com/questions/1385244/replace-important-symbolic-link-safely0Replace important symbolic link ‘safely’Michał Górny2009-09-06T08:53:23Z2009-09-06T09:04:50Z
<p>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 <code>/bin/sh</code>, namely) and I would to do it in fashion that:</p>
<ol>
<li>New target will be available immediately after removing old, i.e. there will be no possibility that something will notice disappearing of it,</li>
<li>There will be no possibility that the change will fail in the middle, i.e. leaving user with symlink removed and no new one.</li>
</ol>
<p>I thought about two methods. Either using plain <code>ln</code>:</p>
<pre><code>ln -fs /bin/bash /bin/sh
</code></pre>
<p>or using <code>mv</code>:</p>
<pre><code>ln -s /bin/bash /bin/sh.new
mv /bin/sh.new /bin/sh
</code></pre>
<p>Which one will suit my needs better? Is there any possibility that one of them would try to replace the symlink target instead of symlink itself?</p>
http://stackoverflow.com/questions/1379722/can-the-subversion-client-svn-derefence-symbolic-links-as-if-they-were-files1Can the Subversion client (svn) derefence symbolic links as if they were files?Ryan B. Lynch2009-09-04T14:47:01Z2009-09-04T18:47:01Z
<p>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 process (treating them as the files they point to, rather than links). Generally, I'd like to be able to handle any working-copy operations with this behavior, but the 'svn add' command is where it starts, I think.</p>
<p>The SVN client utility doesn't appear to have any options related to symlink dereferencing in the working copy. I didn't find any references to this in the manual (<a href="http://svnbook.red-bean.com/en/1.5/index.html" rel="nofollow">http://svnbook.red-bean.com/en/1.5/index.html</a>), either.</p>
<p>I found a poster on the SVN users mailing list who asked the same question but never received an answer, here:</p>
<ul>
<li><a href="http://markmail.org/message/ngchfnzlmm43yj7h" rel="nofollow">http://markmail.org/message/ngchfnzlmm43yj7h</a></li>
</ul>
<p>(That poster ended up using hard links instead of symlinks. That technique is not an option, in my case, because the real underlying files reside on a separate filesystem.)</p>
<p>I'm using Subversion v1.6.1 on Fedora 11.</p>
<p>For what it's worth, I know that there are alternative tools/techniques that could help approximate this behavior, but which I have to discard for various reasons. I've already considered [and dust-binned] these possibilities:
- a "union" mount, merging all of the the directories containing the real files, with the SVN working-copy directory as the "top" layer in the union;
- copying/moving the real files to the same filesystem as the SVN working-copy, and using hardlinks instead of symlinks;
- non-SVN version control systems.
These were all neat ideas, and I'm sure they are good solutions to other problems, but they won't work given the constraints of this environment and situation.</p>
http://stackoverflow.com/questions/7665/how-to-resolve-symbolic-links-in-a-shell-script6How to resolve symbolic links in a shell scriptGreg Hewgill2008-08-11T10:40:41Z2009-09-03T08:15:10Z
<p>Given an absolute or relative path (in a Unix-like system), I would like to determine the full path of the target after resolving any intermediate symlinks. Bonus points for also resolving ~username notation at the same time.</p>
<p>If the target is a directory, it might be possible to chdir() into the directory and then call getcwd(), but I really want to do this from a shell script rather than writing a C helper. Unfortunately, shells have a tendency to try to hide the existence of symlinks from the user (this is bash on OS X):</p>
<pre><code>$ ls -ld foo bar
drwxr-xr-x 2 greg greg 68 Aug 11 22:36 bar
lrwxr-xr-x 1 greg greg 3 Aug 11 22:36 foo -> bar
$ cd foo
$ pwd
/Users/greg/tmp/foo
$
</code></pre>
<p>What I want is a function resolve() such that when executed from the tmp directory in the above example, resolve("foo") == "/Users/greg/tmp/bar".</p>
http://stackoverflow.com/questions/1345017/combing-a-symlink-to-an-external-folder-with-a-rewrite-rule0Combing a symlink to an external folder with a Rewrite Rule?Tristan2009-08-28T04:27:12Z2009-08-28T09:22:06Z
<p>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, and I'm having problems with that.</p>
<p>For instance I create the symlink with:</p>
<pre><code>ln -s /home/target shortcut
</code></pre>
<p>And I add the following RewriteRule to .htaccess:</p>
<pre><code>RewriteRule ^shortcut/([a-zA-Z0-9_-]+) shortcut/index.php?var=$1
</code></pre>
<p>This however fails.</p>
<p>Yet if instead of being located in an external folder, the <em>target</em> folder is in the same folder as the <em>shortcut</em> address, then the RewriteRule will work. i.e. it works if the symlink is:</p>
<pre><code>ln -s ./target shortcut
</code></pre>
<p>How might I get the RewriteRule working for the case where the target folder is an external folder?</p>