案例一:删除某一个文件
# rm <file>
案例二:删除某一个目录以及目录里的所有文件
# rm -r <directory>
案例三:非交互式删除某一个目录以及目录里的所有文件
# rm -rf <directory>
案例四:非交互式删除当前目录下的所有隐藏文件
# rm -rf .#*
案例五:非交互式删除所有特定后缀名称的文件
# rm -rf *txt
(补充:这里以非交互式删除所有以 txt 作为后缀名称的文件为例)
# rm <file>
# rm -r <directory>
# rm -rf <directory>
# rm -rf .#*
# rm -rf *txt
(补充:这里以非交互式删除所有以 txt 作为后缀名称的文件为例)
/boot >= 5G
/var/tmp >= 10G
/tmp >= 10G
swap >= 2G
/ all remaining space
/boot Use standard partition
/var/tmp Use logical partition
/tmp Use logical partition
swap Use logical partition
/ Use logical partition
/boot xfs
/var/tmp xfs
/tmp xfs
swap swap
/ xfs
/boot defaults
/var/tmp rw,nosuid,nodev,noexec,relatime,strictatime
/tmp rw,nosuid,nodev,noexec,relatime,strictatime
swap defaults
/ defaults
/boot/efi >= 5G
/var/tmp >= 10G
/tmp >= 10G
swap >= 2G
/ all remaining space
/boot/efi Use standard partition
/var/tmp Use logical partition
/tmp Use logical partition
swap Use logical partition
/ Use logical partition
/boot/efi vfat
/var/tmp xfs
/tmp xfs
swap swap
/ xfs
/boot/efi defaults
/var/tmp rw,nosuid,nodev,noexec,relatime,strictatime
/tmp rw,nosuid,nodev,noexec,relatime,strictatime
swap defaults
/ defaults
/boot >= 5G
/var/tmp >= 10G
/tmp >= 10G
swap >= 2G
/ all remaining space
/boot Use standard partition
/var/tmp Use logical partition
/tmp Use logical partition
swap Use logical partition
/ Use logical partition
/boot xfs
/var/tmp xfs
/tmp xfs
swap swap
/ xfs
/boot defaults
/var/tmp rw,nosuid,nodev,noexec,relatime,strictatime
/tmp rw,nosuid,nodev,noexec,relatime,strictatime
swap defaults
/ defaults
/boot/efi >= 5G
/var/tmp >= 10G
/tmp >= 10G
swap >= 2G
/ all remaining space
/boot/efi Use standard partition
/var/tmp Use logical partition
/tmp Use logical partition
swap Use logical partition
/ Use logical partition
/boot/efi vfat
/var/tmp xfs
/tmp xfs
swap swap
/ xfs
/boot/efi umask=0077,shortname=winnt 0 2
/var/tmp rw,nosuid,nodev,noexec,relatime,strictatime
/tmp rw,nosuid,nodev,noexec,relatime,strictatime
swap defaults
/ defaults
-a 或者 –all 显示所有设备
-b 或者 –bytes 以字节为单位而非易读的格式来显示 SIZE
-d 或者 –nodeps 不显示从属设备(slave)或占位设备(holder)
-D 或者 –discard 显示时丢弃能力
-z 或者 –zoned print zone model
-e 或者 –exclude <列表> 根据主设备号排除设备(默认:内存盘)
-f 或者 –fs 输出文件系统信息
-i 或者 –ascii 只使用 ascii 字符
-I 或者 –include <列表> 只显示有指定主设备号的设备
-J 或者 –json 使用 JSON 输出格式
-l 或者 –list 使用列表格式的输出
-T 或者 –tree use tree format output
-m 或者 –perms 输出权限信息
-n 或者 –noheadings 不显示标题
-o 或者 –output <列表> 输出列
-O 或者 –output-all 输出所有列
-p 或者 –paths 显示完整设备路径
-P 或者 –pairs 使用 key=“value” 输出格式
-r 或者 –raw 使用原生输出格式
-s 或者 –inverse 反向依赖
-S 或者 –scsi 输出有关 SCSI 设备的信息
-t 或者 –topology 输出拓扑信息
-x 或者 –sort <列> 按<列>对输出排序
–sysroot <dir> 使用指定目录当作根 “/” 目录
-h 或者 –help 显示帮助
-V 或者 –version 显示版本
# lsblk
# lsblk -f
或者:
# lsblk --fs
ext2
ext3
ext4
xfs
minix
cramfs
# mkfs.xfs /dev/vdb
或者:
# mkfs -t xfs /dev/vdb
(补充:这里以将 /dev/vdb 格式化为 xfs 格式为例)