Roadmap
桌面
桌面环境(Desktop Environment, DE)为用户提供一个开箱即用的环境,它提供窗口管理器,面板(任务栏),配套应用程序(如文件管理器,终端模拟器,文本编辑器等);流行的桌面环境有gnome, kde, xfce, mate, lxde, cinnamon, budgie, dde等。
Archlinux 使用遇到的问题
Parallels Tool 无法安装
Parallels tools with kernel v5.9+
Parallels tools currently requires to be patched to work with kernel v5.9 or newer. In case the installation step above failed, try and follow the instructions here:
https://forum.parallels.com/threads/path-for-kernel-5-9-1.351222
解决方案:
- 手动添加 Patch, 建议先整理并理解一遍流程,记录到markdown文件,而不是走一步看一步。同时注意patch适合的版本Path for kernel 5.9.1 | Parallels Forums
- 或者降级kernel版本 Downgrading packages#Downgrading the kernel
桌面环境配置
Archlinux 默认没安装大部分应用;在不知道自己需要什么的情况下,强行配置会很不友好。建议先从 Debain, Manjaro开始熟悉桌面环境。如果心水i3wm
的话,建议先安装其他桌面,通过其他桌面添加依赖环境,再来i3
配置
Linux 安装注意事项
- 务必给root用户添加密码,同时给user到wheel组,给whell添加root权限
- 获取IP用ssh登入
Archlinux安装
使用ifconfig
或ip addr
获取IP地址,设置root
密码,ssh远程登入
联网
|
|
分区
|
|
安装
|
|
配置
|
|
编辑/mnt/etc/locale.gen
文件, 将下面两行取消注释
en_US.UTF-8 UTF-8
zh_CN.UTF-8 UTF-8
|
|
创建/mnt/etc/locale.conf
文件, 写入如下内容
LANG=en_US.UTF-8
创建/mnt/etc/hostname
,即计算机名
archlinux
写入/mnt/etc/hosts
# Static table lookup for hostnames
# See hosts(5) for details.
127.0.0.1 localhost
::1 localhost
127.0.1.1 archlinux.localdomain archlinux
安装启动引导
|
|
系统配置
-
添加用户
1 2 3
# 添加用户 useradd -m -G wheel -s /bin/zsh cooper passwd cooper
-
给wheel群组添加sudo权限
1 2 3
## Uncomment to allow members of group wheel to execute any command - %wheel ALL=(ALL) ALL + wheel ALL=(ALL) ALL
-
SSH 登入
1 2 3 4
# 获取 SSH ip addr # get ip address pacman -S openssh systemctl start sshd