摘要: 1. 创建自增主键 create table test_increment( id bigserial primary key, name varchar(255) ) insert into test_increment(name) values('wuchen'),('waahh'),('eef 阅读全文
posted @ 2021-10-02 20:13 舍得先森 阅读(563) 评论(0) 推荐(0)
摘要: Linux 1. nmon监控 nmon -f -t -s 10 -c 60 -m /home/wuchen -f 按标准格式输出文件 -t 输出中包括占用率较高的进程 -s 1 每1秒进行一次数据采集 -c 60 一共采集60次 2. 压缩/解压缩 2.1 tar 压缩 tar -zcvf cou 阅读全文
posted @ 2021-10-02 20:10 舍得先森 阅读(68) 评论(0) 推荐(0)