Posted On June 9, 2020

CentOS & Redhat Linux VS Exfat

kimconnect 0 comments
blog.KimConnect.com >> Linux >> CentOS & Redhat Linux VS Exfat

Have you ever encountered this error: “Unable to access $$$ GB Volume” Error mounting /dev/mmcblk0 at /run/media/username/####-@@@@: unknown filesystem type ‘exfat’?

Computer nerds have historically been skinny, so they have named things as fat this fat that to make them feel good and fatty. That’s false. Exfat is Windows’ next progressive disk format, a possible successor to fat16, fat32, and thin128. The last one isn’t true. Anyhow, Redhat doesn’t support this format. Dread not, here’s how to compile this thing from source:

# Run as root
sudo su
# Install Dev tools
yum group -y install 'Development Tools'
# More Dev tools
yum install -y fuse-devel gcc autoconf automake git
# pull exfat from github
cd /usr/local/src
git clone https://github.com/relan/exfat
# compile and install
cd exfat
autoreconf --install
./configure --prefix=/usr
make
make install
# Cleanup staging installation files
make clean
cd ~
rm -rf /usr/local/src/exfat

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Logical Volume Management: A Practical Illustration

# Runas root kim@kimlinux:~$ sudo su - # List all disks fdisk -l | grep…

How to Upgrade Linux Mint from 20.03 to 21 via Command Line

Step 1: sudo apt updatesudo apt install mintupgrade Step 2: sudo mintupgrade Troubleshooting: Error message:…

How To Use NXLog On A Windows Client

Step 1: Setup Server - Install a log aggregation server is out of scope of…