mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-13 02:38:57 -05:00
Try to compress parallelly (#15)
* Add -p flag for parallel compressing. The script will test if pbzip2 is install, before using it for parallel compressing. * Update README.md * Update README.md
This commit is contained in:
parent
f029e83586
commit
b75b9f7715
2 changed files with 31 additions and 6 deletions
10
README.md
10
README.md
|
@ -43,11 +43,12 @@ mkstage4 -t /custom/mount/point archive_name
|
|||
Command line arguments:
|
||||
|
||||
```
|
||||
mkstage4.sh [-q -c -b -l -k] [-s || -t <target-mountpoint>] [-e <additional excludes dir*>] <archive-filename> [custom-tar-options]
|
||||
mkstage4.sh [-q -c -b -l -k -p] [-s || -t <target-mountpoint>] [-e <additional excludes dir*>] <archive-filename> [custom-tar-options]
|
||||
-q: activates quiet mode (no confirmation).
|
||||
-c: excludes connman network lists.
|
||||
-b: excludes boot directory.
|
||||
-l: excludes lost+found directory.
|
||||
-p: compresses parallelly using pbzip2.
|
||||
-e: an additional excludes directory (one dir one -e).
|
||||
-s: makes tarball of current system.
|
||||
-k: separately save current kernel modules and src (smaller & save decompression time).
|
||||
|
@ -70,10 +71,17 @@ tar xvjpf archive_name.tar.bz2.kmod
|
|||
tar xvjpf archive_name.tar.bz2.ksrc
|
||||
```
|
||||
|
||||
If you have install pbzip2, you can extract parallelly with:
|
||||
```bash
|
||||
tar -I pbzip2 -xvf archive_name.tar.bz2
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
* **[Bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell))** - in [Portage](http://en.wikipedia.org/wiki/Portage_(software)) as **app-shells/bash**
|
||||
* **[tar](https://en.wikipedia.org/wiki/Tar_(computing))** - in Portage as **app-arch/tar**
|
||||
* **[pbzip2](https://launchpad.net/pbzip2)** (optional,if it's installed archive can be compressed parallelly) - in Portage as
|
||||
**app-arch/pbzip2**
|
||||
|
||||
*Please note that these are very basic dependencies and should already be included in any Linux system.*
|
||||
|
||||
|
|
27
mkstage4.sh
27
mkstage4.sh
|
@ -15,16 +15,18 @@ QUIET=0
|
|||
USER_EXCL=""
|
||||
S_KERNEL=0
|
||||
x86_64=0
|
||||
PARALLEL=0
|
||||
if [ `getconf LONG_BIT` = "64" ]
|
||||
then
|
||||
x86_64=1
|
||||
fi
|
||||
USAGE="usage:\n\
|
||||
`basename $0` [-q -c -b -l -k] [-s || -t <target-mountpoint>] [-e <additional excludes dir*>] <archive-filename> [custom-tar-options]\n\
|
||||
`basename $0` [-q -c -b -l -k -p] [-s || -t <target-mountpoint>] [-e <additional excludes dir*>] <archive-filename> [custom-tar-options]\n\
|
||||
-q: activates quiet mode (no confirmation).\n\
|
||||
-c: excludes connman network lists.\n\
|
||||
-b: excludes boot directory.\n\
|
||||
-l: excludes lost+found directory.\n\
|
||||
-p: compresses parallelly using pbzip2.\n\
|
||||
-e: an additional excludes directory (one dir one -e, donot use it with *).\n\
|
||||
-s: makes tarball of current system.\n\
|
||||
-k: separately save current kernel modules and src (smaller & save decompression time).\n\
|
||||
|
@ -32,7 +34,7 @@ USAGE="usage:\n\
|
|||
-h: displays help message."
|
||||
|
||||
# reads options:
|
||||
while getopts ':te:skqcblh' flag; do
|
||||
while getopts ':te:skqcblph' flag; do
|
||||
case "${flag}" in
|
||||
t)
|
||||
TARGET="$OPTARG"
|
||||
|
@ -56,8 +58,11 @@ while getopts ':te:skqcblh' flag; do
|
|||
EXCLUDE_LOST=1
|
||||
;;
|
||||
e)
|
||||
USER_EXCL+=" --exclude=${OPTARG}"
|
||||
;;
|
||||
USER_EXCL+=" --exclude=${OPTARG}"
|
||||
;;
|
||||
p)
|
||||
PARALLEL=1
|
||||
;;
|
||||
h)
|
||||
echo -e "$USAGE"
|
||||
exit 0
|
||||
|
@ -168,7 +173,19 @@ then
|
|||
fi
|
||||
|
||||
# Generic tar options:
|
||||
TAR_OPTIONS="-cjpP --ignore-failed-read --xattrs-include='*.*' --numeric-owner"
|
||||
TAR_OPTIONS="-cpP --ignore-failed-read --xattrs-include='*.*' --numeric-owner"
|
||||
|
||||
if [ ${PARALLEL} -eq 1 ]
|
||||
then
|
||||
if hash pbzip2 2>/dev/null; then
|
||||
TAR_OPTIONS+=" --use-compress-prog=pbzip2"
|
||||
else
|
||||
echo "WARING: pbzip2 isn't installed, single-threaded compressing is used."
|
||||
TAR_OPTIONS+=" -j"
|
||||
fi
|
||||
else
|
||||
TAR_OPTIONS+=" -j"
|
||||
fi
|
||||
|
||||
# if not in quiet mode, this message will be displayed:
|
||||
if [ "$AGREE" != "yes" ]
|
||||
|
|
Loading…
Reference in a new issue