1

I'm using lubuntu, but still think it's very similar to ubuntu. I need to install exfat-nofuse as my NAS has exfat format.

I followed these instructions on this post: https://askubuntu.com/a/400946/313828

Everything was fine until the last code:

sudo modprobe exfat_fs

All I get is this message: modprobe: FATAL: Module exfat_fs not found. Same result if I use exfat without '_fs'

ziovelvet
  • 11
  • 6

2 Answers2

1

Try this:

sudo -i
apt-get update
apt-get install exfat-utils exfat-fuse
kyodake
  • 17,808
1

For exfat-nofuse module install using dkms:

sudo -i
cd /usr/src
git clone https://github.com/dorimanx/exfat-nofuse
mv exfat-nofuse exfat-nofuse-1.2.9
echo 'PACKAGE_NAME="exfat-nofuse"
PACKAGE_VERSION="1.2.9"
BUILT_MODULE_NAME[0]="exfat"
DEST_MODULE_LOCATION[0]="/kernel/fs/exfat"
AUTOINSTALL="yes"
MAKE[0]="CONFIG_EXFAT_FS=m make KDIR=$kernel_source_dir"
' > ./dkms.conf
dkms add exfat-nofuse/1.2.9
dkms build exfat-nofuse/1.2.9
dkms install exfat-nofuse/1.2.9
modprobe exfat && dmesg | tail -1

If successful output should be like exFAT: Version 1.2.9

Based on this post: http://www.lushnikov.net/2015/02/25/ubuntu-14-04-%D0%B8-exfat-nofuse/

Videonauth
  • 33,815
vmspike
  • 11