由于ikoula的控制面板(独立服务器)自带的重装系统很容易就卡住,最后只能求助人工,所以我并不推荐使用它自带的重装功能。
所以接下来介绍一下利用Netboot模式来安装任意系统吧,毕竟启动Netboot模式不这么容易卡死…对吧。

首先启动Netboot模式,等待至可ping通,然后ssh连接上去就可以安装系统了。
安装Linux例子:
Netboot模式下输入:
1 |
wget -O- 'http://dd.treesky.link/collect/centos-7-image.gz' | gunzip | dd of=/dev/sda |
DD完成后挂载分区:
1 |
mount /dev/mapper/vg0-root /mnt |
(如果挂载失败直接再netboot一次即可挂载)
修改网卡配置:
1 |
vi /mnt/etc/sysconfig/network-scripts/ifcfg-eth0 |

保存后重启,等待ping通即可连接。默认密码:[email protected]
以上这个是系统Centos7,
如果要Debian9的话,只需在刚才Centos7的系统上运行:
1 |
bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 9 -v 64 -a -p 密码 --ip-addr 你的ip --ip-gate 你的网关 --ip-mask 255.255.255.0 |
然后等待安装完成即可。
安装Windows例子:

首先启动Netboot模式,等待至可ping通,然后ssh连接上去输入:
1 |
wget -O- 'http://dd.treesky.link/other/ikoula/Tnt360Boom.gz' | gunzip | dd of=/dev/sda |
DD完成后reboot重启。
然后控制面板继续再启动一次Netboot模式,然后ssh连接上去输入:
1 2 |
ntfsfix /dev/sda1 ntfs-3g /dev/sda1 /mnt/windows |
用winscp(sftp软件都可以)下载/mnt/windows/1.bat到本地,用记事本编辑替换你的ip和网关后上传覆盖。
然后重启,等待一会即可远程桌面连接。
用户名:Administrator
默认密码:Tnt360Boom
原创文章,作者:discovery,如若转载,请注明出处:https://www.pingzz.com/jiaocheng/xitong/294.html