Does centos6.5 support vfat file system?

WBOY
Release: 2022-04-02 10:32:38
Original
2235 people have browsed it

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.

Does centos6.5 support vfat file system?

The operating environment of this article: centos 6.5 system, Dell G3 computer.

Does centos6.5 support the vfat file system?

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
Copy after login

Therefore, two questions must be solved first,

1. Which package to install can provide the required management tools?

Does centos6.5 support vfat file system?

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
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!