|
安装完ubuntu,重启出出现:
GRUB Loading stage1.5. GRUB loading,please wait... Error 17
我的分区列表是
1主分区,ntfs /media/hdb1
5逻辑分区 ntfs /media/hdb5
6逻辑分区 fat32 /media/hdb6
7逻辑分区 swap swap
3主分区 exte /media/hdb3
我查了一下网上的解决方案,并对照上面所说的操作。
用的安装CD,进入到急救模式,然后运行shell,
~ # mkdir /ubuntu
~ # fdisk -l /dev/discs/disc0/disc
结果提示:
/bin/sh: fdisk: not found
然后我试着从网上搜来的另一个办法:
运行shell后,
#grub-install /dev/hdb
提示:
/bin/sh: grub-install: not found
再试第三个方法:
mkdir /linux
mount /dev/hdb3 /linux
(mount:mounting /dev/hdb3 on /linux failed: Invalid argument)
chroot /linux /bin/bash
(提示chroot: cannot execute /bin/bash: No such file or directory)
mount -t proc /proc /proc
(mount: Mounting /proc on /proc failed: Device or resource busy)
source /etc/profile
(/bin/sh: source: not found) |
|