服务器未检测/显示 /dev 中的磁盘分区

服务器未检测/显示 /dev 中的磁盘分区

由于某种原因,我的一个磁盘没有在 /dev/ 中显示其分区,但是当我使用 cfdisk 检查时,它们在那里,并且再次将分区表写入它会使它们重新出现。

这有点烦人,因为我想在 raid 配置中使用它,但 raid 配置找不到它,所以我必须在启动时手动添加它们,导致它们再次重新同步。

操作系统:Debian 5.0 amd64,带有支持 ext4 的反向移植内核 磁盘:2x Samsung Spinpoint F3 HD103SJ,1x 旧 IDE 磁盘 其他信息可能或多或少无关紧要,如果您需要任何命令输出,我可以提供。

vmhost:/home/xen# fdisk -l

Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x000d6074

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1        6079    48829536   fd  Linux raid autodetect
/dev/sda2            6080      121601   927930465   fd  Linux raid autodetect

Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x000cdeb8

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1        6079    48829536   fd  Linux raid autodetect
/dev/sdb2            6080      121601   927930465   fd  Linux raid autodetect

Disk /dev/sdc: 250.0 GB, 250058268160 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xdba2dba2

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1   *           1       29164   234259798+  83  Linux
/dev/sdc2           29165       30401     9936202+   5  Extended
/dev/sdc5           29165       30401     9936171   82  Linux swap / Solaris

Disk /dev/md0: 50.0 GB, 50001346560 bytes
2 heads, 4 sectors/track, 12207360 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Disk identifier: 0x00000000

Disk /dev/md0 doesn't contain a valid partition table

Disk /dev/md1: 950.2 GB, 950200696832 bytes
2 heads, 4 sectors/track, 231982592 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Disk identifier: 0x00000000

Disk /dev/md1 doesn't contain a valid partition table

答案1

如果你正在谈论

Disk /dev/md0 doesn't contain a valid partition table

那么它有望在任何 raid 设备中输出。

如果你的意思是名为“/dev/sda1”的设备在“/dev”中不存在,那么尝试使用

partprobe /dev/sda

当设备未列出时。如果这解决了问题,那么您可以将“partprobe /dev/sda”添加到“/etc/rc.d/rc.local”文件。如果您尝试在启动时使用“/etc/fstab”挂载“/dev/sda1”等,这仍然会导致问题

答案2

愚蠢的我显然在不久前在 /dev/sda 上创建了一个软件 raid 超级块,这导致软件 raid 工具破坏了分区数据或其他东西。

相关内容