Home > Article > Operation and Maintenance > Does centos6.5 support vfat file system?
centos6.5 supports the vfat file system; vfat means "extended file allocation table system" and can be used under windows or linux systems at the same time, and vfat supports long file names; centos usually uses "fat /vfat/fat32" file system is uniformly represented by vfat.
The operating environment of this article: centos 6.5 system, Dell G3 computer.
centos6.5 supports the vfat file system.
If we want a storage device (such as a USB flash drive) to be used under Windows or Linux systems without re-creating the file system, then it is necessary to create a vfat type file system on the USB flash drive. can meet the needs.
VFAT means "Extended File Allocation Table System". It extends the FAT16 file system and provides support for long file names. The file name can be up to 255 characters. VFAT still retains the extension, and Supports file date and time attributes, retaining three dates/times for each file: file creation date/time, file last modified date/time, and file last opened date/time.
fat and vfat:
fat and vfat are basically the same. The difference is that vfat supports long file names, but fat does not. In addition, Linux uses vfat to represent all fat/vfat/fat32 file systems.
Install the fat file system management tool
The vfat file system is natively supported by CentOS. However, the fat file system management tools mkfs.vfat and mkfs.fat may not be installed at the beginning. For example, my minimal installation of CentOS 7 does not have them.
[root@localhost ~]# mkfs #双击tab查看是否安装,或者用rpm、yum等管理工具查看 mkfs mkfs.btrfs mkfs.cramfs mkfs.ext2 mkfs.ext3 mkfs.ext4 mkfs.minix mkfs.xfs
Therefore, two questions must be solved first,
1. Which package to install can provide the required management tools?
It can be seen from yum that the current version of the mkfs.vfat tool is the dosfstools-3.0.20-10.el7.x86_64 package.
2, install dosfstools-3.0.20-10.el7.x86_64 package
yum install dosfstools -y
Recommended tutorial: "centos tutorial"
The above is the detailed content of Does centos6.5 support vfat file system?. For more information, please follow other related articles on the PHP Chinese website!