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

Linux: Use Lubuntu 20.04, TightVNC Server, NoVNC, WebSockify to Create a Terminal Server Accessible via Any Browser!

Use Case:Imagine a virtual classroom with students using Chromebooks, iPads, and other types of computers,…

FFMPEG Ftuff (old)

Install prerequisites: --- Install DAG --- yum install rpmforge-release yum install gcc gcc-cpp gcc-c++ zlib-devel…

CentOS 8: How to Only Apply Security Updates

[cuilo@test-box ~]# sudo yum --security update CentOS-8 - AppStream 12 kB/s | 4.3 kB 00:00…