嘟嘟社区

[经验] Windows/Linux 从 iso 启动 mfslinux 然后 DD 新系统


========================================================================
Windows 系统
========================================================================

1. 下载 EasyBCD 和 mfslinux

https://sm.myapp.com/original/System/EasyBCD_v2.3.exe
https://mfsbsd.vx.sk/files/iso/mfslinux/mfslinux-0.1.10-f9c75a4.iso

2. 安装 EasyBCD 添加 mfslinux 启动菜单并设置为默认选项

3. 重新启动

4. 通过 SSH 连接

username: root
password: mfsroot

========================================================================
Linux 系统
========================================================================
1. 控制面板安装 Debian 11

2. 下载、安装、启动 mfslinux

  1. apt update && apt install grub2 grub-imageboot &&
  2. mkdir -p /boot/images/ &&
  3. wget –no-check-certificate -O /boot/images/mfslinux.iso https://mfsbsd.vx.sk/files/iso/mfslinux/mfslinux-0.1.10-f9c75a4.iso &&
  4. sed -i ‘s/GRUB_DEFAULT=0/GRUB_DEFAULT=2/g’ /etc/default/grub &&
  5. update-grub2
  6. reboot

复制代码

3. SSH 连接

username: root
password: mfsroot

========================================================================
DD Windows
========================================================================
安装进度条 — 可选
opkg update
opkg install pv

DD 无进度

  1. wget -O- "https://dl.lamp.sh/vhd/zh-cn_win2022.xz" | xzcat | dd of=/dev/vda

复制代码

DD 带进度

  1. wget -O- "https://dl.lamp.sh/vhd/zh-cn_win2022.xz" | xzcat | pv | dd of=/dev/vda

复制代码

重启
reboot

RDP 连接
username: Administrator
password: Teddysun.com

========================================================================
DD Debian
========================================================================
安装进度条 — 可选
opkg update
opkg install pv

DD 无进度

  1. wget -O- "https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-nocloud-amd64.raw" | dd of=/dev/vda

复制代码

DD 带进度

  1. wget -O- "https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-nocloud-amd64.raw" | pv | dd of=/dev/vda

复制代码

修复分区表

  1. fdisk /dev/vda << EOF
  2. w
  3. q
  4. EOF

复制代码

设置root密码

  1. mkdir /mnt/vda1 && mount /dev/vda1 /mnt/vda1 && chroot /mnt/vda1
  2. ssh-keygen -A &&
  3. sed -i ‘s/.*PermitRootLogin.*/PermitRootLogin yes/’ /etc/ssh/sshd_config &&
  4. sed -i ‘s/.*PasswordAuthentication.*/PasswordAuthentication yes/’ /etc/ssh/sshd_config &&
  5. passwd root
  6. ********
  7. ********

复制代码

重启
reboot

SSH 连接
username: root
password: ********

很好,支持点赞
占个前排
感谢教程贴。