Ubuntu 分辨率 & tmux 设置 & 扩种文件系统


ubuntu - 分辨率

修改 : ~/.profile

xrandr --newmode "2560x1440_60.00" 312.25 2560 2752 3024 3488 1440 1443 1448 1493 -hsync +vsync

xrandr --addmode Virtual1 "2560x1440_60.00"

xrandr --output Virtual1 --mode "2560x1440_60.00"

(获取配置命令 : cvt 2560 1440)


xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync

xrandr --addmode Virtual1 "1920x1080_60.00"

xrandr --output Virtual1 --mode "1920x1080_60.00"


tmux

1、 安装
sudo apt-get install tmux
2、 配置位置

配置文件 : ~/.tmux.conf
加载方法: tmux source-file ~/.tmux.conf

3、配置文件( 快捷键改动 ctrl a )

set-option -g status-keys vi  
setw -g mode-keys vi  
  
setw -g monitor-activity on  
  
# setw -g c0-change-trigger 10  
# setw -g c0-change-interval 100  
  
# setw -g c0-change-interval 50  
# setw -g c0-change-trigger  75  
  
  
set-window-option -g automatic-rename on  
set-option -g set-titles on  
set -g history-limit 100000  

set -g default-shell /bin/bash  

#set-window-option -g utf8 on  
  
# set command prefix  
set-option -g prefix C-a  
unbind-key C-b  
bind-key C-a send-prefix  
  
bind h select-pane -L  
bind j select-pane -D  
bind k select-pane -U  
bind l select-pane -R  
  
bind -n M-Left select-pane -L  
bind -n M-Right select-pane -R  
bind -n M-Up select-pane -U  
bind -n M-Down select-pane -D  
  
bind < resize-pane -L 7  
bind > resize-pane -R 7  
bind - resize-pane -D 7  
bind + resize-pane -U 7  
  
  
bind-key -n M-l next-window  
bind-key -n M-h previous-window  
  
  
  
set -g status-interval 1  
# status bar  
set -g status-bg black  
set -g status-fg blue  
  
  
#set -g status-utf8 on  
set -g status-justify centre  
set -g status-bg default  
set -g status-left " #[fg=green]#S@#H #[default]"  
set -g status-left-length 20  
  
  
# mouse support  
# for tmux 2.1  
# set -g mouse-utf8 on  
set -g mouse on  
#  
# for previous version  
#set -g mode-mouse on  
#set -g mouse-resize-pane on  
#set -g mouse-select-pane on  
#set -g mouse-select-window on  
  
  
#set -g status-right-length 25  
set -g status-right "#[fg=green]%H:%M:%S #[fg=magenta]%a %m-%d #[default]"  
  
# fix for tmux 1.9  
bind '"' split-window -vc "#{pane_current_path}"  
bind '%' split-window -hc "#{pane_current_path}"  
bind 'c' new-window -c "#{pane_current_path}"  
  
# run-shell "powerline-daemon -q"  
  
# vim: ft=conf

4、常用命令

tmux ls
tmux a -t [num]
ctrl+a [上下左右]
ctrl+a z  // 放大缩小
ctrl+a :
ctrl+a %
ctrl+z // 关闭
ctrl+c // 退出

5、 复制,粘贴

按住 shift 选择文本, ctrl shift c/v

(不成功 则试试 ctrl + insert , shift + insert)


如何扩充 文件系统 ?

使用软件 gparted

sudo apt-get install gparted
sudo gparted

你可能感兴趣的:(Ubuntu 分辨率 & tmux 设置 & 扩种文件系统)