Linux 磁盘分区查看dm设备磁盘IO
http://lovesoo.org/linux-sar-command-detailed.html sar 命令详解 https://blog.csdn.net/qq_39591494/article/details/78418162 详解mpstat、iostat、sar、vmstat命令的使用 http://rebootcat.com/2017/12/14/in...
http://lovesoo.org/linux-sar-command-detailed.html sar 命令详解 https://blog.csdn.net/qq_39591494/article/details/78418162 详解mpstat、iostat、sar、vmstat命令的使用 http://rebootcat.com/2017/12/14/in...
本文档介绍 mac常用操作 的相关内容。 sudo 使用touch id sudo sed -i ".bak" '2s/^/auth sufficient pam_tid.so\'$'\n/g' /etc/pam.d/sudo 设置mac使用独立显卡 1)强制使用集成显卡 sudo pmset -a GPUSwitch 0 ...
本文档介绍 ROS防火墙配置 的相关内容。 关闭不安全的服务 # 查看所有的服务 /ip service print # 关闭不安全的服务 /ip service disable telnet,ftp,www,api,api-ssl # 更改ssh默认端口 /ip service set ssh port=2200 # 每个服务都可以设置只允许指定的ip访问 /ip ser...
本文档介绍 ldap创建用户 的相关内容。 cat <<EOF | ldapadd -H ldap://10.10.11.223 -x -D cn=admin,dc=ioiofast,dc=com -W dn: uid=zhangy,ou=People,dc=ioiofast,dc=com objectClass: account objectClass: posixAccou...
本文档介绍 mac支持mtr 的相关内容。 brew install mtr vim ~/.bash_profile + export PATH=$PATH:/usr/local/Cellar/mtr/0.92/sbin source ~/.bash_profile mtr网络分析工具安装 1. 首先保证安装brew工具 2. 执行 brew cask mtr进行软件安装 3....
本文档介绍 常用shell命令 的相关内容。 实时查看指定cpu当前使用的频率 while :;do awk -F':' '/processor|cpu MHz/{print $2}' /proc/cpuinfo|xargs -n2|egrep '^(0|4|8|12|16|20|24|28|32|36|40|44|48) ';sleep 1;echo --------`date "+%...
https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/7/html/performance_tuning_guide/sect-red_hat_enterprise_linux-performance_tuning_guide-cpu-configuration_suggestions redhat 内...
docker ps 默认的显示内容过多,当值过长时就会导致折行,可读性很差,所以希望只显示自己关心的某些列。 可以自己指定显示的模板,例如 docker ps --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}" table - 表示显示表头列名 {{.ID}} - 容器ID {{.Command}} - 启动执行的命令 ...
neutron 服务服务正常启动,使用neutron agent-list 没有相关的服务 查看日志中有Rabbitmq的相关错误 的解决方法 MQ集群中同步通配符的问题 rabbitmqctl set_policy ha "^.*" '{"ha-mode":"all"}' 修改MQ的存储模式 sudo rabbitmqctl stop_app sudo rabbitmqctl ...