有的没的~
Sunday, January 13, 2019
Linux 开机启动服务
开机启动服务:
chkconfig --add test
chkconfig test on
查看开启的服务列表:
chkconfig --list
参考:
https://www.thegeekstuff.com/2011/06/chkconfig-examples/
Newer Posts
Older Posts
Home
ACL的permit和deny两种含义
permit 允许 deny 拒绝 permit 匹配 deny 不匹配
华为三层交换机作为DHCP服务器发现大量IP地址冲突问题
网络概况: 华为三层交换机作为无线系统核心交换机使用,无线系统部署的方式是AC旁挂+AP本地转发 现象: 1. 手机在跟着人走动的情况下,一般会触发漫游,IP地址不会变化。实际情况是手机IP地址频繁发生变化,都是在发生漫游之后 2. 使用命令 display ip pool 发现...
WPF 问题记录之 Window (宽/高)大小自动适配内容尺寸
使用属性 Window.SizeToContent 参考: https://stackoverflow.com/questions/3177138/how-can-i-get-a-wpf-window-to-expand-to-fit-the-contents-of-a-d...
Linux bash script to extract IPv4 address
hostname -I | tr ' ' '\n' | grep '[0-9]' | grep -v '127\.0\.0\.' or ifconfig | grep "inet addr...