install more packages

This commit is contained in:
Dict Xiong 2022-05-23 16:29:17 +08:00
parent c8cf824e62
commit d566690145
2 changed files with 32 additions and 6 deletions

31
tools/msys2.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/bash
if [[ $USER != "root" ]]; then
echo "must run as root!"
exit 1
fi
set_mirror()
{
# MIRROR=${1:-"mirrors.tuna.tsinghua.edu.cn"}
# MIRROR=${MIRROR//\//\\\/}
# sed -i 's/(archive|security).ubuntu.com/${MIRROR}/g' /etc/apt/sources.list
echo "to do ..."
}
pacman_S()
{
pacman -Syu
pacman -S tmux git zsh curl vim wget base-devel mingw-w64-x86_64-toolchain make cmake gcc zip
}
router()
{
case $1 in
pacman-S ) pacman_S ;;
set-mirror ) set_mirror $2 ;;
* ) echo unknown command "$1". available: pacman-S, set-mirror ;;
esac
}
router $@

View File

@ -19,13 +19,8 @@ apt_install()
for i in {man-db,vim,ca-certificates}; do apt install $i -y; done
# mass installation
apt update
apt install git tmux zsh curl wget dialog net-tools dnsutils netcat traceroute sudo python3 python3-pip cron inetutils-ping openssh-client openssh-server htop gcc g++ cmake make
apt install git tmux zsh curl wget dialog net-tools dnsutils netcat traceroute sudo python3 python3-pip cron inetutils-ping openssh-client openssh-server htop gcc g++ cmake make zip
for i in {fzf,ripgrep}; do apt install $i -y; done
# who am i
git config --global user.email "me@beardic.cn"
git config --global user.name "Dict Xiong"
}
set_timezone()