linux中的screen應用給我的開發工作帶來了不小的便利。
以下貼出我的screen配置檔案:
screenrc [ 注: 此檔案是存在於home下,以.screenrc存在 ]
# define a large scrollback buffer for command which executed
defscrollback 8192
# turn off the start up message
startup_message off
# refresh the display when exiting programs
altscreen on
# vbell
vbell off
# support mouse to rollback the screen
termcapinfo xterm|xterms|xs|rxvt ti@:te@
此僅為乙個簡單的配置檔案,足以夠我使用。
# define a large scrollback buffer for command which executed
defscrollback 8192
deflog off
# turn off the start up message
startup_message off
# refresh the display when exiting programs
altscreen on
# vbell
vbell off
autodetach on
# support mouse to rollback the screen
#termcapinfo xterm|xterms|xs|rxvt ti@:te@
#termcapinfo rxvt 'hs:ts=\e]2;:fs=\007:ds=\e]2;screen\007'
#caption always "%%-w%%[%n %t]%%%+w %=%d %m %0c %%h%"
hardstatus on
hardstatus alwayslastline
hardstatus string "%%-w%%n %t%%+w %=% %"
#%y/%m/%d %c:%s "
#bind ' ' title
# title
shelltitle '$ |bash'
unbind ^x
ubuntu 中 screen 的基本使用
當我連伺服器訓練模型的時候,會遇到一些情況 執行乙個程式跑模型 因為沒有root許可權,無法後台開 等 此時只有分屏,我們才能繼續工作,screen就是乙個極易上手的分屏工具,下面介紹乙個完整的分屏流程 首先,建立乙個screen會話,命令列輸入 screen s opwin 這步操作是建立乙個名為...
Linux 遠端工具Screen 的應用
結束通話原理參考 要求,python2 常用操作 建立screen screen l s yourname l 代表在當前目錄生成log檔案記錄螢幕的輸出。當在工作目錄開啟多個screen時,print會在同乙個log檔案中,若有需求,為了避免混亂可以在不同的工作目錄開啟screen 暫時退出scr...
ubuntu 環境下分屏的使用screen
screen 命令的使用 1.新建乙個名叫yourname的會話 screen s yourname 2.列出當前所有的session screen ls 3.回到yourname這個session screen r yourname 4.遠端detach某個session screen d you...