1
Ultratude Jun 22, 2013
用了挺久了。
|
2
TankyWoo Jun 22, 2013
昨晚刚写了一篇介绍tmux的博客 http://www.wutianqi.com/?p=3676
|
3
bigredapple Jun 22, 2013
用了很久了
|
4
Sunyanzi Jun 22, 2013 说句可能引人反感的话 ... 反正我觉得吧 ...
没用过 screen / tmux 的 Linux 用户事实上不算是一个真正的 Linux 使用者 ... |
5
chu1337 OP |
7
kfll Jun 22, 2013
用了两个月,放弃了
|
9
pubby Jun 22, 2013
一直用screen
只是默认的最大40个window实在是太少了 |
10
likuku Jun 22, 2013
用screen好几年,习惯它了,试用过tmux,觉得别扭就懒得换。
|
12
love Jun 22, 2013
只用screen的防断线功能,至于别的功能实在懒得去学了平时也用不到,什么多窗口之类的万一需要再开个终端就是了。
|
14
tywtyw2002 Jun 22, 2013
ssh上面用screen比较多。不过scree也有一些毛病呀。
|
15
0bit Jun 23, 2013
tmux配合zsh加上oh-my-zsh,才是神器
|
16
yakczh Jun 23, 2013
复制字符的时候有问题,把横线也复制了
|
18
dulao5 Jun 23, 2013
screen 的有些会话有时候会不明原因的坏掉, 最近tmux没发现这个问题,用的很顺畅了。
每天早上的工作环境,秒恢复。 |
19
duhastmich Jun 23, 2013
tmux + vim + vimux 才是神器
|
21
sdpfoue Jun 24, 2013
screen都装,tmux好多机器都没有还不能装。放弃了
|
24
yakczh Jun 24, 2013 Terminal,就是鼠标拉一下
|
25
zava Jun 24, 2013
tmux 最大的问题在于一般发行版都没有默认装。
|
30
hit9 Jun 24, 2013
相当赞!
|
31
SAGAN Jun 24, 2013
我当初开始用tmux是因为嫌Ubuntu自带的切换terminal窗口快捷键太难按(Ctrl+PageUp/PageDown) - -
|
34
terry Jun 25, 2013
tmux + teamocil 很赞,*NIX 用户必须会用, tmux / screen 否则只能停留在初级阶段。
|
35
happlebao Jun 25, 2013
和awesome windows manager这种有什么区别?
|
37
gnepnaur Jun 25, 2013
最近发现screen用的时候有些问题,之后发现了tmux,觉得很不错~
|
38
for4 Jun 25, 2013
tmux在debian 7上分屏显示好像有点问题
|
39
palxex Jun 28, 2013
tmux如果能连到ttl serial上估计就真能替换screen了。
|
40
missdeer Jun 28, 2013
发现byobu-tmux比tmux更好用点,不过openSUSE官方仓库里貌似没有。。。还好我主要是在CentOS上用。。。
|
41
firsthym Jun 28, 2013
不错的分享
|
42
openroc Jun 28, 2013
贴个配置文件,版本大于1.7
#!/usr/local/bin/tmux # vim: syntax=tmux # rebind bind key (screen) #set -g prefix C-a #bind C-a last-window # bind C-b last-window bind C-z run-shell '/usr/local/bin/tmux-zoom.sh' # reload config bind r source-file ~/.tmux.conf \; display-message "Config reloaded..." # troggle statusbar bind q set status # display time set -g display-time 2500 set -g history-limit 65535 # Look good #set -g default-terminal "screen-256color" # Start tab numbering at 1 set -g base-index 1 # Enable mouse support setw -g mode-mouse off set -g mouse-select-pane on set -g mouse-resize-pane on set -g mouse-select-window on # enable resize for attaching via different resolution display setw -g aggressive-resize on # enable monitor setw -g monitor-activity on set -g visual-activity on # Act like Vim setw -g mode-keys vi bind h select-pane -L bind j select-pane -D bind k select-pane -U bind l select-pane -R # use different keys to split vertical and horizonal bind | split-window -h bind - split-window -v bind -n M-v split-window -h bind -n M-s split-window -v #--Status-Bar------------------------------------------------------------------- # status bar set -g status-utf8 on # Default colors set -g status-bg black set -g status-fg white ## Left side of status bar : Show session-name and host-name set -g status-left-length 20 set -g status-left '#[fg=green][#[bg=black,fg=cyan]#S#[fg=green]]' ## Middle of status bar, window labels #Inactive setw -g window-status-format '#[fg=cyan,dim]#I#[fg=blue]:#[default]#W#[fg=grey,dim]#F' # Current or active setw -g window-status-current-format '#[bg=blue,fg=cyan,bold]#I#[bg=blue,fg=cyan]:#[fg=white]#W#[fg=dim]#F' # Alerted window in status bar. Windows which have an alert (bell, activity or content). setw -g window-status-bell-fg red setw -g window-status-bell-bg white ## Right side of status bar # show current window title, date and time in my choice of colors set -g status-right '#[fg=green][#[fg=white]#T#[fg=green]][#[fg=blue]%Y-%m-%d #[fg=white]%H:%M#[default]#[fg=green]]' set -g status-position top |
43
tinytub Jun 28, 2013
非专职开发人员表示,xshell这类的工具已经够用了...
|
45
saharabear Jul 6, 2013
@likuku 我也用screen习惯了,所谓的分屏功能,基本上用Emacs就替代了.目前连screen的多窗口也不用了,现在我居然搞成了screen+Emacs, screen单屏操作.
|
46
venmos Jul 6, 2013
|
47
tioover Jul 7, 2013
用了半天,感觉还是没多大用,zsh + gnome 的虚拟终端就够了,tty 下倒是比较实用。
|
48
tioover Jul 7, 2013
唔,求教 man看到调整分栏大小用的是 C-上下左右,但是每次只能调整一点
M-Up, M-Down M-Left,M-Right Resize the current pane in steps of five cells. 这里的M 是什么键 另外楼上设置里面的 Enable mouse support ,放到配置里面以后鼠标还是没办法呀。 |