Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
112 views

whats are *.so.*.* libs

When I do ls -l in /usr/lib I see lots of libs with "sameName.so.*.*" extension. What is the significance of these extensions? Why softlinks are created? what are their use? One example will help ...
3
votes
2answers
849 views

how to find the target file's full(absolute path) of the symbolic link or soft link in python

when i give ls -l /etc/fonts/conf.d/70-yes-bitmaps.conf lrwxrwxrwx <snip> /etc/fonts/conf.d/70-yes-bitmaps.conf -> ../conf.avail/70-yes-bitmaps.conf so for a symbolic link or soft link, ...
3
votes
2answers
626 views

Hard link and Symbolic links in Unix

I just wanted to clarify if a hard/symbolic link is actually a file that is created ?? I ran the command: ln source hardlink ln -s source softlink -- The ls command shows this 2 links as a file. ...
3
votes
3answers
357 views

Include softlinked folders in unix “find”

How can I tell unix "find" to include in it's recursive search a folder which is softlinked?
2
votes
2answers
2k views

How to find all files which are basically soft or hard links of other directories or files on linux?

How could I get the list of all linked files on my system or from a certain directory. I used to create links but they became unmanageable with time. I want the list of all such links from a ...
1
vote
2answers
67 views

Recursive function shell script

#!/bin/sh param1=$1 param2=$2 recursive(){ mkdir -p $2 cd $1 for file in `ls $1`; do [ $file = "." -o $file = ".." ] && continue [ -d $file ] && recursive ...
1
vote
3answers
31 views

Linux SoftLink to applications and execution

I have created a softlink to an application using the following command ln -s sourcedir/Application somedir/ApplicationSoftLink But I do not know how to start the application using the softlink. My ...
1
vote
2answers
1k views

canonicalize a path name on solaris

On a GNU system I would just use readlink -f $SOME_PATH, but Solaris doesn't have readlink. I'd prefer something that works well in bash, but other programs are ok if needed. Edit: The best I've ...
0
votes
2answers
102 views

C#: Get size of a soft linked file

I looking for a simple way to get the size of softlink file. The FileInfo class returns everytime 0Bytes. How can I get the real file size?
0
votes
0answers
26 views

How to *force* a program to run in a different directory than the one it wants to be in

Somehow LittleSpaceDuo insists on running in the directory it's executable is stored in rather than the pwd. The only thing that works is using a hard link. So how do I do it?
0
votes
0answers
158 views

CreateHardLink and CreateSymbolicLink Win32 Functions

I am completing a project to create dummy file systems for backup testing and need to develop a method of creating a Hardlinks and Softlinks within the structures. The CreateHardLink and ...