当前位置: 技术问答>linux和unix
在linux里如何建立一个快捷方式,连接到另一个目录?
来源: 互联网 发布时间:2015-10-23
本文导语: 谢谢。 | ln -s /sourcedirectory /destdirectory | 是指桌面的方式吧 新建一个文本文件 [Desktop Entry] Comment= Comment[zh_CN]= Encoding=UTF-8 Exec='/usr/local/bin/IglooFTP-PRO' GenericName= GenericName[zh_CN]=...
谢谢。
|
ln -s /sourcedirectory /destdirectory
|
是指桌面的方式吧
新建一个文本文件
[Desktop Entry]
Comment=
Comment[zh_CN]=
Encoding=UTF-8
Exec='/usr/local/bin/IglooFTP-PRO'
GenericName=
GenericName[zh_CN]=
Icon=blender
MimeType=
Name=FTP
Name[zh_CN]=FTP
Path=
StartupNotify=true
Terminal=false
TerminalOptions=
Type=Application
X-DCOP-ServiceType=
X-KDE-SubstituteUID=false
X-KDE-Username=
新建一个文本文件
[Desktop Entry]
Comment=
Comment[zh_CN]=
Encoding=UTF-8
Exec='/usr/local/bin/IglooFTP-PRO'
GenericName=
GenericName[zh_CN]=
Icon=blender
MimeType=
Name=FTP
Name[zh_CN]=FTP
Path=
StartupNotify=true
Terminal=false
TerminalOptions=
Type=Application
X-DCOP-ServiceType=
X-KDE-SubstituteUID=false
X-KDE-Username=
|
让Exec项指向一个目录即可
|
ln
|
cp -s /sourcedirectory /destdir
|
是个软连接
|
就是要做一个软链接
ln -s /sourcedir /destdir
man ln 一看便知。
ln -s /sourcedir /destdir
man ln 一看便知。
|
上面的好友都说了,我就不重复了。主要用到命令ln ,通过 man ln 指令 可以学到更多的参数。
|
ln -s 符号连接
|
用ln,不过有硬连接和软连接之分。
跨盘的话不一样的。
跨盘用硬连接还是用软连接就不清楚了,好久没有用linux了,记不得了。
跨盘的话不一样的。
跨盘用硬连接还是用软连接就不清楚了,好久没有用linux了,记不得了。
|
man ln
|
ln -s /sourcefile /destfile