linux Error downloading packages free 0 * needed 71 k 原因:硬盘空间不足 查看磁盘大小 # df -hl 从/主目录开始搜索,查看占用磁盘大的 # du -sh * 最后发现jenkins目录下占用过高 # cd /var/lib/jenkins ...
分类:
系统相关 时间:
2021-04-28 12:21:51
阅读次数:
0
几个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://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
# 常用语句 ## 条件语句 ### if.....else.... while True: x = int(input("请输入数字:50")) if x >50: print("你输入的数大于50") else: print("你输入的值小于50") ### if....elif....else ...
分类:
其他好文 时间:
2021-04-13 12:27:47
阅读次数:
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