我使用安装了 Ubuntu 的 e520 Lenovo 笔记本电脑已有好几年了。
我购买了一块新硬盘(SEAGATE 2 TB Firecuda)并插入我的笔记本电脑。
我通过 USB 启动器启动 Ubuntu 17.04 iso,并在新的内置硬盘上安装 Ubuntu。
到目前为止,一切都运行正常。我关闭了笔记本电脑,拔下了 USB 驱动器并尝试启动。
但是我只看到联想的启动画面,但是它就挂在那里。
我在 BIOS 中启用了“诊断”视图,但仍然没有错误消息或其他提示表明这里可能出了什么问题。
BIOS 是否无法访问这么大的硬盘(2 TByte)?
root@ubuntu:~# gdisk -l /dev/sda
GPT fdisk (gdisk) version 1.0.1
Partition table scan:
MBR: MBR only
BSD: not present
APM: not present
GPT: not present
***************************************************************
Found invalid GPT and valid MBR; converting MBR to GPT format
in memory.
***************************************************************
Disk /dev/sda: 3907029168 sectors, 1.8 TiB
Logical sector size: 512 bytes
Disk identifier (GUID): E118E296-B60A-4D65-8729-98F0508AC202
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 3907029134
Partitions will be aligned on 2048-sector boundaries
Total free space is 2157 sectors (1.1 MiB)
Number Start (sector) End (sector) Size Code Name
1 2048 3907028991 1.8 TiB 8300 Linux filesystem
答案1
我找到了使新磁盘正常工作的解决方案。
我通过 USB 驱动器使用 Ubuntu 17.04 iso 启动。
sudo bash
mount /dev/sda1 /mnt # sda1 is the new installation which did not boot
cd /mnt/
mount -t proc proc proc/
mount -t sysfs sys sys/
mount -o bind /dev dev/
chroot .
grub-install
update-grub
exit # exit chroot
reboot