zoukankan      html  css  js  c++  java
  • 在Windows下删除Linux系统的方法[转]

    我的电脑安装了双系统,Windows和Linux,不过由于Linux在最近一段时间内不会使用,所以我打算删除Linux。
       删除Linux最需要注意的地方,就是MBR(Master Boot Record)。在删除Linux分区前,我们需要将启动Windows的引导信息写入MBR,否则,MBR中的Linux引导信息,当然就不能启动Windows系统了。

    一:将Windows的引导信息写入MBR
       写入MBR的方法,有两种比较简单
       第1种方法:就是将Windows的安装盘放入计算机以后,重启计算机,进入Windows安装程序,随后,进入恢复控制台,输入命令fixmbr即可。
       第2种方法是为没有Windows安装盘的朋友准备的,就是使用MBRFix工具进行修复。
       MBRFix工具修复MBR很方便,先进入cmd命令窗口,然后进入mbrfix工具所在的目录(用cd命令),然后输入命令 MbrFix /drive 0 fixmbr ,再确认一下即可。重启以后你会发现,没有了Linux,直接可以进入Windows了。

    二:删除Linux分区
       最后一件事情,就是删除Linux所在的分区,这个很简单,您可以使用patition的分区工具,将该分区格式化成fat32或ntfs格式,就可以在Windows下使用了。
       进入Windows自带的分区管理工具的方法:控制面板->管理工具->计算机管理,点击左边的 磁盘管理 即可。



    附一:MbrFix命令

    Commands:

    MbrFix /drive <num> driveinfo              Display drive information
    MbrFix /drive <num> listpartitions Display partition information
    MbrFix /drive <num> savembr <file> Save MBR and partitions to file
    MbrFix /drive <num> restorembr <file> Restore MBR and partitions from file
    MbrFix /drive <num> fixmbr Update MBR code to W2K/XP/2003
    MbrFix /drive <num> clean Delete partitions in MBR
    MbrFix /drive <num> readsignature {/byte} Read disk signature from MBR
    MbrFix /drive <num> generatesignature Generate disk signature in MBR
    MbrFix /drive <num> readstate Read state from byte 0x1b0 in MBR
    MbrFix /drive <num> writestate <state> Write state to byte 0x1b0 in MBR

    Drive numbering <num> starts on 0.


    Commands restorembr, fixmbr, generatesignature, writestate and clean will ask for confirmation unless /yes is included.

    If the /byte option is given for the readsignature command, the signature is returned as a byte array instead of as a DWORD.


    附二:Mbr Fix下载(35KB)

    http://www.cnitblog.com/Files/CoffeeCat/MbrFix.rar

     原文地址 http://hi.baidu.com/chuanqi_ding/blog/item/821d2308eeb112900a7b82bd.html
  • 相关阅读:
    mfc给对话框添加背景
    科学计数法中的尾数、基、指数
    格式化输出符号详细说明(待补充)
    写入注册表
    C++ 注册表操作
    Run-Time Check Failure #3
    完美二叉树, 完全二叉树和完满二叉树学习
    GetModuleFileNameW
    [BJDCTF2020]ZJCTF,不过如此
    picoctf_2018_buffer overflow 1/2
  • 原文地址:https://www.cnblogs.com/yesun/p/1422471.html
Copyright © 2011-2022 走看看