Debian
使用 apt/dpkg 安装的软件包,Debian/Ubuntu 同样适用
常用¶
- Linux 镜像源#Debian
- 查看发行版
hostnamectl
cat /etc/issue
lsb_release -a
(Ubuntu专用)
- Debian 12 Bookworm : Download : Server World
- 服务器版镜像,tuna镜像站 debian-live-12.6.0-amd64-standard.iso
实用软件¶
- 浏览器
- Chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i ./google-chrome-stable_current_amd64.deb
- 如果以上命令安装失败,请执行
sudo apt install -f
后再重复执行上一行的命令
- Firefox
- Chrome
- VS Code
- Wine 模拟器
sudo apt install wine
- wine32:
sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install wine32
- Ubuntu Server 安装 TigerVNC + Xfce4 桌面环境
- 密码管理:
gnome-keyring
seahorse
keepassxc
自用安装命令:
Bash | |
---|---|
字体¶
- 思源黑体
sudo apt install fonts-noto-cjk fonts-noto-cjk-extra
- 颜文字
sudo apt install fonts-noto-color-emoji
- fonts-wqy-microhei -「文泉驛微米黑」
- fonts-wqy-zenhei -「文泉驛正黑體」
oh-my-zsh¶
Ubuntu 上安装 Oh My Zsh 的步骤
-
安装 Zsh:
-
更改默认 Shell(可选):
Bash -
安装 Oh My Zsh(使用 curl):
Bash -
打开配置文件:
修改主题 主题预览Bash robbyrussell
默认主题agnoster
美观但需要字体支持ys
轻量级且信息齐全,包含 Git 状态信息bira
提供更丰富的信息,适合日常使用重新进入终端即可生效。Bash