Re: Intel Matrix (fakeRAID)
Hey, thanks Attila for confirming that something is amiss. I thought I was the only weirdo on the planet who wanted to install KK on fakeraid using new fangled grub.
Yes, there is a way to read your existing partitions and even look at the configuration files of grub to see what it did. Unfortunately, I only know the long way.
You boot with the desktop installation CD, then open a terminal session and install dmraid:
sudo apt-get install dmraid
Then you have to look in /dev/mapper what your raid volume names are, as sudo fdisk -l does not list them for me, but only the normal partitions. You them mount the relevant partition manually, with:
sudo mount -t ext4 /dev/mapper/whateveryourchipset_whateveryourfakeraidvolume /mnt
Then you can navigate to /mnt and the rest of the directories to whatever you want to look at. Of course this method only works if you have a working network connection or if you have the dmraid package available somewhere.
Originally posted by attila_66
Yes, there is a way to read your existing partitions and even look at the configuration files of grub to see what it did. Unfortunately, I only know the long way.
You boot with the desktop installation CD, then open a terminal session and install dmraid:
sudo apt-get install dmraid
Then you have to look in /dev/mapper what your raid volume names are, as sudo fdisk -l does not list them for me, but only the normal partitions. You them mount the relevant partition manually, with:
sudo mount -t ext4 /dev/mapper/whateveryourchipset_whateveryourfakeraidvolume /mnt
Then you can navigate to /mnt and the rest of the directories to whatever you want to look at. Of course this method only works if you have a working network connection or if you have the dmraid package available somewhere.
Comment