From 9175f43062f2da6356d1c9b203b76cc735eb8e75 Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Mon, 31 Aug 2020 19:32:51 -0400 Subject: [PATCH] Heading visual style --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 49ba569..3b78cd7 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,9 @@ Command line arguments: -h: displays help message. ``` -## Extract Tarball +## System Tarball Extraction + +### Single-threaded Tarballs created with mkstage4 can be extracted with: @@ -80,21 +82,23 @@ tar xvjpf archive_name.tar.bz2.kmod tar xvjpf archive_name.tar.bz2.ksrc ``` +### Multi-threaded + If you have a parallel de/compressor installed, you can extract the archive with one of the respective commands: -### pbzip2 +#### `pbzip2` ```bash tar -I pbzip2 -xvf archive_name.tar.bz2 --xattrs-include='*.*' --numeric-owner ``` -### xz +#### `xz` ```bash tar -I 'xz -T0' -xvf archive_name.tar.xz --xattrs-include='*.*' --numeric-owner ``` -### gzip +#### `gzip` Similarly to other compressors, `gzip` uses a separate binary for parallel decompression: