A special type of file that contains a reference to another file or directory

learn more… | top users | synonyms (2)

0
votes
0answers
3 views

Connect a subdomain to a directory and access files using the subdomain URL

I've got a subdomain, blog.mydomain.com, (file setup: ~/www/blog.mydomain.com/) and I've got my blog on my domain (~/www/mydomain.com/blog/). I've managed to connect these two using a URL Frame. Is ...
0
votes
0answers
11 views

How to rewrite URL to remove symlink segment

I have the following shared hosting file structure using a codeigniter project: myTLD.com/sites/mysite mysite contains: application, system , index.php ... ( standard CI2 setup ) I have symlinked ...
0
votes
1answer
8 views

Keep URL for file, but change directory?

I have a file hosted at http://example.com/old-directory/document.pdf. I'm not able to change the link, but I need to change the directory the file is downloaded from. Current dir ...
1
vote
4answers
32 views

How do I create a multi-level softlink in Linux or can this be done? [closed]

I have inherited old scripts which cannot be touched - don't ask. It references software installed at location /SuperSoft/SomeSoft/ The new version of the software, remade since the buyout, installs ...
0
votes
1answer
15 views

accidentally created a symbolic link

I accidentally created a symbolic link of sites-available inside sites-enabled. Now, I don't know what happened but I did a rm -rf sites-available to delete the symbolic link, but that is not what ...
-1
votes
0answers
7 views

Windows 8 Command Prompt mlink Symbolic Link undo [closed]

So I totally messed up. I was trying to create a symbolic link for the program Sticky Notes to create a path. I was trying to type: mklink /J “%APPDATA%\Microsoft\Sticky Notes” ...
0
votes
0answers
14 views

Is it possible to create a subfolder inside a symlink folder but not be added into the parent folder? [migrated]

Is a very tricky question, sorry about that Base on this Folder A file1 file2 Folder B ( symlink of Folder A (softlink) ) file1 file2 that i want to do is create a folder or file inside my ...
0
votes
0answers
30 views

Git push symbolic link targets. (homesick gem)

I could only find information about what happens when you push symbolic links to git, but not about when you push their targets. My problem is that I wanted to have my dot files for vim in Github. So ...
0
votes
1answer
29 views

Rewrite existing but broken symlinks with .htacces?

I would like to use a rewrite rule that is executed when a symlink exists but is broken. So the scenario's would be: Symlink does not exist: normal 404/403 error. Symlink exists but is broken: ...
1
vote
0answers
20 views

QMake: how to properly create a shared object with symbolic links at make install

I have built a library that uses qmake as the build mechanism. I am using TEMPLATE=lib and CONFIG=dll. My problem is that the symbolic links to the library are being created when I run make and are ...
2
votes
1answer
30 views

difference between sh and bash when symlink is used

I have a shell script which uses process substitution The script is: #!/bin/bash while read line do echo "$line" done < <( grep "^abcd$" file.txt ) When I run the script using sh ...
0
votes
2answers
27 views

Copying inherited directories containing symlinks

This is similar to questions that have been asked before, but I promise it is different. I have a site that involves inheritance from a parent to a child site. Part of this is media. To make media ...
1
vote
1answer
24 views

How can I change the binary file link to something else

I have two questions and they are linked. I execute the command like this: python on the shell and it opens the shell. Now I want To which file it is linked. I mean when I run python then what is ...
-1
votes
0answers
22 views

Create symbolic link with Codeigniter so that it is satisfactory for me

I want to create symbolic link. System is implemented with codeigniter framework. But symbolik link is not working satisfactory. I am using following command: $ ln -s /var/www/html/dps.com/ ...
0
votes
1answer
79 views

How to restore Sublime Text settings & preferences and undo the symlink created in Dropbox?

How can I restore Sublime Text settings & preferences and undo the symlink created in Dropbox? I cannot access the Sublime Text 2 Preferences on my machine after creating symlink on Dropbox. ...
-1
votes
1answer
16 views

symlink mac from outside folder [closed]

Imagine this is my folder structure filepath\targetpath filepath\folder1 I can create the symlink when I am inside the targetpath folder ln -s ..\folder1 folder2 but when I try to create ...
-1
votes
0answers
10 views

