yuch4n

PaizaCloud

Oct 3rd, 2018
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.06 KB | None | 0 0
  1. sudo timedatectl set-timezone Asia/Tokyo
  2.  
  3. cat <<EOF > ~/.screenrc
  4. autodetach on
  5. caption always "%{= wb} %-w%{=bu dr}%n %t%{-}%+w %= %{=b wk} [%l] %{=b wb}%Y/%m/%d %{=b wb}%c"
  6. startup_message off
  7. EOF
  8.  
  9. cat <<EOF > ~/.vimrc
  10. if &term =~ "vt100" || &term =~ "xterm"
  11.   if has("terminfo")
  12.     set t_Co=8
  13.     set t_Sf=1%dm
  14.     set t_Sb=1%dm
  15.   else
  16.     set t_Co=8
  17.     set t_Sf=m
  18.     set t_Sb=m
  19.   endif
  20.   syntax on
  21. endif
  22. set tabstop=4
  23. set shiftwidth=4
  24. set softtabstop=0
  25. set nu
  26. set cursorline
  27. set autoindent
  28. EOF
  29.  
  30. mkdir -v ~/.w3m
  31. cat <<EOF > ~/.w3m/config
  32. user_agent Lynx/2.8.4rel.1 libwww-FM/2.14
  33. EOF
  34.  
  35. sudo apt-get update
  36. sudo apt-get -y install fonts-vlgothic translate-shell cowsay hping3 nmon iptraf-ng iftop
  37.  
  38. wget https://git.io/echo-meme.deb
  39. sudo dpkg -i ./echo-meme.deb
  40. rm echo-meme.deb
  41.  
  42. wget -nv https://raw.githubusercontent.com/fumiyas/home-commands/master/echo-sd
  43. sudo install -m 0755 echo-sd /usr/local/bin/echo-sd
  44. rm echo-sd
  45.  
  46. go get -u github.com/xztaityozx/owari
  47. go get -u github.com/jiro4989/textimg
  48.  
  49. npm -g install http-server vtop
Add Comment
Please, Sign In to add comment