|
项目地址:https://github.com/52fancy/NetInstallAlpine
本脚本是为了解决alpine安装困难,无法网络重装,无法使用VNC的问题。
系统要求
支持Grub引导的Linux系统
使用方法- bash <(wget --no-check-certificate -qO- 'https://cdn.jsdelivr.net/gh/52fancy/NetInstallAlpine/alpine.sh')
复制代码 特别注意
为了避免成功安装alpine无法ssh登录服务器,请执行以下操作
查看磁盘名称(例如:sda)
fdisk -l
挂载并允许root登录
mount /dev/sda3 /mnt
sed -i "s/PermitRootLogin.*/PermitRootLogin yes/g" /mnt/etc/ssh/sshd_config
umount /dev/sda3
重启链接即可
reboot |
|