This question arises after I tried the pfix=nocopy boot option.
My frugal install is on an NTFS partition (sda2), and after booting puppy, sda2 is still mounted at /initrd/mnt/dev_save and cannot be unmounted because of the "pfix=nocopy" option. Since all my working documents are also located in sda2, I tried to click an HTML file from there, and the problem is that chrome is running as spot and cannot access the HTML files on sda2. (I do not want to run chrome as root user, since running it as spot has been a long time practice in puppy world.)
Code: Select all
root@live:~# findmnt /dev/sda2
TARGET SOURCE FSTYPE OPTIONS
/mnt/sda2 /dev/sda2 fuseblk rw,noatime,user_id=0,group_id=0,default_permissions,blksize=4096
root@live:~#
The above command shows that the NTFS partition was mounted with the "default_permissions" option, which makes it unaccessible by spot user.
Since sda2 cannot be unmounted, is there any way to use the "mount -o remount,..." command to make this partition accessible to spot user? I tried "mount -o remount,alllow_other /dev/sda2 /initrd/mnt/dev_save". Does not work.