Windows 10/11 create folders called "OneDrive" that ntfs-3g didn't natively handle. After some searching I found ntfs-3g-onedrive at https://github.com/gbrielgustavo/ntfs-3g-onedrive and followed it's directions as modified with the script below. I was able to read OneDrive folders that contained local content without issue thereafter.
Here's my build script on AlmaLinux9:
#! /bins/sh
yum -y install libtool fuse fuse-libs fuse-devel ntfs-3g-devel
yum -y groupinstall "Development Tools"
libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing
autoconf
./configure || {
echo "bad configure!";
exit 1;
}
make
target="/tmp/ntfs-3g-onedrive";
mkdir -p "$target";
make install DESTDIR="$target";
echo;
echo "Installed to $target";
echo "------------------------------------";
find $target -type f;
Windows 10/11 create folders called "OneDrive" that ntfs-3g didn't natively handle. After some searching I found ntfs-3g-onedrive at https://github.com/gbrielgustavo/ntfs-3g-onedrive and followed it's directions as modified with the script below. I was able to read OneDrive folders that contained local content without issue thereafter.
Here's my build script on AlmaLinux9: