Arch Linux配置
检查网络 # 启动dhcp systemctl start dhcpcd # 设置开机启动 systemctl enable dhcpcd ping baidu.com # 检查设置系统时间 timedatectl timedatectl set-time "yyyy-MM-dd hh:mm:ss" # 升级系统中所有已安装的软件包 pacman -Syu 用户和用户组 # 创建用户 useradd -m chance # 设置密码 passwd chance # 安装sudo pacman -S sudo EDITOR=vim visudo # 找到下面一行取消注释 #%wheel ALL=(ALL:ALL) ALL # 将用户加入wheel组 gpasswd -a [用户名] [组名] SSH pacman -S openssh systemctl start sshd systemctl enable sshd # 查看ip pacman -S net-tools ifconfig 配置共享文件夹 pacman -S open-vm-tools # 虚拟机设置里设置共享文件夹 名称为 share # 查看设置的共享文件夹名字 为 share vmware-hgfsclient # 创建要挂载的共享文件夹 mkdir /mnt/hgfs # 挂载 vmhgfs-fuse ....