What is MBR (Master Boot Record) in Hindi

MBRs का concept पहली बार publicly 1983 मे PC DOS 2.0 मे introduce किया गया था | यह disk का सबसे important data structure होता है जो की disk के partition के बनाते वक़्त create होता है इसलिए ही Master Boot Record (MBR) को master partition, boot sector, sector 0 or partition sector भी कहते है | यह एक special type का boot sector होता है जो की computer की hard drive मे first sector मे located होता है | Hard drive का यह first sector computer को बताता है की OS को कैसे load करना है ऐवम hard drive के partition कैसे बनेगे |

How it work : जब कोई भी computer boot होता है तो sector 0 का एक small program execute होता है | MBR जो की hard disk के first sector मे रहता है, सबसे पहले boot process को start करते ही partition table को देखकर decide करता है की कौनसे partition को booting के लिए use करना है | एक बार जब partition की information मिल जाती है तो boot process के control को उस boot sector के partition पर transfer कर देता है जो की आगे का boot process manage करता है |

master-boot-record-hindi

MBR 

MBR मे executable code जिसको की master boot code कहते है, disk signature ऐवम disk की partition table की information store होती है | MBR code को boot loader भी कहते है |

MBR की partition table disk की maximum addressable storage space को 2 TB (232 × 512 bytes) तक limit करता है इसी वजह से नए computers मे नया partition table GUID Partition Table (GPT) popular हो रहा है| Old computers system मे कुछ limited backward compatibility support करने की वजह से GPT and MBR दोनों को साथ साथ रखा जा रहा है जिससे की old computers बूट हो सके |

Master boot code निचे दी गयी activities perform करता है :

  1. active partition के लिए partition table को Scans करता है |
  2. active partition के starting sector को search करता है |
  3. Active partition से boot sector की एक copy को memory मे load करता है |
  4. Control को boot sector के executable code मे trasfer करता है |

अगर master boot code ऊपर दिए गए functions को complete नहीं कर पता तो निचे दी गयी errors मे से कोई एक error show कर देता है |

  1. Missing operating system
  2. Invalid partition table
  3. Error loading operating system

Note – MBRs non-partitioned media जैसे की floppies, superfloppies or other storage devices मे present नहीं होता है |

Read also – Difference between MBR and GPT

4 Comments

  1. Arun yadav September 3, 2017
    • Amit Saxena September 4, 2017
  2. Shubham January 5, 2018
    • Amit Saxena January 5, 2018

Leave a Reply