vim /etc/hostname # 空文件,输入主机名 本人用Arch vim /etc/hosts # 编辑为 127.0.0.1 localhost ::1 localhost 127.0.1.1 Arch.localdomain Arch
管理员和用户权限
passwd # 设置密码 root useradd -m -g users -G wheel,storage,power -s /bin/bash phantomor # phantomor是我的用户名 passwd phantomor # 设置phantomor用户的密码 123456 EDITOR=vim visudo# 编辑sudoer超级用户文件 # 编辑如下 找到Uncomment to allow members of group wheel to execute any command 把下面的注释去掉 # 在最后添加一句 Defaults rootpw
网络配置
ip link ip address add 192.168.1.100/24 dev ens33 ip route add default via 192.168.1.1 /etc/resolv.conf 添加dns服务地址比如 nameserver 114.114.114.114 nameserver 8.8.8.8