Ubuntu(18)
-
Manually closing a port from command line
sudo netstat -ap | grep : PID / Program name 항목에서 PID를 찾는다. kill or kill -9 [참고] https://superuser.com/questions/127863/manually-closing-a-port-from-commandline/389252
2022.01.17 -
잠금 오류 해결
sudo rm /var/lib/apt/lists/lock sudo rm /var/cache/apt/archives/lock sudo rm /var/lib/dpkg/lock* sudo dpkg --configure -a
2021.12.01 -
vim 추가설정
[참고자료] Mastering Vim - Ruslan Osipov " swap file 저장 경로를 지정한다. set directory=$HOME/.vim/swap " 되돌리기 상태를 저장해서 영구적으로 사용할 수 있도록 한다. " u (undo) / Ctrl + r (redo) set undofile if !isdirectory(expand("$HOME/.vim/undodir")) call mkdir(expand("$HOME/.vim/undodir"), "p") endif set undodir=$HOME/.vim/undodir " Installing plugins " ~/.vim/pack/plugins/start packloadall " Load all plugins. silent! helptags A..
2021.09.17 -
Neovim 에서 ESLint 와 Prettier 사용하기
▶ ESLint https://github.com/neoclide/coc-eslint GitHub - neoclide/coc-eslint: Eslint extension for coc.nvim Eslint extension for coc.nvim. Contribute to neoclide/coc-eslint development by creating an account on GitHub. github.com :CocCommand eslint.showOutputChannel ▶ Prettier https://github.com/neoclide/coc-prettier GitHub - neoclide/coc-prettier: Prettier extension for coc.nvim. Prettier exten..
2021.08.20 -
hexedit 유용한 단축키 정리
sudo apt install hexedit Enter 인덱스를 입력해서 해당 위치로 이동할 수 있다. tab toggle between ASCII and hexadecimal. /, Ctrl-S search forward (in ASCII or in hexadecimal, use TAB to change). Ctrl-R search backward (in ASCII or in hexadecimal, use TAB to change).
2021.08.19 -
크롬 설치
https://linuxways.net/ubuntu/how-to-install-google-chrome-on-ubuntu-20-04-lts/ 2 ways to install Google Chrome in Ubuntu 20.04 LTS – LinuxWays Ubuntu Google chrome is the most commonly used secure and fast web browser. Google chrome is not available in Ubuntu’s Software repository because it is not an open-source application or software program. Chromium web browser is available in the software ..
2021.08.13