wsl2 debian 開機配置及預設軟體安裝
1替換安裝源
幫助
http://mirrors.ustc.edu.cn/help/
使用配置生成器
https://mirrors.ustc.edu.cn/repogen/
2 設定預設編輯器
sudo update-alternatives --config editor
3 修改使用者不輸入密碼
sudo viduso
wolbo ALL=(ALL) NOPASSWD:ALL
4 安裝開發工具
sudo apt-get install build-essential
sudo apt-get install subversion ragel curl texinfo g++ bison flex cvs yasm automake libtool autoconf gcc cmake git make pkg-config zlib1g-dev unzip pax nasm gperf autogen bzip2 autoconf-archive p7zip-full meson clang libtool-bin ed python3-distutils -y
5 不習慣使用iproter2 安裝net-tools
sudo apt-get install net-tools
命令對比
https://www.xmodulo.com/linux-tcpip-networking-net-tools-iproute2.html
6 安裝man 和手冊
sudo apt-get install man-dbmanpages-dev
manpages-posix-dev
7 配置系統代理
sudo vi /etc/profile
export http_proxy="http://$(route -n | grep -m1 '^0.0.0.0' |awk '{ print $2;}' ):10809"
export https_proxy="http://$(route -n | grep -m1 '^0.0.0.0' |awk '{ print $2;}' ):10809"