發表文章

目前顯示的是有「exfat」標籤的文章

Format Disk on MS Windows 10

圖片
1. We can use search -> cmd.exe -> run as administrator -> format /? to check manual of format as follow format.exe supported filesystems are FAT, FAT32, exFAT(FAT64), NTFS, UDF, ReFS If your portable Disk is mounted at F:, your can use instruction as follow C:\WINDOWS\system32\format F: /FS:ReFS  /V:Portable /I:enable /X /P:1 2. format with GUI right click and choose format(A)... you can disable quick format to wipe wholly but take much time 3. format with control.exe -> system and security -> system administration tool -> disk manager-> right click on F: disk -> choose format  

CentOS 8 install ntfs-3g and exfat

圖片
NTFS-3G Download from https://www.tuxera.com/community/open-source-ntfs-3g/ wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz tar zxvf ntfs-3g_ntfsprogs-2017.3.23 cd ntfs-3g cd  ntfs-3g_ntfsprogs-2017.3.23 make make install Exfat su - yum grou install 'Development Tools' yum install fuse-devel git clone https://github.com/relan/exfat.git cd exfat autoreconf --install ./configure make dnf dnf install epel-release dnf install ntfs-3g CentOS8 也開始使用 dnf 了 https://zh.wikipedia.org/wiki/DNF_(%E8%BD%AF%E4%BB%B6) reference https://access.redhat.com/solutions/70050 https://github.com/relan/exfat https://opensource.com/article/18/8/guide-yum-dnf 使用 dnf 更新系統 $ sudo dnf install dnf-plugin-system-upgrade  $ sudo dnf system-upgrade download --releasever=24 --best --nogpgcheck --allowerasing  $ sudo dnf system-upgrade reboot

Add exfat format support on CentOS 7

1. wget http://download1.rpmfusion.org/free/el/updates/7/x86_64/r/rpmfusion-free-release-7-1.noarch.rpm 2. yum -y install fuse-exfat exfat-utils or 1. wget http://download1.rpmfusion.org/free/el/updates/7/x86_64/f/fuse-exfat-1.2.7-1.el7.x86_64.rpm 2. wget http://download1.rpmfusion.org/free/el/updates/7/x86_64/e/exfat-utils-1.2.7-1.el7.x86_64.rpm 3. yum install fuse-exfat-1.2.7-1.el7.x86_64.rpm exfat-utils-1.2.7-1.el7.x86_64.rpm