원격 접속 툴 : xshell
설치
www.netsarang.com/ko/free-for-home-school/
https://blog.dalso.org/article/ubuntu-20-04-lts-nework
연결 후...
zsh쉘 사용하기
sudo apt-get install zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
chsh -s /usr/bin/zsh
재부팅!
테마 선택하기
vi ~/.zshrc
ZSH_THEME= "[테마명]"
github.com/ohmyzsh/ohmyzsh/wiki/Themes
재부팅!
드래그 앤 드랍
윈도우 -> 리눅스 전에 필요
sudo apt-get install lrzsz
리눅스 -> 윈도우
sz [파일명]
vim 테마 꾸미기
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vi ~/.vimrc 아래 내용 설정
==================================
set nu
set ts=4
set shiftwidth=4
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'scrooloose/syntastic'
Plugin 'nanotech/jellybeans.vim'
Plugin 'kchmck/vim-coffee-script'
call vundle#end()
filetype plugin indent on
color jellybeans
vim 입력
:PluginInstall 입력 후 엔터 몇 번 쳐주면 설치됨
vi ~/.zshrc
-> TERM="xterm-256color" 입력
재부팅!
'Note > linux' 카테고리의 다른 글
[NOTE : linux] docker-compose 설치 & sudo없이 실행하기 (0) | 2022.04.27 |
---|---|
[NOTE : linux] ubuntu nasm 설치, 컴파일 (0) | 2021.03.23 |
[NOTE : linux] peda에서 PIE 디버깅 (0) | 2021.01.28 |