Note/linux

[NOTE : linux] setting... '멋'에 대한 것...

jir4vvit 2021. 1. 27. 13:55

원격 접속 툴 : xshell

 

설치

www.netsarang.com/ko/free-for-home-school/

 

무료 라이선스

무료 라이선스 무료 사용자의 최고의 선택 Xshell과 Xftp 무료 라이선스는 성능이나 기능적인 면에서 이에 필적할 만한 것이 없습니다. 어떤 것도 따라올 수 없습니다. 가정에서 개인 서버를 관리

www.netsarang.com

greenfishblog.tistory.com/34

 

VMWare에서 ubuntu 설치후 SSH 연결하기

이번 포스트는 다음의 내용을 포함하고 있습니다. VMWare의 Port-forwarding Ubuntu의 고정 IP 할당 Ubuntu의 SSH 설치하기 Ubuntu의 고정 IP 할당 하기 우선 VMWare의 네트워크 설정부터 가져와야 합니다. VMWare..

greenfishblog.tistory.com

https://blog.dalso.org/article/ubuntu-20-04-lts-nework

 

Ubuntu 20.04 LTS 네트워크 연결하기.(고정IP 할당) - 달소씨의 하루

Connection failed Activation of network connection failed 기본적으로 Desktop의 경우 설치할때 네트워크정보를 입력하지않기때문에  DHCP서버 혹은 공유기를 사용하지않는 내부망의 경우 ip를 수동으로 할당해

blog.dalso.org

연결 후...

 

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

 

ohmyzsh/ohmyzsh

🙃 A delightful community-driven (with 1700+ contributors) framework for managing your zsh configuration. Includes nearly 300 optional plugins (rails, git, OSX, hub, capistrano, brew, ant, php, pyt...

github.com

재부팅!

 

 

드래그 앤 드랍

윈도우 -> 리눅스 전에 필요

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" 입력

 

재부팅!