[SpaceVim] vim한번에 설치하기

1 curl –sLf https://spacevim.org/install.sh | bash cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 # This is a basic configuration example for SpaceVim   # All SpaceVim options are below [options] snippet [options]     # set spacevim theme. by default colorscheme layer is not loaded,     # if you want to use more colorscheme, please load the colorscheme     # layer, the value of this option is a string.     colorscheme = “gruvbox”     colorscheme_bg = “dark”     # Disable guicolors in basic mode, many terminal do not support 24bit     # true colors, the type of the value is boolean, true or false.     enable_guicolors = true     # Disable statusline separator, if you want to use other value, please … Read more

nmap 사용법 정리

  nmap 네트워크 스캐닝 툴로, 대상(target)의 포트 및 서비스를 스캔하는데 사용되는 툴 설치가 완료된 경우 터미널 환경에서 nmap을 입력하면 실행할 수 있다. ————————————————————————————————- ┌──(root💀Luna)-[~] └─# nmap Nmap 7.94SVN ( https://nmap.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: Can pass hostnames, IP addresses, networks, etc. Ex: scanme.nmap.org, microsoft.com/24, 192.168.0.1; 10.0.0-255.1-254 -iL <inputfilename>: Input … Read more