我查看了以下问题但没有成功:
我尝试过使用 tftp-hpa、atftpd 和 tftp。我又回到了 tftp,因为使用其他的没有什么区别。
到目前为止我有:
安装了tftp
sudo apt-get install xinetd tftpd tftp
Run Code Online (Sandbox Code Playgroud)
设置/etc/xinetd.d/tftp
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}
Run Code Online (Sandbox Code Playgroud)
创建 /tftpboot 文件夹并为其运行以下命令:
sudo chmod -R 777 /tftpboot
sudo chown -R nobody /tftpboot …Run Code Online (Sandbox Code Playgroud) 我在 gpt 磁盘的不同分区上同时安装了 Windows 10 和 Ubuntu 桌面。Windows 正在尝试重新启动以完成其更新,但它导致我看到 grub 终端提示。我知道我可以通过linux vmlinuz-..., initrd init..., boot命令手动启动 ubuntu ,但我不知道如何为 Windows 做类似的事情。