摘要: 第一步查看那些程序在使用该端口 netstat -anp或者netstat -tulnp 第二步杀死进程 kill -9 xxx,杀死某个进程 killall 进程名 阅读全文
posted @ 2017-09-15 13:57 菲菲菲菲菲常新的新手 阅读(429) 评论(0) 推荐(0) 编辑
摘要: shell中赋值变量时不能有空格 之前写python写习惯了 test = ‘free -m’ 在shell中不能有空格 test='free -m' 而且使用管道符之前要留空格 test='free -m|head -2'是错误的 test='free -m | head -2' 阅读全文
posted @ 2017-09-15 10:35 菲菲菲菲菲常新的新手 阅读(222) 评论(0) 推荐(0) 编辑