Ubuntu常用命令记录

  • 删除非空目录
sudo rm -rf [filename]    
  • 配置环境变量
sudo gedit ~/.bashrc
  • 使配置生效
sudo gedit ~/.bashrc
  • 添加桌面快捷方式(以eclipse为例)
    第一步:在桌面新建空白文档,并将其命名为eclipse.desktop,然后将以下内容添加至文档中:
[Desktop Entry]
Categories=Development;
Comment[zh_CN]=
Comment=
Exec=/home/zhemin/Java-Dev/eclipse/eclipse
GenericName[zh_CN]=IDE
GenericName=IDE
Icon=/home/zhemin/Java-Dev/eclipse/icon.xpm
MimeType=
Name[zh_CN]=eclipse
Name=eclipse
Path=
StartupNotify=true
Terminal=false
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=owen 

第二步:右击该文档,为其添加可执行权限

  • 查看隐藏文件快捷键: Ctrl + H

你可能感兴趣的:(Ubuntu常用命令记录)