My problem is similar to http://forums.amahi.org/viewtopic.php?f ... 5&start=10 but his solution isn't what I am looking for.
Hardware
HP N40L Microserver
4 x 2TB hard drives in four "quick plug" bays
1 x 250GB drive for OS, now mounted in the optical drive bay.
What I have done so far
1) Originally had the 250GB OS drive mounted in the quick carrier of the first drive bay; no other drives installed.
2) Installed Ubuntu Desktop 12.04 and then Amahi
3) Set up Amahi per instructions - no problems
4) Used Gparted to partition the OS drive into separate root, home and swap areas; had to follow a tutuorial to relocate home area
5) Installed the four 2TB drives in the quick plug drive bays
6) moved the OS drive to the empty optical drive bay. This may be what is causing my problem but I would like to leave the drive here as a) I want the larger drives in the quick connect bays and 2) the standard bios for the sata connection for the optical bay is slower IDE vs ACHI (can be fixed with a hacked bios but I thought why bother?)
7) Then started following Amahi instructions to add drives to Greyhole
What I found when I ran hda-diskmount was an error that my first 2TB drive (/dev/sda1) already exists in fstab and therefore was being ignored. So I am not getting the UUID info I need to add to fstab for this drive. There appears to be no problems with the other three 2TB drives. I expect this is showing up as a problem as I had the OS drive initially set up as sda1 when I installed Ubuntu / Amahi and now, for reasons stated above, I want it as sde1 (eg fifth drive position).
I'm not sure if there is an easy way to edit fstab and adjust this? I was bit afraid of messing everything up. Appreciate some coaching on what next steps I should be taking.
hda-diskmount info:
Code: Select all
****************************************************************
Ignoring /dev/sda1 - already in /etc/fstab as /dev/sda1
This device appears to be commented out of your /etc/fstab. You will need to remove it from there for hda-diskmount to be able to mount it.
****************************************************************
Mounted /dev/sdb1 as '/var/hda/files/drives/drive1' (read-write)
You may want your system to mount it every time you boot.
To do so, add this line VERY CAREFULLY to /etc/fstab and reboot:
UUID=5bd5498f-30c1-4780-948e-ca46656507d2 /var/hda/files/drives/drive1 ext4 defaults 1 2
****************************************************************
Mounted /dev/sdc1 as '/var/hda/files/drives/drive2' (read-write)
You may want your system to mount it every time you boot.
To do so, add this line VERY CAREFULLY to /etc/fstab and reboot:
UUID=a7337504-376a-4d36-9f7a-1a24c0f55fbd /var/hda/files/drives/drive2 ext4 defaults 1 2
****************************************************************
Mounted /dev/sdd1 as '/var/hda/files/drives/drive3' (read-write)
You may want your system to mount it every time you boot.
To do so, add this line VERY CAREFULLY to /etc/fstab and reboot:
UUID=8d881dcb-8de3-4621-b9bd-00025196868a /var/hda/files/drives/drive3 ext4 defaults 1 2
Code: Select all
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=4d6f8004-d190-4234-a03b-b68de988abf0 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=3c39206c-ba60-47ff-a1fe-f5821b2ab543 none swap sw 0 0
# (identifier) (location, eg sda5) (format, eg ext3 or ext4) (some settings)
UUID="d0531fa1-9311-4d53-b838-f35898adbd98" /home ext4 nodev,nosuid 0 2
Carl