跳至主要内容

重装Windows后如何进入Linux Grub

重装了Windows之后,原来Linux生成的grub2多系统启动菜单被覆盖了,该如何进入Linux呢?
这时,你需要一张Ubuntu的LIVE光盘或者LIVE U盘。用这个LIVE盘启动,进入LIVE系统后,在终端中依次执行如下命令,即可恢复重建grub2启动菜单:

cd /media(进入media文件夹)
sudo mkdir temp(在media下新建一个temp文件夹)
mount /dev/sda7 /media/temp(把Ubuntu的安装分区挂载到temp文件夹下。这里假设你的Ubuntu是安装在sda7这个分区的。)
grub-install --root-directory=/media/temp /dev/sda(运行grub安装程序,并指定安装在第一硬盘。)

然后重启电脑,就可以看到熟悉的grub2启动菜单了。

评论

此博客中的热门博文

android hide actionbar

public class MainActivity extends Activity { ActionBar actionBar; //声明ActionBar @Override protected void onCreate( Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView( R .layout.activity_main); actionBar = getSupportActionBar(); //得 到ActionBar actionBar.hide(); //隐藏ActionBar } }

go url encoding

func  QueryUnescape func QueryUnescape (s string ) ( string , error ) QueryUnescape does the inverse transformation of QueryEscape, converting %AB into the byte 0xAB and '+' into ' ' (space). It returns an error if any % is not followed by two hexadecimal digits. func  QueryUnescape func QueryUnescape (s string ) ( string , error ) QueryUnescape does the inverse transformation of QueryEscape, converting %AB into the byte 0xAB and '+' into ' ' (space). It returns an error if any % is not followed by two hexadecimal digits.