Results 11 to 11 of 11
Originally Posted by ElectroFox
All of the above mentioned create hardlinks. They are slightly different. To create a symlink, use the command symlink, instead of ln.
Hard links are indeed ...
- 09-13-2008 #11Just Joined!
- Join Date
- Sep 2008
- Posts
- 1
Hard links are indeed slightly different than symbolic links (symlinks). However, all of the examples mentioned above use the -s option of the ln command, which does in fact create symlinks.
To create a hard link:
ln <destination> <link name>
To create a symbolic link:
ln -s <destination> <link name>



