Linux Screen Commands For Developers 转自:http://fosshelp.blogspot.com/2014/02/linux-screen-commands-for-developers.html 大神的blog 1)List all screen sessions of current user#screen -ls 2)To see all screen sessions on a specific machine#ls -laR /var/run
1.新建文件夹 mkdir mkdir test 2.进入文件夹 cd cd test 3.创建/修改文件 vim vim a.txt 如果不存在a.txt,就会新增a.txt; 如果存在,则修改 先按i,进入insert模式,然后编辑文件 按esc,输入 :wq (意思是 写入并保存 write and quit ) 如果不想保存退出,则输入 :q! 4.查看文件列表 ls ls -al 跟参数a和l分别表示"全部(包括)"和“详情” 5.删除文件和文件夹 rm rm testUBT
This is come from http://blog.lyhdev.com/2013/01/ubuntu-linux-apt-get.html 在 Ubuntu 下移除某個軟體套件,使用的指令是 apt-get remove,例如: sudo apt-get remove texlive-full但由於先前安裝此套件,會一併自動安裝相依套件(dependencies),所以需要再用 autoremove 清理. sudo apt-get autoremove或是在 rem