Linux screen 命令詳解
Linux screen命令用於多重視窗管理程式。
語法:
screen [-AmRvx -ls -wipe][-d <作業名稱>][-h <行數>][-r <作業名稱>][-s <shell>][-S <作業名稱>]
引數說明:
-A:將所有的視窗都調整為目前終端機的大小
-d<作業名稱>:將指定的screen作業離線
-h<行數>:指定視窗的緩衝區行數
-m:即使目前已在作業中的screen作業,仍強制建立新的screen作業
-r<作業名稱>:恢復離線的screen作業
-R:先試圖恢復離線的作業。若找不到離線的作業,即建立新的screen作業
-s<shell>:指定建立新視窗時,所要執行的shell
-S<作業名稱>:指定screen作業名稱
-v:顯示版本資訊
-x:恢復之前離線的screen作業
-ls或--list:顯示目前所有的screen作業
-wipe:檢查目前所有的screen作業,並刪除已經無法使用的screen作業
安裝screen:
[root@hankyoon ~]# yum install screen
建立一個新的視窗並啟動:
[root@hankyoon ~]# screen -S alter_start
[root@hankyoon ~]# screen vi yoon.txt
screen會話分離:
[root@hankyoon ~]# control a + d
檢視screen會話:
[root@hankyoon ~]# screen -ls
There is a screen on:
1793.yoon (Attached)
1 Socket in /var/run/screen/S-root.
重新連線screen會話:
[root@hankyoon ~]# screen -r 1793
清除dead 會話:(如果由於某種原因其中一個會話死掉了(例如人為殺掉該會話),這時screen -list會顯示該會話為dead狀態。使用screen -wipe命令清除該會話)
[root@hankyoon ~]# screen -wipe
鎖定screen會話:
[root@hankyoon ~]# crontol a + s
解鎖screen會話:
[root@hankyoon ~]# crontol a + q
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28939273/viewspace-2718441/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux screen命令Linux
- linux之screen命令使用Linux
- Linux at命令詳解Linux
- linux top 命令詳解Linux
- linux命令詳解:sortLinux
- linux top命令詳解Linux
- Linux find 命令詳解Linux
- Linux xargs 命令詳解Linux
- Linux sed 命令詳解Linux
- Linux awk 命令詳解Linux
- Linux iptables 命令詳解Linux
- Linux xattr 命令詳解Linux
- Linux locate 命令詳解Linux
- Linux netstat 命令詳解Linux
- Linux firewalld 命令詳解Linux
- Linux ss 命令詳解Linux
- Linux nc 命令詳解Linux
- Linux history 命令詳解Linux
- Linux sort 命令詳解Linux
- Linux diff命令詳解Linux
- 詳解Linux chkconfig命令Linux
- Linux chattr命令詳解Linux
- Linux命令top詳解Linux
- Linux umask 命令詳解Linux
- [linux] 使用Screen後臺執行命令Linux
- Linux的scp命令詳解Linux
- Linux下 ln 命令詳解Linux
- Linux中awk命令詳解Linux
- linux之kill命令詳解Linux
- linux的zip命令詳解Linux
- Linux中DD命令詳解Linux
- 【Linux】命令expect使用詳解Linux
- Linux基礎命令詳解Linux
- Linux ps命令詳解,Linux檢視程序。Linux
- 【轉】linux-命令top詳解Linux
- Linux/Unix重要find命令詳解Linux
- linux常用命令詳解Linux
- Linux 常用命令之 top 命令詳解Linux