dd,mdadm,parted,rsync,storage

This commit is contained in:
Marc Beninca 2019-08-25 10:44:25 +02:00
parent cb00653688
commit 545ff2f6a3
11 changed files with 19 additions and 23 deletions

View file

@ -1,38 +0,0 @@
Parted
======
Examples with 2 × 2 TB hard disk drives as MBR,
for a virtual 4 TB with data and 32 GB of swap as GPT.
MBR
---
::
parted /dev/sda
mktable msdos
mkpart primary 1 2000399
::
parted /dev/sdb
mktable msdos
mkpart primary 1 2000399
.. warning::
The first megabyte makes room for an embedded bootloader.
GPT
---
::
parted /dev/md0
mktable gpt
mkpart data 1 3966128
mkpart swap 2 4000527
.. note::
Start offset of a partition can be inferior than actual free space beginning.