我正在我的笔记本电脑上安装 Ubuntu,该笔记本电脑有 500GB HDD 和 32GB mSATA SSD。mSATA 始终被识别为,sdb
无法将其更改为sda
。尝试先将我的 BIOS 启动顺序更改为辅助驱动器。在 上安装 Ubuntu 可以吗sdb
?
答案1
安装 Ubuntu 的位置没有问题,始终记住不要删除任何东西,备份重要文件,以防万一。让我们看看我的情况:
$ sudo fdisk -l
Disk /dev/sda: 13.7 GB, 13701316608 bytes
255 heads, 63 sectors/track, 1665 cylinders, total 26760384 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x8e48c4c5
Device Boot Start End Blocks Id System
/dev/sda1 2104515 26748224 12321855 83 Linux
/dev/sda2 63 2104514 1052226 82 Linux swap / Solaris
Partition table entries are not in disk order
Disk /dev/sdb: 200.0 GB, 200049647616 bytes
255 heads, 63 sectors/track, 24321 cylinders, total 390721968 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x1549f232
Device Boot Start End Blocks Id System
/dev/sdb1 * 63 223629311 111814624+ 7 HPFS/NTFS/exFAT
/dev/sdb2 225724416 336437306 55356445+ 7 HPFS/NTFS/exFAT
/dev/sdb3 223629312 225724415 1047552 82 Linux swap / Solaris
/dev/sdb4 336439294 390721535 27141121 5 Extended
/dev/sdb5 336439296 338391039 975872 83 Linux
/dev/sdb6 338393088 339390463 498688 82 Linux swap / Solaris
/dev/sdb7 339392512 368687103 14647296 83 Linux
/dev/sdb8 368689152 390721535 11016192 83 Linux
Partition table entries are not in disk order
请忽略这里的任何琐碎之事。
如您所见,我安装了另一个磁盘,但我的磁盘是 IDE 磁盘,出于某种奇怪的原因,它先于我的 SATA 磁盘。这是因为主板组织总线的方式:
$ lspci | grep IDE
00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03)
00:1f.2 IDE interface: Intel Corporation 82801FB/FW (ICH6/ICH6W) SATA Controller (rev 03)
在这里,我们可以看到我的 IDE 设备首先位于主板的总线中,因此每当我使用 IDE 总线安装设备时,它都会取代我的 SATA 设备。
综上所述
如果您的驱动器是 sda、sdb、sdz,则没有问题。事实上,Ubuntu 不使用这些标识符,因为它们会随着驱动器的添加/删除而改变,而是使用 UUID,简而言之,它是分区/驱动器的唯一标识符。