agnet配置文件: 名称:{#DISK_NAME}IOPS键值:disk.status[{#DISK_NAME},tps]信息类型:数字 名称:{#DISK_NAME}每秒完成读次数键值:disk.status[{#DISK_NAME},rps]信息类型:浮点数 名称:{#DISK_NAME}每秒 ...
分类:
其他好文 时间:
2019-10-13 00:43:01
阅读次数:
113
常用DOS命令 MS DOS(Microsoft Disk Operating System) DOS是一个早期的操作系统,现在已经被Windows系统取代。 进入DOS操作窗口 Windows+R,打开运行窗口,输入cmd回车,进入到DOS的操作窗口。 命令行(Command Line Inter ...
分类:
其他好文 时间:
2019-10-12 23:04:17
阅读次数:
132
链接: https://vjudge.net/problem/POJ 3616 题意: Bessie is such a hard working cow. In fact, she is so focused on maximizing her productivity that she deci ...
分类:
其他好文 时间:
2019-10-12 22:37:25
阅读次数:
86
一,找到之前的版本历史纪录,确定要回滚到那个版本号:git log 二,回滚到这个版本:git reset --hard 72229f823c8b21cbe52142a944d74f1883fa41aa 这样就回滚到这个版本了。 ...
分类:
其他好文 时间:
2019-10-12 10:58:29
阅读次数:
92
题目链接:传送门 思路: 对于对rating有提升的项目,肯定做越多越好,所以把$b_{i} >= 0$的项目按rating要求从小到大贪心地都做掉,得到最高的rating记为r。 对于剩余的$b_{i} < 0$的项目,因为r的范围很小,在6e4的亚子,可以考虑用01背包来做。 但是直接上01背包 ...
分类:
其他好文 时间:
2019-10-12 01:39:30
阅读次数:
91
1、磁盘相关名词翻译: disk 磁盘 head 磁头 sector 扇区 track 磁道 cylinder 柱面 units 单元块 block 数据块 inode 索引节点 2、磁盘内部相关名词知识: 一般来说,一块磁盘有1个到数个盘片不等,其中每个盘片的有效面对应一个读写磁头,从上往下从0开 ...
分类:
系统相关 时间:
2019-10-10 19:54:52
阅读次数:
109
参考: https://docs.ucloud.cn/compute/uhost/introduction/disk 云硬盘 作为云计算场景基础块存储产品为云主机提供持久化存储空间的块设备硬盘。其具有独立的生命周期,基于网络分布式访问,为云主机提供的数据大容量、高可靠、可扩展、高易用、低成本的硬盘。 ...
分类:
其他好文 时间:
2019-10-10 15:50:56
阅读次数:
125
cat /proc/cpuinfo |grep "model name" && cat /proc/cpuinfo |grep "physical id" #linux CPU大小cat /proc/meminfo |grep MemTotal #内存大小fdisk -l |grep Disk #硬 ...
分类:
系统相关 时间:
2019-10-10 12:38:54
阅读次数:
89
CentOS查看CPU、内存、网络流量和磁盘 I/O 安装 yum install y sysstat sar d 1 1 rrqm/s: 每秒进行 merge 的读操作数目。即 delta(rmerge)/s wrqm/s: 每秒进行 merge 的写操作数目。即 delta(wmerge)/s ...
分类:
其他好文 时间:
2019-10-10 10:59:44
阅读次数:
86
cat /etc/security/limits.conf sudo vim /etc/security/limits.conf * hard nofile 999999 * soft nofile 999999 * soft nproc 10240 * hard nproc 10240 * har... ...
分类:
其他好文 时间:
2019-10-09 19:13:16
阅读次数:
231