惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
SecWiki News
SecWiki News
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
量子位
M
MIT News - Artificial intelligence
GbyAI
GbyAI
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
TaoSecurity Blog
TaoSecurity Blog
博客园 - 【当耐特】
H
Heimdal Security Blog
腾讯CDC
The Last Watchdog
The Last Watchdog
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
S
Schneier on Security
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
博客园 - 司徒正美
Recent Commits to openclaw:main
Recent Commits to openclaw:main
C
Cybersecurity and Infrastructure Security Agency CISA
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
Application and Cybersecurity Blog
Application and Cybersecurity Blog
F
Full Disclosure
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
T
Threatpost
月光博客
月光博客
A
Arctic Wolf
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
T
Troy Hunt's Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
D
DataBreaches.Net
O
OpenAI News
L
LINUX DO - 最新话题
宝玉的分享
宝玉的分享
小众软件
小众软件
V
Vulnerabilities – Threatpost
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
T
The Exploit Database - CXSecurity.com
Martin Fowler
Martin Fowler
美团技术团队
P
Privacy International News Feed

维奥洛的航行日记

数据表字段设计 ERROR ERROR FOMO 何意味 恍惚间,自己分不清用的 win11 还是 arch 整理了一份佛经列表,闲时读下 与千问对话:AI 训练材料的广度 vscode、obsidian 等在 kde wayland 模式下 fcitx5 不能输入中文如何解决 podman nginx php dev-config 这是我的九阳真经 像旅行者一样学习
arch linux install & config
作者: vioulo · 2026-04-16 · via 维奥洛的航行日记

这篇文章距离最后更新已过58 天,如果文章内容或图片资源失效,请留言反馈,我会及时处理,谢谢!

archinstall
除了基本设置外,记得勾选将 iso 网络配置应用于 installation
保险起见,额外的包里面也勾选下:NetworkManager

  • 避免安装成功后不能管理网络

显卡包

1
2
3
4
5
6
7
8
# Intel
sudo pacman -S xf86-video-intel

# AMD
sudo pacman -S xf86-video-amdgpu

# NVIDIA (open source 驱动)
sudo pacman -S xf86-video-nouveau

kde

1
2
3
sudo pacman -S plasma kde-applications sddm
sudo systemctl enable sddm
reboot

设置 archlinuxcn

1
2
3
4
5
6
7
8
9
sudo pacman -S gnupg

sudo vim /etc/pacman.conf

multilib # 解开注释,适配 32 位包
[archlinuxcn]
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
Server = https://mirrors.hit.edu.cn/archlinuxcn/$arch

keyring

1
2
3
4
5
6
7
8
9
pacman -Syyu

sudo pacman -Sy archlinux-keyring
sudo pacman-key --init
sudo pacman-key --populate archlinux

sudo pacman -S archlinuxcn-keyring
sudo pacman -Syu archlinuxcn-keyring
sudo pacman-key --lsign-key "[email protected]"

常用软件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
paru
sudo pacman -S --needed base-devel
git clone https://aur.archlinux.org/paru.git
cd paru
makepkg -si
vim
openssh
yakuake
byobu
lazygit
mycli
proxychains
sudo vim /etc/proxychains.conf
bat
btop
zoxide
visual-studio-code-bin
obsidian
clash-verge-rev
flameshot # 自带截图已经满足
podman
aardvark-dns
trash-cli
vim ~/.bashrc
alias rm='trash'
source ~/.bashrc

git 设置

1
2
3
4
5
6
7
8
sudo pacman -S openssh

ssh-keygen
git config --global user.name tony
git config --global user.email [email protected]
git config --global core.editor vim

git config core.fileMode false

设置系统语言为中文

1
2
3
sudo vim /etc/locale.gen
取消注释:zh_CN.UTF-8 UTF-8
系统设置中移动中文到默认?

刷新语言

sudo locale-gen

安装并设置中文输入

1
2
3
4
5
6
7
8
sudo pacman -S fcitx5 fcitx5-chinese-addons fcitx5-qt fcitx5-gtk fcitx5-configtool

sudo vim /etc/environment
GTK_IM_MODULE=fcitx5
QT_IM_MODULE=fcitx5
XMODIFIERS=@im=fcitx5
INPUT_METHOD=fcitx5
SDL_IM_MODULE=fcitx5

文泉驿字体

sudo pacman -S wqy-zenhei wqy-microhei wqy-bitmapfont

编程字体

sudo pacman -S ttf-jetbrains-mono

更新字体缓存

fc-cache -fv

vs code 字体设置

'JetBrains Mono','WenQuanYi Micro Hei Mono', 'Droid Sans Mono', monospace

修改 Home 子目录为英文目录名

1
2
echo "en_US" > ~/.config/user-dirs.locale
xdg-user-dirs-update

??

1
2
3
--enable-features=WaylandWindowDecorations
--ozone-platform-hint=auto
--enable-wayland-ime

版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自维奥洛的航行日记