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

learn more… | top users | synonyms (2)

0
votes
1answer
35 views

get/set logical working directory from C

I have a symbolic link /home/me/symlink -> /home/me/realdir when I try to getcwd in the directory /home/me/symlink I get /home/me/realdir with the following program: int main(int argc, char **argv) ...
1
vote
2answers
28 views

Automatically create symlinks with lowercase names from uppercase directories

Thanks for considering to help. I am attempting to create a simple shell script that once ran will look at all the directories of a folder that are typically in uppercase form and will create a ...
0
votes
0answers
6 views

How to make Eclipse symlinks aware?

Uncle Google wasn't much helpful with the topic. I have a project which has 16k symbolic links to header files lying originally in directories of particular modules. When I import this project into ...
0
votes
0answers
2 views

Eclipse linked folder include path

I am working on a C project with Eclipse (juno) + CDT. This projects need files located outside the project directory, so I used "import -> file system -> advanced -> create links in workspace". The ...
0
votes
0answers
11 views

How can I pass symbolic linked file path parameter to Wine programs from a bash script?

I made a very short bash script which start Virtualdub with Wine, and it can get a parameter too, the name and path of a video file. My script, called "vd" (it is placed in /usr/local/bin and chmodded ...
1
vote
1answer
45 views

Codeigniter - 1 project - several domain names and several IP

I have 1 dedicated server. The server has several IPs. Some IP are dedicated for one particular domain. Ip1 = mysite.be Ip2 = mysite.fr Ip3 = mysite.com There is only one project. Each domain goes ...
0
votes
1answer
16 views

How to render freemarker templates that have a symlink in their path?

I am trying to use FreeMarker to render some templates that come from a CMS path that happens to include a symbolic link (under Linux). Our CMS code handles the path to the template so, for example, ...
1
vote
1answer
61 views

Incompatible libc.so.6 Found During Cross-Compilation of Qt5 OpenGL Test for i.MX6

I'm trying to cross-compile Qt5 for the Freescale i.MX6 processor. I've already built an image using the latest Yocto package. Before compilation of qtbase, a test for OpenGL functionality is first ...
0
votes
1answer
20 views

Symlinked PHP script's working directory

I have a folder project2 with some PHP files, extended with some generic files I added as symlinks to another folder project. For example: project/index.php project/config.php project/templates/... ...
0
votes
0answers
10 views

Creating a file through a dangling symlink with vi [migrated]

This is the content of my typescript file, /mac>ln -s non_exist ~/link /mac>vi ~/link Hi! I am a link. /mac>cat ~/link Hi! I am a link. /mac>cat non_exist cat: non_exist: No such file or ...
5
votes
1answer
42 views

What is there behind a symbolic link?

How are symbolic links managed internally by UNIX/Linux systems. It is known that a symbolic link may exist even without an actual target file (Dangling link). So what is that which represents a ...
-1
votes
0answers
33 views

create symbolic link of two folders with the same name into the same place in unix [closed]

I am trying to create symbolic link of two folders with the same name into the same place in unix and getting error as "ln : creating symbolic link `/home/vshukla/test/toolbox/bin/bin': File exists" ...
0
votes
1answer
19 views

platform independent symlinks in build script

I need to add to gradle build script a command that will create a symlink. I know that the person who builds that has cygwin installed. The problem is with export command. Here is what I got so far ...
0
votes
1answer
19 views

Use “find” to list all c/h/cc files but exclude symlinks

I am trying to get a listing of the c/h/cc files in a directory, but I want the file symlink to be excluded. I used the following command to list the files, which works fine. find . -name *.c -o ...
0
votes
1answer
24 views

Duplicate Model objects with Carrierwave in Rails

I can duplicate an object like so: plast = Product.last dupobj = plast.dup dupobj.image = plast.image dupobj.save! Works perfectly from the console. However when I want to populate the ...
0
votes
1answer
26 views

Unix shell script command that creates symlinks on windows?

Is there a unix shell script command that creates symlinks, that works on windows too? (not windows-specific command but one that works on a unix-like shell like git bash) Basically what i'm trying ...
-6
votes
1answer
28 views

Symlink with Files.createSymbolicLink (Java 7) [closed]

I'm using 1.7.0.15 and want to create symlinks in Java on Linux. The function is the following: public static Path createSymbolicLink(Path link, Path target, FileAttribute... attrs) I couldn't ...
0
votes
0answers
13 views

Symlinks are lost after running rsync to sync two directories [migrated]

I have two identically named directories with similar subdirectories and I would like to merge the contents of one into the other. I'm trying to use rsync to do this and I'm finding that symlinks ...
5
votes
1answer
38 views

Symbolic link to a non existing file [closed]

I tried to create a symbolic link to a non existing file ln -s non_existing_file.txt $HOME/dir1/dir2/my_symbolic_link then I tried to write something in the non existing file using the symbolic ...
1
vote
1answer
26 views

cannot pass commandline args to globale installed node package via bin shortcut

I try to write a commandline app with node and want to install it with npm install -g After that it is not possible to read out the process.argv array. I tried this : // print process.argv ...
0
votes
0answers
17 views

Trying to create a rakefile to hardlink all files in a directory to /usr/lib/cgi-bin

I'm trying to set it up so that in my working directory the following command will set up hardlinks for all files in that directory that follow a certain format to /usr/lib/cgi-bin. rake link_up ...
-2
votes
0answers
29 views

Creating symbolic links in linux [closed]

I need to create symbolic links for all the files in user home directories ending with .tex in a bash script. they also need to be unique and readable by all users. Any ideas? :)
0
votes
0answers
6 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
15 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
10 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
42 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
21 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
41 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
45 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
42 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
39 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
41 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
34 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
29 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 ...
0
votes
1answer
151 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
20 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 ...
0
votes
0answers
17 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
71 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
87 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
vote
0answers
37 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
18 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
45 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
54 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
46 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
105 views

Tortoise SVN error “Symbolic links are not supported on this platform”

When I try to update a sub folder of my project, tortoise SVN gives me the error Working copy "c:\project\extensions" locked. "c:\project\extensions" is already locked I've tried to cleanup from ...
0
votes
1answer
75 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
27 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
33 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
38 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 2 3 4 5 14