用find查找根目录下的文件时,比如sudo find . -name *test,就会出现1000/gfs无权限的情况
用一下方法可以正常使用
sudo find . -name test 2> /dev/null,把错误的信息输出到null即可