Can I create a single ftp to access multiple network locations [closed]

I have an ftp server setup using FileZilla Server and 5 application servers which each have a backup folder that is shared. On the ftp server I have setup symlinks in the root ftp directory that ...
0
votes
0answers
16 views

Symlinc from linux to windows in rails

I'm new of rails development. I have a rails project on linux, but it has to work in windows(unfortunately) too, i tried to copy the whole directory of the project on windows but it sais to me that ...
1
vote
2answers
49 views

How to create relative symbolic link in mac OS? [closed]

How to create a relative symbolic link that would always point to original folder two levels up? I would like to create a computer-independent alias that would work on any machine, provided that the ...
1
vote
2answers
40 views

How to find files excluding symbolic links?

I want to find files in Linux that follow a certain pattern but I am not interested in symbolic links. There doesn't seem to be an option to the find command for that. How shall I do ?
-1
votes
0answers
19 views

What factors might prevent this symlink from working as intended? [closed]

I'm on a Windows 7 64-bit machine, and I've been trying to get a symlink set up to some rather hefty files so that I don't need to use twice the memory (two different applications need to access these ...
1
vote
0answers
34 views

Transfer symbolic links between different filesystems

I am trying to emulate the advantages of a database on my filesystem for my music collection. For example when I have a new album I would run a script which moves the album to another folder like ...
1
vote
0answers
14 views

Can the Rails Console be reloaded when release symlink changes?

I am running rails on a Capistrano-based deployment setup. I prefer to leave rails console sessions open in tmux, and have them persistently available. Capistrano puts the application in a director ...
0
votes
1answer
31 views

Apache and Symbolic Symlink getting parent dir php

