0
I have an HP xw8200 workstation running linux with two small, fast SCSI drives hooked up to the onboard LSI SCSI controller. The drives get labeled /dev/sda & /dev/sdb in /dev, respectively. I have a large SATA disk that I want to add to the system to store data, but every time I connect it, it's /dev gets assigned sda & the two scsi drives are assigned sdb,c, which messes with the boot procedure. How can I get this SATA drive to use sdc?
2Why are you not using labels or UUIDs for boot? – Ignacio Vazquez-Abrams – 2011-03-22T10:32:12.637
I am using LVM & that is how fstab was generated. – churnd – 2011-03-22T10:50:23.707
1@churnd You can modify fstab to use UUID or labels, UUID=[uuid] and LABEL=[label] respectively. The UUID can be detected with
blkid
(run it as root). The label can be found withls -l /dev/disk/by-label/
– Lekensteyn – 2011-12-03T13:13:21.490