author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Wed, 31 May 2017 16:58:21 +0300 | |
changeset 2143 | e5191a677ee5 |
parent 1912 | 8b81a8f0f692 |
child 2205 | 5b98c1476d30 |
permissions | -rw-r--r-- |
1888 | 1 |
.. -*- coding: utf-8; -*- |
2 |
||
3 |
====================== |
|
4 |
Storage partitioning |
|
5 |
====================== |
|
6 |
.. contents:: |
|
1905
fba288d59662
Include only local subsections into TOC. This prevent duplication of
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1888
diff
changeset
|
7 |
:local: |
1888 | 8 |
|
9 |
MBR |
|
10 |
=== |
|
11 |
||
12 |
Backup MBR:: |
|
13 |
||
14 |
$ dd if=/dev/hda of=boot.mbr bs=512 count=1 |
|
15 |
||
16 |
Restore backuped mbr:: |
|
17 |
||
18 |
$ sudo of=boot.mbr if=/dev/hda bs=512 count=1 |
|
19 |
||
20 |
Backup PC partition |
|
21 |
=================== |
|
22 |
||
23 |
Backup PC partition table:: |
|
24 |
||
25 |
$ sfdisk -d /dev/sda >partition.tbl |
|
26 |
||
27 |
Restore PC partition table:: |
|
28 |
||
29 |
$ sfdisk /dev/sdb <partition.tbl |
|
30 |
||
31 |
Move PC partition table from on dist to another:: |
|
32 |
||
33 |
$ sfdisk -d /dev/sda | sfdisk /dev/sdb |
|
34 |
||
35 |
List partitions. |
|
36 |
================ |
|
37 |
||
38 |
Active / maunted partitions:: |
|
39 |
||
40 |
$ mount |
|
41 |