当前位置:   article > 正文

Linux screen设置缓冲区大小/历史记录长度_linux screen 设置缓冲区

linux screen 设置缓冲区

screen -h 10000指定缓冲区大小需要手动输入参数,很麻烦,虽然可以alias screen="screen -h 1000",但只能设置screen的第一个窗口的缓冲区大小。

~/.screenrc中添加:

defscrollback 10000
termcapinfo xterm ti@:te@
  • 1
  • 2

defscrollback 100000:将默认回滚行数设置为 10000
termcapinfo xterm ti@:te@:允许在xterm或PuTTY中滚动终端。

附录

.screenrc常用设置
# 缓冲区行数
defscrollback 10000

# 支持鼠标滚轮
termcapinfo xterm ti@:te@

# 不显示欢迎屏幕
startup_message off

# 关闭闪屏
vbell off

# 状态栏
hardstatus alwayslastline
hardstatus string '%{= kg}[%{G}%H%{-}][ %{C}%-Lw%{+b g}[%{r}%n %{Y}%t%{-b g}]%{C}%+Lw%= %{G}][ %{C}S:%{b}(F1)[] (F2)< (F3)> (F4)<> %{C}V:%{b}(F5)| (F6)- (F7)> (F8)x %{kg}][ %Y/%m/%d %{G}%c %{g}]'

# 快捷键
# 窗口
bindkey -k k1 title
bindkey -k k2 prev
bindkey -k k3 next
bindkey -k k4 other
# 视图拆分
bindkey -k k5 split -v
bindkey -k k6 split
bindkey -k k7 focus
bindkey -k k8 remove
# 备用
#bindkey -k k9 other
#bindkey -k k; other
#bindkey -k F1 other
#bindkey -k F2 other

# 默认窗口名
#sessionname trainer
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
参考

https://www.gnu.org/software/screen/manual/screen.html
https://gist.github.com/mosquito/d109e44a2c6884c34f9c

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/65396
推荐阅读
相关标签
  

闽ICP备14008679号