I actually went through the upgrade process instead of a reinstall. Everything seemed to have worked except for deluge and the raid array.
Deluge is now in the repositories for 10.04, so I just had to do:
sudo apt-get install deluge-webAnd went to the url localhost:8112 to get to the web ui.
sudo apt-get install deluged
As for the raid array, it didn't work of course. I noticed that the drives weren't the same as before (old raid was sdc1 and sde1) so I needed to figure out which was raid drives. I ran fdisk -l on all the drives to figure out which ones were the 500G drives. Turns out it's sdc and sde this time.
I ran this command:
sudo mdadm --examine --scan
And it returned:
ARRAY /dev/md0 level=raid1 num-devices=2 UUID=3c0abf28:e3777924:ffe566c0:e15f2e9cI copied that to the /etc/mdadm/mdadm.conf since the UUID seems to have changed.
sudo vi /etc/mdadm/mdadm.confand put this in:
ARRAY /dev/md0 level=raid1 num-devices=2 UUID=3c0abf28:e3777924:ffe566c0:e15f2e9cchanged my fstab entry to:
/dev/md0 /raid-drive ext3 defaults,errors=remount-ro 0 2ran this command:
sudo update-initramfs -utell mdadm to assemble the array:
sudo mdadm -A --scanmount the array:
sudo mount /raid-drive
No comments:
Post a Comment