NTFS mount on Photon OS - dcasota/photonos-scripts GitHub Wiki
The installation is quite simple.
tdnf install -y wget tar build-essential
wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2021.8.22.tgz
tar -xzvf ntfs-3g_ntfsprogs-2021.8.22.tgz
cd ntfs-3g_ntfsprogs-2021.8.22/
./configure
make install
Have a look to fdisk -l
which partition you want to mount. Assuming /dev/sda1:
mkdir /mnt/windows
ntfs-3g /dev/sda1 /mnt/windows
If the last shutdown wasn't properly processed, ntfs-3g mounts the disk read-only. Use ntfsfix
to clean up the state of the ntfs disk.