一键DD脚本总结
一、基于linux系统的DD脚本
萌咖大佬脚本
#github源,一键重装debian11并自定义root密码和端口
bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 11 -v 64 -p "your_password" -port "ssh_port"
#国内源
bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 11 -v 64 -p "your_password" -port "ssh_port" --mirror 'http://mirrors.ustc.edu.cn/debian/'
二、基于windows系统DD
PowerShell
mkdir C:/win32-loader/
Invoke-WebRequest -Uri ‘https://moeclub.org/attachment/WindowsSoftware/win32loader.bat’ -OutFile ‘C:/win32-loader/win32loader.bat’
Invoke-WebRequest -Uri ‘http://depot.treesky.link/windddebian/initrd.img’ -OutFile ‘C:/win32-loader/initrd.img’
Invoke-WebRequest -Uri ‘http://depot.treesky.link/windddebian/vmlinuz’ -OutFile ‘C:/win32-loader/vmlinuz’
Start-Process -FilePath ‘C:/win32-loader/win32loader.bat’
共有 0 条评论