mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-13 02:38:57 -05:00
Style improvements
This commit is contained in:
parent
df1827410b
commit
2c441054af
1 changed files with 6 additions and 5 deletions
11
README.md
11
README.md
|
@ -8,7 +8,6 @@ The script was inspired by an earlier [mkstage4 script](https://github.com/gregf
|
|||
More information on mkstage4 can be found on the following blogs, though instructions may be outdated compared to the current version, best documented by this `README` file:
|
||||
|
||||
* English: [mkstage4 - Stage 4 Tarballs Made Easy](http://tutorials.chymera.eu/blog/2014/05/18/mkstage4-stage4-tarballs-made-easy/).
|
||||
* Chinese: [中文说明](http://liuk.io/blog/gentoo-stage4)
|
||||
|
||||
## Installation
|
||||
|
||||
|
@ -81,21 +80,23 @@ tar xvjpf archive_name.tar.bz2.kmod
|
|||
tar xvjpf archive_name.tar.bz2.ksrc
|
||||
```
|
||||
|
||||
If you have one of parallel (de-)compressors installed, you can extract with:
|
||||
If you have a parallel de/compressor installed, you can extract the archive with one of the respective commands:
|
||||
|
||||
In case of pbzip2:
|
||||
### pbzip2
|
||||
|
||||
```bash
|
||||
tar -I pbzip2 -xvf archive_name.tar.bz2 --xattrs-include='*.*' --numeric-owner
|
||||
```
|
||||
|
||||
Or xz:
|
||||
### xz
|
||||
|
||||
```bash
|
||||
tar -I 'xz -T0' -xvf archive_name.tar.xz --xattrs-include='*.*' --numeric-owner
|
||||
```
|
||||
|
||||
Some compressors have separate binaries for the decompression, like gzip:
|
||||
### gzip
|
||||
|
||||
Similarly to other compressors, `gzip` uses a separate binary for parallel decompression:
|
||||
|
||||
```bash
|
||||
tar -I unpigz -xvf archive_name.tar.gz --xattrs-include='*.*' --numeric-owner
|
||||
|
|
Loading…
Reference in a new issue