Quote:
Originally Posted by akya
I am not able to post log here because my windows partitions are not writable. How can I change these permissions from failsafe root login?
|
You have to install ntfs-3g with Yast and mount the Windows partition with it. With command:
fdisk -l you can find out which device is your Windows partition is, let's say it is /dev/sda1 and you have a directory already for it called "/mnt/windows". First unmount it and remount with ntfs-3g with these two commands as root:
Code:
umount /dev/sda1
mount -t ntfs-3g /dev/sda1 /mnt/windows
If you do not have a directory to access the Windows partition you'll have to make one and mount it like so:
Code:
mkdir /win
mount -t ntfs-3g /dev/sda1 /win
You can name the directory whatever you want, I just used /win as an example that will work. I'm not sure if you can install anything from failsafe mode, but you can try.