2022-05-19 20:15:15 +09:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2022-05-19 20:14:50 +09:00
|
|
|
# Faster Ubuntu APT repository server for Korean
|
|
|
|
|
sudo sed -i 's/kr.archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list
|
2022-05-23 09:12:18 +09:00
|
|
|
sudo sed -i 's/archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list
|
2022-05-19 20:27:57 +09:00
|
|
|
|
|
|
|
|
# essential packages
|
2022-06-02 13:42:38 +09:00
|
|
|
sudo apt update
|
2022-06-03 08:59:55 +09:00
|
|
|
sudo apt install -y nnn zsh ncdu htop rsync git vim tmux
|
2022-05-19 20:27:57 +09:00
|
|
|
|
|
|
|
|
# Installation of om my zsh
|
|
|
|
|
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|