Tagged Questions
6
votes
1answer
119 views
Why are reboot, shutdown and poweroff symlinks to systemctl?
In Arch Linux, if I do ls -l in /sbin, I can see that reboot, shutdown and poweroff are all symlinks to /usr/bin/systemctl. But issuing reboot, shutdown and systemctl commands obviously does not all ...
3
votes
1answer
51 views
How do I batch-export all the content contained in symbolic links? (and then delete them all)
So as an alternative to Recursive scp without following links or creating a giant tar file? (this could be an emergency since the remote files could be deleted any time soon), I'm thinking of deleting ...
1
vote
2answers
819 views
Create symbolic links with wildcards
I have multiple hard drives with the same directory hierarchy, for example:
/media/sda/dir1
/media/sda/dir2
...
/media/sdb/dir1
/media/sdb/dir2
Two hard drives with similar names and similar ...
3
votes
2answers
1k views
Use `ln` to create a missing directory
So I'm writing a small package manager, and a problem I've run into is making the symbolic links to files.
It installs the package to /usr/pkg/name-version, and then reads a file to determine what ...
4
votes
1answer
264 views
How to replace a symbolic link with an equivalent hard link?
Having a (single, no batch filesystem processing needed) symlink, what a command line to use to turn it into a hard link to the same file?
6
votes
3answers
613 views
How to make a symbolic link to /usr/bin/vim but with start-up parameters?
After I make&make install vim from source, I found many symbolic links of vim in /usr/local/bin, such as evim, rvim, view...
The vim(1) man page said that "rvim" is equivalent to "vim -Z" and so ...
1
vote
2answers
2k views
Executable symbolic link results in “command not found”
I created a symbolic link (yesterday) like this:
sudo ln -s bin/python /usr/bin/prj-python
When I run:
prj-python file.py
I get:
prj-python: command not found
When I try creating the link ...