Other Help Topics :: HOW TO MAKE A SYMLINK)
How do i make a symlink (what is a symlink?)
I need to symlink firefox 0.9.3 and java j2re1.4.2_05 together. (as in making a plugin?)
open emelfm
navigate rightpanel to the destination folder
navigate leftpanel to the source file
press Symlink button
A symbolic link (is that what you want?) is a reference to another file, like a shortcut in Windows or an alias on the Mac. You can create one in the bash shell with the command
ln -s <existing file or directory name> <link name>
the -s makes it a symbolic link, without that it's a hard link (points to the inode). Those can point across partitions.
For that, I'd use the bash command..
The symlink button will symlink to the
/ramdisk/opt/.firefox_plugins/* , not the /opt/.firefox_plugins/*
The bash command will do it properly..
73
ke4nt
So you would use the ls without the -s if you wanted to have your /home directory on another partition?
Chris
Next Page...
original here.