linux如何设置软连接??

由于经常要设置httpd.conf所以想定义该文件别名为confighttp
2024-11-26 06:44:20
推荐回答(5个)
回答1:

linux下的软链接类似于windows下的快捷方式。

实例:

ln -s httpd.conf confighttp

 其中 httpd.conf 就是源文件,confighttp是链接文件名,其作用是当编辑confighttp
,实际上是链接编辑httpd.conf。

如果要删除软链接:

  rm -rf  confighttp

这样只会删除confighttp链接文件,而不会删除源文件httpd.conf。

相对于软连接,还有硬链接,

建立硬链接命令:

ln httpd.conf confighttp

硬链接文件相当于一个文件存储在两个位置,可以有效防止误删。

回答2:

ln -s [target] [link]
如果想建立一个testa指向test。可以写成ln -s /xxx/test /xxx/testa

ln -s confighttp httpd.conf

回答3:

ln -s /confighttp /etc/httpd/httpd.conf

回答4:

ln -s confighttp httpd.conf

回答5:

ln命令,man ln里面看看参数就可以了