Skip to main content
Post Merged (destination) from askubuntu.com/questions/439634/…
impove formatting
Source Link
αғsнιη
  • 35.9k
  • 42
  • 132
  • 195

You can mount it in read only mode For it, first you have to create a directory as mount point: sudo mkdir /media/youruser/newdisk Later

sudo mkdir /media/*youruser*/newdisk

Later, mount the drive with: sudo mount -t "ntfs" -ro "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda4" "/media/youruser/newdisk" Change

sudo mount -t "ntfs" -ro "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda4" "/media/*youruser*/newdisk"

Change words with **, with your user nameuser name. /dev/sda4/dev/sda4 could be also different, depending on the partition is the one where windows 8 is installed.

Note the args values are taken for your particular error message, for other users take the error message, change -o-o by -ro-ro and type appropriate user name.

Also, note, with this method, you cannot edit, write or create new files in the windows drive.

You can mount it in read only mode For it, first you have to create a directory as mount point: sudo mkdir /media/youruser/newdisk Later, mount the drive with: sudo mount -t "ntfs" -ro "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda4" "/media/youruser/newdisk" Change words with *, with your user name. /dev/sda4 could be also different, depending on the partition is the one where windows 8 is installed.

Note the args values are taken for your particular error message, for other users take the error message, change -o by -ro and type appropriate user name.

Also, note, with this method, you cannot edit, write or create new files in the windows drive.

You can mount it in read only mode For it, first you have to create a directory as mount point:

sudo mkdir /media/*youruser*/newdisk

Later, mount the drive with:

sudo mount -t "ntfs" -ro "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda4" "/media/*youruser*/newdisk"

Change words with *, with your user name. /dev/sda4 could be also different, depending on the partition is the one where windows 8 is installed.

Note the args values are taken for your particular error message, for other users take the error message, change -o by -ro and type appropriate user name.

Also, note, with this method, you cannot edit, write or create new files in the windows drive.

Source Link

You can mount it in read only mode For it, first you have to create a directory as mount point: sudo mkdir /media/youruser/newdisk Later, mount the drive with: sudo mount -t "ntfs" -ro "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda4" "/media/youruser/newdisk" Change words with *, with your user name. /dev/sda4 could be also different, depending on the partition is the one where windows 8 is installed.

Note the args values are taken for your particular error message, for other users take the error message, change -o by -ro and type appropriate user name.

Also, note, with this method, you cannot edit, write or create new files in the windows drive.