FreeBSD基础学习



基础网络手动配置:


IP

vim /etc/rc.conf


defaultrouter="192.168.0.1"

hostname="Aladin11.example.com"

ifconfig_em0="inet 192.168.0.80 netmask 255.255.255.0"



重启网卡设置:

ifconfig em0(网络接口名) down/up

重启网卡服务:

service netif stop/restart/start



DNS解析:

vim /etc/resolv.conf(此文件可手动添加)

nameserver 202.96.22.33



进程管理:

ps 查看程序运行PID

杀掉PID /bin/kill -s HUP 198




你可能感兴趣的:(FreeBSD,基础学习)