mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-13 02:38:57 -05:00
Heading visual style
This commit is contained in:
parent
2c441054af
commit
9175f43062
1 changed files with 8 additions and 4 deletions
12
README.md
12
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:
|
||||
|
||||
|
|
Loading…
Reference in a new issue