Ubuntu中查找文件
Posted 寄生的鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu中查找文件相关的知识,希望对你有一定的参考价值。
首先打开Ubuntu的终端,利用find命令,然后后面跟一个name参数,冒号里式过滤条件,两个星号表示包含name的文件
find / -name "*name"
权限不够,在前面加sudo
只搜索名称为name的文件:
find / -name "name"
按照size大小查找文件:
find / -size 1G
以上是关于Ubuntu中查找文件的主要内容,如果未能解决你的问题,请参考以下文章