ArchLinux_Create/README.md
2025-12-09 22:19:01 +08:00

45 lines
752 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ArchLinux_Create
sshs
ArchLinux系统配置niri桌面环境搭配dank主题手动配置i
## 安装前操作
### 屏蔽源
禁用 reflector 服务,避免自动换源。
```c
systemctl stop reflector.service
```
### 连接WiFi
解锁被内核屏蔽的 WiFi 固件。
```c
rfkill unblock wifi
```
进入连接模式
```c
iwctl
```
查看网卡名称
```c
device list
```
扫描网络wlan0 需要替换为上方命令显示的网卡名称)
```c
station wlan0 scan
```
列出可用网络
```c
station wlan0 get-netwrks
```
连接WiFI
```c
station wlan0 connect <WiFi名称>
```
输入 WiFi 密码完成连接
退出 iwctl 连接模式
```c
exit
```
测试网络(测试百度)
```c
ping www.baidu.com
```
按 Ctrl + C 退出网络测试