0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ubuntu20.04のブートにて'minimal bash~'がでてしまう問題の対策法

Posted at

問題

ROG FLOW X13(GV301QE)にて,Ubunutu20.04の日本語リミックス版のisoイメージを書き込んだUEFIからUSBでブートしようとすると,

minimal bash like line editing is supported~~~~~

grub>

が表示されて,困惑してしまう.

調べてみて,configfileを使った方法を実行してもうまくいかなかったが,以下の方法でUbuntuを起動することができた.

対策

  1. UEFIからSecure Bootをdisabledにしておく.

  2. 以下のコマンドで,grubというディレクトリを探す.
    注)日本語配列のキーボードに対応していないため,記号とかは英語配列のキーボードなどから探す.

    grub> ls
    
  3. /boot/grubなどのディレクトリがあるパーティションを見つけたら以下のコマンドを打つ.

    grub> set root=(hdX, Y)
    grub> set prefix=(hdX, Y)/boot/grub
    
  4. linuxカーネルをロードするようにするために以下を実行する.

    grub> insmod normal
    grub> normal
    

参考

How to Fix Minimal BASH Like Line Editing is Supported GRUB Error In Linux? - GeeksforGeeks
はじめてのLinuxデスクトップ環境 - Linux Mint, Ubuntu

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?