安装 Ubuntu 10.04(双启动),未读取分区表

安装 Ubuntu 10.04(双启动),未读取分区表

我有 Ubuntu 9.04,我想升级到 10.04。它与 Windows Vista 是双启动的。我决定从 Live CD 进行全新安装。Live CD 无法检测到分区,而是只给我一个选项,即擦除整个硬盘。我启动 Windows 并擦除我的 Ubuntu 分区,希望 Live CD 能够识别可用空间。但它没有,现在我也无法启动 Windows,因为我删除了 grub 设置。

所以:

我怎样才能让我的 Live CD 识别分区?在修复此问题之前,我怎样才能重新启动 Windows?

我还受到限制,因为直到这个周末结束之前,我唯一的资源就是现场 CD(和互联网)。

谢谢

编辑:

输出sudo fdisk -l

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical / optimal IO): 512 bytes / 512 bytes
Disk identifier: 0x90000000

Device Boot      Start         End      Blocks   Id  System
/dev/sda1              17        1322    10485760    7  HPFS/NTFS
/dev/sda2   *        1322        9200    63279092    7  HPFS/NTFS
/dev/sda3            9201       14594    43320297+   f  W95 Ext'd (LBA)
/dev/sda4   *       14267       14594     2620416    c  W95 FAT32 (LBA)
/dev/sda5           14054       14266     1710891   82  Linux swap / Solaris

输出sudo parted -l

Error: Can't have overlapping partitions.                                 

Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0 has been opened read-only.
Error: /dev/sr0: unrecognised disk label

尝试了一些其他实用程序(例如 lilo)后,这些是我的分区的新条件。

新产出sudo sfdisk -d /dev/sda

# partition table of /dev/sda
unit: sectors
/dev/sda1 : start= 258048, size= 20971520, Id= 7
/dev/sda2 : start= 21229568, size=126558184, Id= 7, bootable
/dev/sda3 : start=225761507, size= 3421783, Id= f
/dev/sda4 : start=229197824, size= 5240832, Id= c, bootable
/dev/sda5 : start=225761508, size= 3421782, Id=82

新产出sudo fdisk -lu

Device Boot      Start         End      Blocks   Id  System    
/dev/sda1          258048    21229567    10485760    7  HPFS/NTFS    
/dev/sda2   *    21229568   147787751    63279092    7  HPFS/NTFS    
/dev/sda3       225761507   229183289     1710891+   f  W95 Ext'd (LBA)    
/dev/sda4   *   229197824   234438655     2620416    c  W95 FAT32 (LBA)    
/dev/sda5       225761508   229183289     1710891   82  Linux swap / Solaris

新产出sudo parted -l

Partition Table: msdos    
Number  Start   End     Size    Type      File system     Flags    
1      132MB   10.9GB  10.7GB  primary   ntfs    
2      10.9GB  75.7GB  64.8GB  primary   ntfs            boot    
3      116GB   117GB   1752MB  extended                  lba    
5      116GB   117GB   1752MB  logical   linux-swap(v1)
4      117GB   120GB   2683MB  primary   fat32           boot, lba    

Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0    
has been opened read-only.    
Error: /dev/sr0: unrecognised disk label

答案1

GParted如果你有重叠分区。我认为你现在有两个选择:

  • 蛮力选项 - 擦除磁盘并重新安装所有内容;

  • 修复分区表选项-查看这个很好的教程如何操作。操作之前,请不要忘记备份数据。

至于启动 Windows,要么修复表并安装 Ubuntu,要么使用任何 Windows 恢复工具修复 MBR(取决于您拥有的 Windows 版本,只需谷歌一下)。

答案2

您可以通过启动安装光盘、获取终端并输入fixmbr(对于 xp,不知道在 vista 上如何)来修复 windows mbr。

相关内容