1、挂载NTFS文件系统:
mount -t ntfs-3g /dev/sdb1 /mnt/winc -o force
2、挂载VirtualBox共享目录:
mount -t vboxsf 共享名称 /mnt/vbshare/
3、改变目录及文件所属
chown -R usergroup:user path_to_folder
4、查找
find path -name filename find path -type f -exec grep -l - l stringtofind {} \;
5、枚举文件夹下文件大小
du -h
6、查看文件夹大小
du -sh
7、查看硬盘使用情况
df -lh
8、查看内存使用情况
vmstat free -m