红联Linux门户
Linux帮助

mkfs.xfs命令找不到的解决方法

发布时间:2016-09-25 09:16:26来源:linux网站作者:岁月童话
对硬盘进行格式化:
# mkfs.xfs /dev/sdb1  
 
系统显示:
mkfs.xfs error: 
command not found. 
 
可能是系统不完全安装。
 
运行 which mkfs,查看mkfs的命令目录
# which mkfs
/sbin/mkfs
 
查看目录 
[root@xuegod32 桌面]# ls -la /sbin/mkfs*
-rwxr-xr-x. 1 root root  10336 8月   6 2016 /sbin/mkfs
-rwxr-xr-x. 1 root root  26208 8月   6 2016 /sbin/mkfs.cramfs
-rwxr-xr-x. 5 root root  68960 8月  13 2016 /sbin/mkfs.ext2
-rwxr-xr-x. 5 root root  68960 8月  13 2016 /sbin/mkfs.ext3
-rwxr-xr-x. 5 root root  68960 8月  13 2016 /sbin/mkfs.ext4
-rwxr-xr-x. 5 root root  68960 8月  13 2016 /sbin/mkfs.ext4dev
lrwxrwxrwx. 1 root root      7 9月   2 18:06 /sbin/mkfs.msdos -> mkdosfs
lrwxrwxrwx. 1 root root      7 9月   2 18:06 /sbin/mkfs.vfat -> mkdosfs
 
发现没有 mkfs.xfs,需要安装 xfsprogs rpm包:
yum -y install xfsprogs
就ok了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/24458.html