几个cpu more /proc/cpuinfo |grep "physical id"|uniq|wc -l 每个cpu是几核(假设cpu配置相同) more /proc/cpuinfo |grep "physical id"|grep "0"|wc -l 查看内存 free -g otps 地址 ...
分类:
其他好文 时间:
2021-04-28 11:49:32
阅读次数:
0
2020年kali最新国内更新源sources.list 打开sources.list文件 #/etc/apt/sources.list 更新一下内容 #中科大 deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contri ...
分类:
其他好文 时间:
2021-04-24 13:53:22
阅读次数:
0
我的idea使用maven引入依赖没有成功,只能下载jar包 下载jar包地址: http://repo.e-iceblue.com/nexus/content/groups/public/e-iceblue/spire.xls.free/ pom.xml中配置jar所在路径 <dependency ...
分类:
其他好文 时间:
2021-04-23 12:25:08
阅读次数:
0
/* * Copyright (c) 2015 Paul B Mahol * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under th ...
分类:
其他好文 时间:
2021-04-16 12:07:43
阅读次数:
0
可参考原作者:https://blog.csdn.net/a5671667/article/details/101078681?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522161841235716780269888983%2522% ...
分类:
其他好文 时间:
2021-04-15 12:39:26
阅读次数:
0
详见:https://www.cnblogs.com/liyuanhong/articles/14653178.html 1、监控cpu w top htop uptime glances ps 2、监控内存 free glances top htop 3、监控磁盘 df glances iotop ...
分类:
其他好文 时间:
2021-04-14 11:52:58
阅读次数:
0
1、存储区域 1)Heap堆 由malloc分配的内存块,由程序员控制内存块的申请和释放(malloc/free)。如果申请的堆内存没有被释放掉,在程序结束时操作系统会自动回收。涉及问题:缓冲区溢出、内存泄漏。 2)Free store 自由存储区 由new分配的内存块。由程序员控制内存块的申请和释 ...
分类:
编程语言 时间:
2021-04-14 11:48:30
阅读次数:
0
Forum Rules Registration to this forum is free! We do insist that you abide by the rules and policies detailed below. If you agree to the terms, pleas ...
分类:
其他好文 时间:
2021-04-12 12:05:47
阅读次数:
0
场景: 某个读取应用信息列表的接口突然出现大量异常和超时,该接口主要读取出Redis缓存中的全部应用列表,再进行业务过滤返回结果数据,然后看异常信息如下所示。 部分关键异常日志如下: IOCP: (Busy=0,Free=1000,Min=100,Max=1000), WORKER: (Busy=8 ...
分类:
其他好文 时间:
2021-04-10 13:33:35
阅读次数:
0
视图和视图解析器 请求处理方法执行完成后,最终返回一个 ModelAndView 对象。对于那些返回 String,View 或 ModeMap 等类型的处理方法,Spring MVC 也会在内部将它们装配成一个 ModelAndView 对象,它包含了逻辑名和模型对象的视图 Spring MVC ...
分类:
编程语言 时间:
2021-04-08 13:53:43
阅读次数:
0