Mount windows ntfs Volume
-
I am trying to mount the windows volume in fog debug for troubleshooting. I have done this a long time ago but since have forgotten the steps required.
can anyone lend a hand? -
How about something like this
mkdir /ntfs ntfs-3g -o force,rw $part /ntfs
where you will replace
$part
with the partition where thedrive is. $part needs to be expressed in /dev/ format. You can probably find that part by using
lsblk
to find the /dev/disk_part format -
@george1421 Thanks!