摘要:
来源:https://www.cnblogs.com/qtzd/p/14679120.html Docker安装 CentOS 7 使用Xshell连接远程进行服务器操作 环境查看 #系统内核是 3.10 以上的 [root@localhost ~]# uname -r 3.10.0-229.el7 阅读全文
摘要:
 阅读全文
摘要:
打开 C:\$WINDOWS.~BT\Sources\Panther,找到Appraiser_Data.ini 文件,双击打开,清空里面的内容,然后设置为只读属性。 来源:https://zhuanlan.zhihu.com/p/571730982?utm_id=0 阅读全文
摘要:
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c lscpu命令从sysfs和/proc/cpuinfo收集cpu体系结构信息,命令的输出比较易读,命令输出的信息包含cpu数量,线程,核数,套接字等。 uname命令的英文全称即“Unix n 阅读全文
摘要:
1.内存 free -h 2.磁盘 df -h 3.查看当前路径下的文件大小 du -sh * 4.查看端口 lsof -i:端口号 ss -nplt netstat -anp 5.TOP 大写P,按照CPU高低排序 大写M 按照内存高度排序 6.查看进程 ps ps -ef ps aux(a代表所 阅读全文
摘要:
1.暂时,重启之后重新会开启防火墙 iptables-F 2.关闭防火墙: systemctl stop firewalld.service 开启防火墙: systemctl start firewalld.service 关闭开机启动: systemctl disable firewalld.se 阅读全文
摘要:
sudo passwd XXX 阅读全文
摘要:
1.cat /etc/passwd  /etc/passwd 是一个文本文件,其中包含了登录 Linux 系统所必 阅读全文