Ubuntu 快速开始配置

Ubuntu 快速开始配置

[换源]

1
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
1
sudo vim /etc/apt/sources.list
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#添加阿里源
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse

#添加清华源
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse multiverse

#更新源

1
sudo apt-get update

Alias

1
2
3
4
5
alias sai='sudo apt install'
alias ll='ls -al'

echo "sai='sudo apt install'" >> ~/.zshrc
echo "ll='ls -al'" >> ~/.zshrc

[常用软件]

1
2
3
4
sudo apt install net-tools
sudo apt-get install curl git htop screen tmux
sudo apt-get install python3-dev python3-pip python3-setuptools
sudo apt-get install ffmpeg

[pip 换源]

1
2
3
4
5
6
7
8
#创建pip文件夹
sudo mkdir pip
cd pip
#创建pip.cong文件
touch pip.conf
#编辑pip.conf文件
sudo vim pip.conf
#写入
1
2
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

[pip]

1
2
pip install --upgrade pip
pip install requests icecream rich

[SSH]

1
2
sudo apt-get install openssh-server
sudo systemctl enable ssh

[Docker]

1
curl -sSL https://get.daocloud.io/docker | sh

[zsh]

1
2
3
4
5
6
7
8
9
10
11
12
sudo apt-get install zsh
# 进入 zsh
zsh

sh -c "$(wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh -O -)"

# 语法高亮
sudo apt install zsh-syntax-highlighting
echo "source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~/.zshrc

# 自动补全
git clone https://gitee.com/mattuy/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions

然后修改 ~/.zshrc

1
2
3
4
5
plugins=( 
zsh-autosuggestions
z
extract
)

thefuck

thefuck 是一个用于 Linux 和其他 Unix 类操作系统(包括 macOS)的命令行工具,它旨在帮助用户纠正他们输入错误的命令。当你在终端中输入了一个命令但拼写错误或使用了不正确的参数时,thefuck 可以自动识别并提供修正建议,只需再次运行该命令(通常通过简单地输入 fuck 并按下回车键),即可自动更正并重新执行你的命令。

1
2
sudo apt install thefuck

把下面的加入.bashrc

1
2
3
4
5
eval $(thefuck --alias)
# You can use whatever you want as an alias, like for Mondays:
eval $(thefuck --alias FUCK)
# 或者继续添加下面这句,启用自动确认
alias fuck='fuck -y'

Ubuntu 快速开始配置
https://taylorandtony.github.io/2025/01/31/linux-Ubuntu快速温饱指南/
作者
TaylorAndTony
发布于
2025年1月31日
许可协议