此次站长带来的是 VirMach 在客户区后台挂载Debian 10 ISO镜像,并在SolusVM控制面板里面VNC安装系统的图文步骤,多图预警(部分截图是操作的时候忘记了,后期补的)。按惯例啰嗦几句,目前他家免费迁移成功之后是没有系统的,站长每次都是用这个方法来安装系统,仅仅是因为站长觉得他家的SolusVM控制面板的Reinstall不好用,有时候Reinstall安装系统之后不识别CPU型号,所以…
官方网站:https://virmach.com/
以下正文:(需要有一定Linux基础)
1、准备工作:
1.1、在 VirMach 客户区后台 Server Details 下方点击 ISO 后面的 Change 按钮去挂载ISO;在此之前,点击Additional Tools下方的 VPS Control Panel 进入SolusVM控制面板。
1.2、如下图所示,选中 ISO 之后,点击 Mount 按钮即可。
1.3、来到SolusVM控制面板,点击下方的CDRom检查一下ISO是否正确挂载。
1.4、点击Settings又下方的Boot Order,将启动顺序设置为CDRom优先,如下图所示。之后点击Reboot按钮重启VPS,成功重启之后,点击VNC按钮进入VNC操作台。
2、安装步骤:
2.1、如下图所示,已经成功从CDRom启动了ISO,按键盘下键选中Install并回车开始安装步骤。
2.2、Select a language,默认English即可。
2.3、Select yout location,默认United States即可。
2.4、 Configure the keyboard,默认American English即可。
2.5、Loading additional componenets。
2.6、Attempting IPv6 autoconfiguration。
2.7、Configuring the network with DHCP。
2.8、Configure the network,Hostname,按需修改,一般默认即可。
2.9、Configure the network,Domain name,按需修改,一般默认即可。
2.10、Set up users and passwords,Root password,按需设置,不要太简单即可。
2.11、Set up users and passwords,Re-enter password to verify,重复一遍密码。
2.12、Set up users and passwords,Full name for the new user,设置用户名,按需设置。
2.13、Set up users and passwords,Username for your account,重复一遍用户名。
2.14、Set up users and passwords,Choose a password for the new user,给用户设置密码。
2.15、Set up users and passwords,Re-enter password to verify,重复一遍密码。
2.16、Setting up the clock。
2.17、Configure the clock,默认第一个即可。
2.18、Partition disks,默认Guided – use entire disk即可。
2.19、Partition disks,硬盘只有一个,默认即可。
2.20、Partition disks,默认All files in one partition (recommended for new users)即可。
2.21、Partition disks,选Finish partitioning and write changes to disk。
2.22、Partition disks,确认。
2.23、Installing the base system。
2.24、Configure the package manager,Scan another CD or DVD? 选择NO。
2.25、Configure the package manager,Debian archive mirror country,默认United States。
2.26、Configure the package manager,Debian archive mirror,默认deb.debian.org。
2.27、Configure the package manager,HTTP proxy information,空着不填。
2.28、Configuring apt。
2.29、Select and install software。
2.30、Configuring popularity-contest,选NO。
2.31、Software selection,安装SSH server和standard system utilities。
2.32、Select and install software。
2.33、Install the GRUB boot loader on a hard disk,选择yes。
2.34、Install the GRUB boot loader on a hard disk,Device for boot loader installation选择 /dev/vda。
2.35、Install the GRUB boot loader。
2.36、接下来就是安装进度条,完了之后是installation complete,按Continue之后VPS会重启。
2.37、重启之后,由于挂载了ISO,且设置了CDRom启动优先,所以重启之后,VNC里面看到的还是进入到了安装步骤。回到SolusVM控制面板,在Settings右下方Boot Order中将启动顺序改回Hard Disk优先。然后点击Reboot按钮重启。
2.38、这时候再回到VNC页面,即可看到正常的启动过程了。
2.39、如下图所示,进入到登录页面。
2.40、输入之前设置的用户名,回车之后输入密码登录。
2.41、用 su – 命令切换到root,需要输入密码。如下图所示。
2.42、剩下的就是编辑SSH配置文件,然后允许或者不允许root远程登录的事情了,这里就不写了。一般在这个时候,站长会重新运行一次网络重装脚本,安装纯净的系统(并没有说后台挂载的ISO不纯净,这是习惯问题)。
2.43、最后补充一点,将Debian 10 网卡名称 ens3 修改为 eth0 简要步骤:
2.43.1、编辑GRUB文件:
nano /etc/default/grub ##找到 GRUB_CMDLINE_LINUX="" 并修改。 GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
2.43.2、编辑网络配置:
sed -i 's/ens3/eth0/g' /etc/network/interfaces update-grub reboot
2.43.3、如果分配了IPv6,但自己不会配置,那么在修改网卡名称之后,在SolusVM控制面板点一下Reconfigure Networking即可。
本文完结。