web-dev-qa-db-ja.com

12.04アップグレード後のブート時のGRUB画面またはリカバリモードなし

ライブブートCDとブート修復を試し、デスクトップインストールCDもロードしましたが、すべてのパーティションが正常にチェックアウトされているようです。ただし、Linux(コンピューター上の唯一のブート可能なパーティション)をブートしようとすると、空白の画面が表示されます。

時々、画面に次のようなものが表示されます:キャッシュを介した書き込みの想定キャッシュデータの要求に失敗しました

起動を開始したように見え、その後ハングします。 Ctrl+Alt+Delete マシンをシャットダウンします

ブート中の最後のメッセージは「STMing TiMidity ++ ALSA midi emulation ... [OK]」です。

ブート修復を使用して、ブート情報レポートを生成しました。私には奇妙に思えますが、/ dev/sda1にcore.imgがないと報告されます。完全な情報は次のとおりです。

Boot Info Script 0.61.full + Boot-Repair extra info      [Boot-Info August 2nd 2012]

============================= Boot Info Summary: ===============================

 => Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos1)/boot/grub on this drive.
 => Windows is installed in the MBR of /dev/sdb.

sda1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99)
    Boot sector info:  Grub2 (v1.99) is installed in the boot sector of sda1 
                       and looks at sector 18406911 of the same hard drive 
                       for core.img, but core.img can not be found at this 
                       location.
    Operating System:  Ubuntu 12.04.1 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/extlinux/extlinux.conf /boot/grub/core.img

sda2: __________________________________________________________________________

    File system:       Extended Partition
    Boot sector type:  -
    Boot sector info: 

sda5: __________________________________________________________________________

    File system:       swap
    Boot sector type:  -
    Boot sector info: 

sdb1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows XP: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        

============================ Drive/Partition Info: =============================

Drive: sda _____________________________________________________________________

Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *             63   307,339,514   307,339,452  83 Linux
/dev/sda2         307,339,515   312,576,704     5,237,190   5 Extended
/dev/sda5         307,339,578   312,576,704     5,237,127  82 Linux swap / Solaris


Drive: sdb _____________________________________________________________________

Disk /dev/sdb: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1               2,048   625,142,447   625,140,400   7 NTFS / exFAT / HPFS


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/loop0                                              squashfs   
/dev/sda1        11b4d633-7863-40b2-a6ca-da5f82c3ad0b   ext4       
/dev/sda5        cb8d65f4-8cf9-4088-b804-e3dea2151033   swap       
/dev/sdb1        349E7C109E7BC8BE                       ntfs       Personal1

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/sdb1        /media/Personal1         fuseblk    (rw,nosuid,nodev,allow_other,blksize=4096,default_permissions)
/dev/sr0         /live/image              iso9660    (ro,noatime)

...(a bunch of config file info- let me know if anyone wants to see it!)

しかし、通常、「このビデオモードを表示できません」というメッセージが表示されます。これは、ビデオ出力がモニターで使用できないことを意味します。

回復モードに入る方法を探しています。ドライブを拭かないようにしたいです。

何かご意見は?

4
Nick

押す Shift 起動時に、grubメニューが表示されます。

1
January

Grub Customizerをインストールして、必要に応じてGrubに変更を加えることもできます。ただし、注意して進めてください。 Grub Customzierは、Grubメニュー、項目の順序、表示の有無、表示方法などを変更できる快適なGUIツールです。

インストールするには:

Sudo add-apt-repository ppa:danielrichter2007/grub-customizer
Sudo apt-get update
Sudo apt-get install grub-customizer

Grub Customizerの詳細については、次の投稿を参照してください。

GRUBブート順序を変更するにはどうすればよいですか?

お役に立てば幸いです!

0
OM55