-
Notifications
You must be signed in to change notification settings - Fork 0
01_System Setup
adioshun edited this page Apr 20, 2018
·
1 revision
-
CPU
- htop :
sudo apt-get install htop - nmon :
sudo apt-get install nmon
- htop :
-
GPU Monitoring :
-
nvidia-smi -l 2:Failed to initialize NVML: Driver/library version mismatch에러시Reboot - 한줄로보기, gpustat :
sudo pip install gpustat,watch --color -n1.0 gpustat[참고] - htop처럼 보기, glances :
sudo pip install glances[gpu],sudo glances(n, z, d)-
wget -O- https://bit.ly/glances | /bin/bash[홈페이지]
-
- intel-gpu-tools :
sudo apt-get install intel-gpu-tools,intel_gpu_top
-
- 앱기반 : Hyperdash,
pip install hyperdash && hyperdash login - 웹기반 : LabNotebook
![]() |
![]() |
|---|---|
| Hyperdash | LabNotebook |
sudo apt-get install zsh curl
chsh -s `which zsh`
sudo curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
zsh가 느리게 시작 할때
sudo rm -rf /private/var/log/asl*.as
버젼확인 : tmux -V
apt-get install tmux
tmux new -s <원하는 이름>
- 창 나누기 Ctrl + b, " (새로) Ctrl + b, % (가로)
- Ctrl + b, 방향키 : 화면 이동
- 창 이동 Ctrl + b, o(알파벳)
- zoom ctrl+ b, z
출처: http://kaos119.tistory.com/113 [기다리면 먹는거다] - 미리 창 분활 해놓기 : Tmuxinator
출처: http://code4rain.tistory.com/1169527180 [codeRain's Life Blog]
touch /root/.tmux.conf
## set mouse for tmux 2.1 as shipped with Ubuntu 14.04
set-option -g mouse on
bind -n WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M
bind -n WheelDownPane select-pane -t= \; send-keys -M
# Set the default terminal mode to 256color mode
set -g default-terminal "screen-256color"
# enable activity alerts
setw -g monitor-activity on
set -g visual-activity on
# Center the window list
set -g status-justify centre
# Use mouse for 2.6+
set -g mouse on
setw -g mode-keys vi
# Use Alt-arrow keys without prefix key to switch panes
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
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
# scrollback buffer size increase
set -g history-limit 100000
# change window order
bind-key -n C-S-Left swap-window -t -1
bind-key -n C-S-Right swap-window -t +1
# disable window name auto change
set-option -g allow-rename off
# bar color
set -g status-bg black
set -g status-fg white
# Use mouse for 1.8
setw -g mode-mouse on
set -g mouse-select-window on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-utf on
script start_tmux.sh
echo 'start tmux'
#set session name
export SESSION=tmux
tmux -2 new-session -d -s $SESSION
tmux split-window -v -t $SESSION
tmux split-window -v -t $SESSION
tmux split-window -h -t $SESSION
tmux attach -t $SESSION
tmux 세션을 관리하는 경로가 /tmp, /usr/lib/tmpfiles.d/tmp.conf 이쪽 경로일텐데, 조금 검색해보시고 /tmp/tmux-* 경로를 삭제하지 않도록 예외처리
Lost session :
killall -10 tmux
- tmux확장 : xpanes, 여러 명령어 동시 수행, xpanes -c "ping {}" 192.168.0.{1..9}
# ~/.vimrc
set hlsearch " 검색어 하이라이팅
set nu " 줄번호
set autoindent " 자동 들여쓰기
set scrolloff=2
set wildmode=longest,list
set ts=4 "tag select
set sts=4 "st select
set sw=1 " 스크롤바 너비
set autowrite " 다른 파일로 넘어갈 때 자동 저장
set autoread " 작업 중인 파일 외부에서 변경됬을 경우 자동으로 불러옴
set cindent " C언어 자동 들여쓰기
set bs=eol,start,indent
set history=256
set laststatus=2 " 상태바 표시 항상
"set paste " 붙여넣기 계단현상 없애기
set shiftwidth=4 " 자동 들여쓰기 너비 설정
set showmatch " 일치하는 괄호 하이라이팅
set smartcase " 검색시 대소문자 구별
set smarttab
set smartindent
set softtabstop=4
set tabstop=4
set ruler " 현재 커서 위치 표시
set incsearch
set statusline=\ %<%l:%v\ [%P]%=%a\ %h%m%r\ %F\
" 마지막으로 수정된 곳에 커서를 위치함
au BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "norm g`\"" |
\ endif
" 파일 인코딩을 한국어로
if $LANG[0]=='k' && $LANG[1]=='o'
set fileencoding=korea
endif
" 구문 강조 사용
if has("syntax")
syntax on
endif
" 컬러 스킴 사용
colorscheme jellybeans
color schem dir :
/usr/share/vim/vimNN/colors
1 ssh-keygen -t rsa -b 4096 -C "hunjung.lim@samsung.com"
2 eval $(ssh-agent -s)
3 ssh-add ~/.ssh/id_rsa
4 clip < ~/.ssh/id_rsa.pub ## 복사된 내용을 킷허브 설정 페이지에서 키 추가
#로컬 폴더로 이동
$ git init
$ git remote add origin {https://github....}
# 소스 가져 오기
$ git pull origin master #remote의 소스 가져 오기
# 소스 업로드 하기
$ git add *
$ git commit -m ""
$ git push --set-upstream origin master
apt-get install ncdu
apt-get clean
pip clean?


