An open API service indexing awesome lists of open source software.

https://github.com/caledoniaproject/tftpboot-root

PXELinux 测试文件
https://github.com/caledoniaproject/tftpboot-root

Last synced: 5 months ago
JSON representation

PXELinux 测试文件

Awesome Lists containing this project

README

          

# tftpboot-root

支持 wakeonlan 远程激活,远程部署 Linux 系统

## TFTP 服务配置

Ubuntu 测试

```
cat > /etc/xinetd.d/tftp << EOF
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tmp/tftpboot
disable = no
}
EOF

mkdir -p /tmp/tftpboot

apt-get install xinetd tftpd tftp -y
service xinetd restart
```