PXE+ Kickstart无人值守系统
前提首先关闭防护墙,SELinux策略
1234systemctl stop firewalldsystemctl disable firewalldvim /etc/selinux/config 改成disabledsetenforce 0
配置DHCP服务程序
安装dhcp,修改配置文件/etc/dhcp/dhcpd.conf
1234567891011allow bootp;ddns-update-style none;ignore client-updates;subnet 192.168.137.0 netmask 255.255.255.0 { range 192.168.137.100 192.168.137.200; option subnet-mask 255.255.255.0; option domain-name-servers 192.168.137.100; defa ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment