-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
device list # 没有任何内容 #232
Comments
myArchInstallStart.zsh`#!/bin/zsh 停止reflector服务sudo systemctl stop reflector.service 检查reflector服务状态sudo systemctl status reflector.service 检查UEFI模式ls /sys/firmware/efi/efivars 网络配置ip addr 时间同步timedatectl set-ntp true 磁盘分区和格式化lsblk 假设您已经知道要操作的磁盘设备,例如 /dev/sdaparted /dev/sda (在 parted 中创建GPT分区表和分区)cfdisk /dev/sda 格式化分区mkfs.fat -F32 /dev/sda1 挂载分区mount -t btrfs -o compress=zstd /dev/sda3 /mnt mount -t btrfs -o subvol=/@,compress=zstd /dev/sda3 /mnt 安装Arch Linux基本系统pacstrap /mnt base base-devel linux linux-firmware btrfs-progs 配置fstab文件genfstab -U /mnt > /mnt/etc/fstab 进入chroot环境arch-chroot /mnt myArchInstalling.zsh`#!/bin/zsh #!/bin/zsh 设置系统配置echo "myArch" > /etc/hostname 设置时区和localeln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 设置root密码passwd root 安装微码pacman -S intel-ucode # 对于Intel CPU pacman -S amd-ucode # 对于AMD CPU安装GRUB引导程序pacman -S grub efibootmgr os-prober 修复EFI启动项#mv /boot/EFI/grub /boot/EFI/BOOT 退出chroot环境并卸载所有挂载exit 重启系统reboot ` myArchInstallEnd.zsh` systemctl enable --now NetworkManager # 设置开机自启并立即启动 NetworkManager 服务 |
iwctl只能探测无线硬件,正常的 |
The text was updated successfully, but these errors were encountered: