Linux
-
linux手动执行cron.hourly等计划任务
在centos5下,run-parts命令位于/usr/bin/run-parts,内容是很简单的一个shell脚本,就是遍历目标文件夹,执行第一层目录下的可执行权限的文件。例如:…
-
Linux系统压力测试软件stress使用
linux下测试cpu、内存、io负载的时候可以用stress,比如想cpu一直100%的运行等。 安装 以centos 6为例 yum install stress 如果没有包运…
-
Ubuntu apt安装软件报错 files list file for package is missing
Ubuntu系统用apt安装软件时报这个错误: Selecting previously unselected package python3-pycurl. dpkg: unre…
-
Linux系统使用netstat和awk统计各个状态的连接数
命令: netstat -n | awk ‘/^tcp/ {++state[$NF]} END {for(key in state) print key,”…
-
screen -r 提示There is no screen to be resumed matching错误解决
使用screen创建会话,可以保证网络中断时候会话不会断开,对于需要长时间运行的命令比较有用。例如 screen -S nbhao 但是当我们恢复的时候可能会碰到这个问题。 scr…
-
查看和关闭centos的selinux
查看selinux sestatus -v 如果SELinux status参数为enabled即为开启状态 关闭selinux 修改/etc/selinux/config 文件,…
-
rsync同步指定ssh端口号的方法
默认rsync命令同步使用22端口,如果修改过ssh端口号,非默认的22端口,那么使用rsync时需要手动指定端口。 命令类似如下: rsync -azv –delet…
-
CentOS 7中的/etc/rc.local脚本命令不生效的解决
Due to systemd introduced in CentOS 7, the /etc/rc.local not enabled by default, you shoul…
-
NTP指定123监听的地址,去除0.0.0.0:123配置
ntp服务监听在udp的123端口,默认他会监听所有IP,包括0.0.0.0:123。如果想去掉的话可以修改如下: interface ignore wildcard interf…
-
Ubuntu 16.04修改IP重启后没变化不生效的解决
Ubuntu的网卡信息可以在/etc/network/interfaces配置,一般只修改单个网卡的话使用ifup,ifdown即可。按照这个方法在之前的版本都没有问题,但是Ubu…