https://github.com/caledoniaproject/tftpboot-root
PXELinux 测试文件
https://github.com/caledoniaproject/tftpboot-root
Last synced: 5 months ago
JSON representation
PXELinux 测试文件
- Host: GitHub
- URL: https://github.com/caledoniaproject/tftpboot-root
- Owner: CaledoniaProject
- Created: 2019-11-10T08:40:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-10T08:43:09.000Z (over 6 years ago)
- Last Synced: 2025-07-18T06:06:49.276Z (12 months ago)
- Size: 98.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```