On 10/07/16 18:11, neilhard...@gmail.com wrote:
> OK... This is what I get
> 
> ubuntu@ubuntu:~$ sudo mount /dev/sda1 /mnt
> ubuntu@ubuntu:~$ sudo mount /dev/sda2 /mnt
> mount: block device /dev/sda2 is write-protected, mounting read-only
> NTFS signature is missing.
> Failed to mount '/dev/sda2': Invalid argument
> The device '/dev/sda2' doesn't seem to have a valid NTFS.
> Maybe the wrong device is used? Or the whole disk instead of a
> partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
> 

first do:
mkdir /mnt/root
mkdir /mnt/root/boot

mount /dev/sda1 /mnt/root/boot

/dev/sda2 is an encrypted luks, you have to do:

cryptsetup luksOpen /dev/sda2 luksRoot
[enter your passphrase]
mount /dev/mapper/luksRoot /mnt/root

then you have to bind some special folders

mount --bind /proc /mnt/root/proc
mount --bind /dev /mnt/root/dev

and finally do:

chroot /mnt/root

then try to reinstall grub.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/b8ef2345-5f14-4927-cda2-7df380c750d0%40riseup.net.
For more options, visit https://groups.google.com/d/optout.

Reply via email to