Open main menu

CDOT Wiki β

Changes

OPS435 Python Assignment 2 C

7 bytes added, 11:24, 3 July 2018
Overview
[[Category:OPS435-Python]][[Category:rchan]]
= Overview =
In order to use a physical storage device (e.g. Hard Disk, USB Flash memeorymemory, SSD, etc.), the first step is to create partition(s) on it. There many different ways to partition a physical storage device. The two most common partition schemes used on Intel based micro-computer systems are MBR and GPT. Detail about the MBR partition scheme can be found [https://en.wikipedia.org/wiki/Master_boot_record here], and GPT partition scheme can be found at [https://en.wikipedia.org/wiki/GUID_Partition_Table].
On most Linux systems, fdisk or parted can be used to create, view, and manage MBR and GPT partitions.
<pre>
#! /usr/bin/python
# read and display primary partition info
# on a physical disk or disk image
#
198
edits