上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 37 下一页
摘要: 1、查看 CPU 个数,机器中安装的CPU颗粒数 grep 'physical id' /proc/cpuinfo | sort -u | wc -l 2、查看 CPU 核心数,单颗CPU核心数 grep 'core id' /proc/cpuinfo | sort -u | wc -l 3、查看 阅读全文
posted @ 2022-01-05 12:02 谷粒-笔记 阅读(2071) 评论(0) 推荐(0)
摘要: 【Rust】类型,函数,控制 整类型 长度 有符号 无符号 8-bit i8 u8 16-bit i16 u16 32-bit i32 u32 64-bit i64 u64 128-bit i128 u128 arch isize usize let vi8 : i8 = 1; let vu8 : 阅读全文
posted @ 2022-01-02 11:11 谷粒-笔记 阅读(90) 评论(0) 推荐(0)
摘要: 【VIM】常用命令 set nu 显示行号gg 跳转到文件开头 / 向后搜索? 向前搜索n 查找下一处N 查找上一处| 光标所在行行首L 屏幕所显示的底行{ 段首} 段尾- 前一行行首+ 后一行行首( 句首) 下一句首$ 行末M 屏幕中间行0 行首(零)hjkl 左下上右x 删除光标所在字符R 替换 阅读全文
posted @ 2021-12-14 13:15 谷粒-笔记 阅读(59) 评论(0) 推荐(0)
摘要: 【CentOS7】目录统计du命令 du [-abcDhHklmsSx][-L <符号连接>][-X <文件>][--block-size][--exclude=<目录或文件>][--max-depth=<目录层数>][--help][--version][目录或文件] 参数说明: -a或-all 阅读全文
posted @ 2021-12-09 11:30 谷粒-笔记 阅读(534) 评论(0) 推荐(1)
摘要: 【Nginx】负载配置 upstream gateway { ip_hash; server 192.168.0.100:8765; server 192.168.0.200:8765; } location ~ ^/api { proxy_pass http://gateway; } ip_has 阅读全文
posted @ 2021-12-08 16:53 谷粒-笔记 阅读(67) 评论(0) 推荐(0)
摘要: 【CentOS7】SCP服务器间传文件 scp是secure copy的简写,是linux系统下基于ssh登陆进行安全的远程文件拷贝命令。linux的scp命令可以在linux服务器之间复制文件和目录。和它类似的命令有cp,不过cp只是在本机进行拷贝不能跨服务器 命令格式:scp [参数] [原路径 阅读全文
posted @ 2021-12-08 10:08 谷粒-笔记 阅读(1467) 评论(0) 推荐(0)
摘要: 【CentOS7】安装GraphicsMagick 工具,没有时安装 yum install -y autoconf bc vim wget screen telnet lrzsz zip unzip lsof locate nc tcpdump strace iftop iotop htop cr 阅读全文
posted @ 2021-12-06 11:46 谷粒-笔记 阅读(802) 评论(0) 推荐(0)
摘要: 【CentOS7】包管理器rpm 查看系统版本 cat /etc/redhat-release uname -r 包查询 whereis docker 查询安装的包 rpm -qa | grep java 阅读全文
posted @ 2021-12-03 21:03 谷粒-笔记 阅读(107) 评论(0) 推荐(0)
摘要: iptables 防火墙 资料:https://www.cnblogs.com/kevingrace/p/6265113.html 安装 iptables # 检查状态 systemctl status iptables # 停止firewall systemctl stop iptables # 阅读全文
posted @ 2021-12-03 20:42 谷粒-笔记 阅读(180) 评论(0) 推荐(0)
摘要: 在 Version Control 的 log 右键,选择要回退到的版本,选择 Reset Current Branch to Here 上边也可以通过命令行完成 git log 查看历史版本idgit reset --soft 想要回退到的版本id 推送 git push origin maste 阅读全文
posted @ 2021-12-01 14:38 谷粒-笔记 阅读(2737) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 37 下一页