Hello, I am having an issue when deploying one of my images. After Partclone is done, my post download scripts start, however it seems that the $part
variable is not set correctly so the /ntfs
directory only has Recovery
and System Volume Information
and is not mounting my ntfs partition.
I haven’t changed anything of the mounting part from fog.postdownload
.
dots "Running post download scripts."
mkdir /ntfs &>/dev/null
ntfs-3g -o force,rw $part /ntfs
echo "Mounting Device";
if [ "$?" = 0 ]; then
echo "Done"
debugPause
. ${postdownpath}getMachineModel
...
...
I’m pretty sure it’s something with the specific image I am using, since I tried a different image and I don’t have that problem. I don’t know how my new image could be affecting this, but I didn’t do anything different for the “bad” image.
I’m not sure what I should try to figure out what the issue is.
I was able to mount the /dev/sda3 partition manually using ntfs-3g -o force,rw /dev/sda3 /ntfs