import os def local_rm(dirpath): if os.path.exists(dirpath): files = os.listdir(dirpath) for file in files: filepath = os.path.join(dirpath, file).rep ...
分类:
编程语言 时间:
2020-02-26 17:02:13
阅读次数:
82
rm -rf /var/lib/docker 设备或资源忙
分类:
其他好文 时间:
2020-02-26 16:48:16
阅读次数:
319
1.删除某个目录下的几天前的文件 find /u01/app/oracle/diag/rdbms/marc/marc1/trace -mtime +7 -exec rm {} \; find /u01/app/oracle/diag/rdbms/orcl/orcl/trace -mtime +1|x ...
分类:
系统相关 时间:
2020-02-26 10:25:51
阅读次数:
88
最近阿里云频频告警。磁盘使用率飙升90%以上。遂查看磁盘使用情况 df -h 发现使用率却是很高 之后,通过du -h --max-depth=1 / 查看哪个目录下占用的资源较多并进行删除 后来发现: 未释放磁盘空间原因: 在Linux或者Unix系统中,通过rm或者文件管理器删除文件将会从文件系 ...
分类:
系统相关 时间:
2020-02-25 23:12:39
阅读次数:
102
错误内容: vue cli service serve /bin/sh: vue cli service: command not found error Command failed with exit code 127. 解决办法: sudo rm rf node_modules package ...
分类:
其他好文 时间:
2020-02-25 20:36:45
阅读次数:
87
彻底删除文件 rm -rf + [文件目录 可相对可绝对] 是彻底删除而且linux无回收站 创建文件 touch + [文件名] 创建文件夹 mkdir + [文件夹名] 记录在linux下写一个python文件的过程: 1.vim + [filename].py 没有文件会自行创建,有就用已有的 ...
分类:
系统相关 时间:
2020-02-24 20:26:45
阅读次数:
102
主要学习目录文件的命名,软硬链接的不同,初步使用vim编辑文本,简单的创建文本、删除文本等命令。
分类:
系统相关 时间:
2020-02-24 00:42:41
阅读次数:
94
centos6.8docker安装: 1.yum install -y epel-release 2.yum install -y docker-io (如果yum被锁定则强制采用rm -f /var/run/yum.pid关闭yum进程即可) 如果报错No package docker-io av ...
分类:
系统相关 时间:
2020-02-22 20:11:12
阅读次数:
76
架构图(HA模型没有SNN节点) 用vm规划了8台机器,用到了7台,SNN节点没用 NN DN SN ZKFC ZK JNN RM NM node1 * * node2 * * node3 node4 * * node5 * * node6 * * * * node7 * * * * node8 * ...
分类:
其他好文 时间:
2020-02-22 15:50:37
阅读次数:
107
-help:查看帮助 hadoop fs -help rm -rm [-f] [-r|-R] [-skipTrash] <src> ... : Delete all files that match the specified file pattern. Equivalent to the Unix ...
分类:
其他好文 时间:
2020-02-21 14:29:07
阅读次数:
80