i have a problem creating symlink, i want the script take the "child" folder instead of the parent folder /var/www/FolderParent - .... somefile.php /var/www/FolderChild - .... somefile.php (symlink ...
0
votes
0answers
45 views

Java: Resolve symbolic link to another symbolic link

So I'm working with the Java-based Opengrok project on Linux machine, and it's in our best interests to symlink from Opengrok's /source directory to elsewhere on the machine. We're using Opengrok ...
1
vote
0answers
39 views

But I don't *want* gcc to follow symlinks

Background: I wrote a program that uses the OpenBLAS libraries for a very heterogeneous compute cluster. OpenBLAS uses different libraries for different architectures. So on one machine 'ls -l ...
0
votes
1answer
64 views

Change symbolic links

I need to change all symbolic links in a given directory to use the shortest relative path. Example: change kat/../kat/link or usr/sth/sth/kat/link into kat/link How can I do this using ...
1
vote
1answer
21 views

a already symlinked file when gitignored will work fine or not?

I have created a symlink in the shared directory of production. if i set this file to gitignore and push the code on github master where it will not be visible now. So please tell me the symlink for ...
1
vote
0answers
21 views

Subversion Externals Follow Symlink

Is there a way to use a symlink with the svn:externals property? I've a project running on my webserver (under unix) which has some folders that are actually symlink to other folders. When I add the ...
0
votes
0answers
28 views

Symlinks and Xampp

I'm working on a linux server, with a webserver. What i've done is, putting a symlink to a shared folder for all the sites that uses concrete. This symlink points to a folder in ...
1
vote
0answers
74 views

mod_php APC confused by symlinks, includes same files twice - why?

I have an Apache vhost set up for the folder (say website) which is a symlink to another one linking to a folder with a current release (say website_N) where N is release number (website -> ...
0
votes
0answers
36 views

Identify source app of network traffic

I'm attempting to associate an application with the network traffic it generates. I've done a little research, and apparently, inodes shown within the /proc/net/tcp file correspond to open sockets, ...
0
votes
1answer
25 views

symbolic link apache modules

My default apache modules are currently within /usr/bin. The modules i have generated however are within /home/user/platform/lib. Within the httpd.conf file i have added the two modules as per ...
0
votes
1answer
27 views

Is it possiable to make a link from file A to file B in a different directory within the same svn repository?

Within the same svn repository, I have two directory "backend" and "product", both containing a file named "test.xml", the question is how can i make a link form "product/test.xml" to ...
1
vote
0answers
59 views

Trying to copy object (and not link) via RUBY Fileutils

I have search a long time but didn't find the answer yet. I'm using RUBY scripts to copy some folders and contents from a Linux station to another one. Until now it has been done by calling Xcopy on ...
0
votes
1answer
55 views

Symbolic link messed up on OSX while trying to change the Java version

I done a bad thing please help. I was in: /System/Library/Frameworks/JavaVM.framework/Versions I was told to run the following command: sudo ln -fhsv 1.6 CurrentJDK Which has pretty messed ...
1
vote
1answer
52 views

Mod Rewrite show private file access denied

I have the following mod rewrite rules: RewriteCond %{DOCUMENT_ROOT}/../application/%{REQUEST_URI} -f RewriteRule ([\w]+\/www\/(.*)) %{DOCUMENT_ROOT}/../../application/$1 [L] RewriteCond ...
1
vote
2answers
99 views

.htaccess rewrite dynamically soft link hidden directory

I was not sure how to phrase this question but hopefully my description will make more sense as to what I wish to achieve. I am currently building a framework which supports multiple applications. ...
0
votes
2answers
58 views

Symbolic link in Subversion repository?

I'm developing a small app in both PHP and Java. It has a few pics, CSS and JS, that must be shared in both. I don't want these files duplicated, JS and CSS must be the same in both. So I'd like ...
0
votes
0answers
53 views

Symlink in WordPress Site

I have created a soft link (ln -s) home.aspx to index.php in the root web directory in a WordPress site. The intent is to have site.com/home.aspx display the home page of the site without ...
1
vote
0answers
23 views

updating cabal-install, but version is not changed

Currently I am using cabal-install 1.16.0 I tried to update cabal-install because someone told me that newer version of ghc (7.6.1) is available. Installation result was quite successful except for ...
1
vote
2answers
111 views

Creating symbolic links in PHP/IIS 8 when using the new Application Pool Identity feature

I'm running IIS 8, Server 2012. I have a web application where the programmers want to create symbolic links. Here is some sample code: $target = 'symlink.php'; $link = 'symlink-link.php'; ...
0
votes
1answer
165 views

sass/scss @import when relative path is symlink

We have trouble with @import of scss files from another bundle in symfony2. The source code (hg repo) lives in /files/... in machine A. In devel, apache serves from /var/www/... in machine A, ...
0
votes
0answers
48 views

Symbolic link in svn working copy for a switched directory

I work on several (2-20) projects of non-shared-ancestry in a single repo, that share common resources of GBs of binary data stored in the repository at only a single place. These projects utilize svn ...
1
vote
1answer
26 views

With symbolic links, why are the results from “ls ..” and “cd .. ” different? [closed]

Suppose I execute the following commands: $ mkdir -p a/b $ ln -s a/b c $ cd c Then, in directory c, why does ls .. display the contents of directory a, but cd .. returns to the original directory? ...
0
votes
1answer
110 views

ld: library not found for -lgfortran - Mac Symlink issue?

I am trying to install ObsPy with pip. The installation fails on the cc command below: cc -bundle -undefined dynamic_lookup -L/usr/local/lib -L/usr/local/opt/sqlite/lib ...
2
votes
3answers
328 views

`os.symlink` vs `ln -s`

I need to create a symlink for every item of dir1 (file or directory) inside dir2. dir2 already exists and is not a symlink. In linux I can easily achieve this by: ln -s /home/guest/dir1/* ...
0
votes
0answers
56 views

Nginx not picking static content from symlink

I am quite new to nginx. I have static content on nginx some of which is at a location outside my server root. I have created a symlink for that from my server root (something like I have my images at ...
0
votes
0answers
44 views

Ruby symlink or mount point to all group users in linux

I am new to Ruby and I am looking for a solution to make a symlink or mount --bind to all linux users that are in group called www. I need it to give them access to www directory via sftp and they are ...
0
votes
4answers
65 views

Error when configuring MySQL on EBS volume

I'm working on configuring MySQL to store its data on an Amazon EBS volume. I've mounted the volume at /data, moved the config and data files to the volume, and symlinked the MySQL files: ln -s ...

1 2 3 4 5 14