Use -Z and -z instead of -i and use pigz now
This commit is contained in:
parent
ab32008981
commit
c7d74a73e7
16
README.md
16
README.md
|
@ -1,19 +1,21 @@
|
||||||
|
|
||||||
# PiShrink #
|
# PiShrink #
|
||||||
PiShrink is a bash script that automatically shrink a pi image that will then resize to the max size of the SD card on boot. This will make putting the image back onto the SD card faster and the shrunk images will compress better.
|
PiShrink is a bash script that automatically shrink a pi image that will then resize to the max size of the SD card on boot. This will make putting the image back onto the SD card faster and the shrunk images will compress better.
|
||||||
In addition the shrinked image can be compressed with gzip, pigz, xz or pxz to create an even smaller image.
|
In addition the shrinked image can be compressed with gzip and xz to create an even smaller image. Parallel compression of the image
|
||||||
|
using multiple cores is supported.
|
||||||
|
|
||||||
## Usage ##
|
## Usage ##
|
||||||
```
|
```
|
||||||
sudo pishrink.sh [-sdirzh] imagefile.img [newimagefile.img]
|
Usage: $0 [-sdiarpzZvh] imagefile.img [newimagefile.img]
|
||||||
|
|
||||||
-s Don't expand filesystem when image is booted the first time
|
-s Don't expand filesystem when image is booted the first time
|
||||||
-d Write debug messages in a debug log file
|
-d Write debug messages in a debug log file
|
||||||
-r Use advanced filesystem repair option if the normal one fails
|
-r Use advanced filesystem repair option if the normal one fails
|
||||||
-p Remove logs, apt archives, dhcp leases and ssh hostkeys
|
-p Remove logs, apt archives, dhcp leases and ssh hostkeys
|
||||||
-v Be verbose
|
-v Be verbose
|
||||||
-z Compress image after shrinking
|
-z Compress image after shrinking with gzip
|
||||||
-i TOOL Zip tool to use to compress image. TOOLS can be one of $ZIPTOOLS (Default: gzip)
|
-Z Compress image after shrinking with xz
|
||||||
-a Use parallel compress feature of compression tool
|
-a Compress image in parallel using multiple cores
|
||||||
```
|
```
|
||||||
|
|
||||||
If you specify the `newimagefile.img` parameter, the script will make a copy of `imagefile.img` and work off that. You will need enough space to make a full copy of the image to use that option.
|
If you specify the `newimagefile.img` parameter, the script will make a copy of `imagefile.img` and work off that. You will need enough space to make a full copy of the image to use that option.
|
||||||
|
@ -22,9 +24,9 @@ If you specify the `newimagefile.img` parameter, the script will make a copy of
|
||||||
* `-d` will create a logfile `pishrink.log` which may help for problem analysis.
|
* `-d` will create a logfile `pishrink.log` which may help for problem analysis.
|
||||||
* `-r` will attempt to repair the filesystem if regular repairs fail
|
* `-r` will attempt to repair the filesystem if regular repairs fail
|
||||||
* `-z` will compress the image after shrinking using gzip or xz. Default is `gzip`. `.gz` or `.xz` extension will be added to the filename.
|
* `-z` will compress the image after shrinking using gzip or xz. Default is `gzip`. `.gz` or `.xz` extension will be added to the filename.
|
||||||
* `-a` will use option -f9 for gzip and option -T0 for xz.
|
* `-a` will use option -f9 for pigz and option -T0 for xz.
|
||||||
|
|
||||||
Default options for parallel compression can be overwritten by defining PISHRINK_GZIP or PSHRINK_XZ environment variable.
|
Default options for parallel compression can be overwritten by defining PISHRINK_GZIP or PSHRINK_XZ environment variables.
|
||||||
|
|
||||||
## Prerequisites ##
|
## Prerequisites ##
|
||||||
If you are trying to shrink a [NOOBS](https://github.com/raspberrypi/noobs) image it will likely fail. This is due to [NOOBS partitioning](https://github.com/raspberrypi/noobs/wiki/NOOBS-partitioning-explained) being significantly different than Raspbian's. Hopefully PiShrink will be able to support NOOBS in the near future.
|
If you are trying to shrink a [NOOBS](https://github.com/raspberrypi/noobs) image it will likely fail. This is due to [NOOBS partitioning](https://github.com/raspberrypi/noobs/wiki/NOOBS-partitioning-explained) being significantly different than Raspbian's. Hopefully PiShrink will be able to support NOOBS in the near future.
|
||||||
|
|
43
pishrink.sh
43
pishrink.sh
|
@ -8,6 +8,7 @@ MYNAME="${SCRIPTNAME%.*}"
|
||||||
LOGFILE="${CURRENT_DIR}/${SCRIPTNAME%.*}.log"
|
LOGFILE="${CURRENT_DIR}/${SCRIPTNAME%.*}.log"
|
||||||
REQUIRED_TOOLS="parted losetup tune2fs md5sum e2fsck resize2fs"
|
REQUIRED_TOOLS="parted losetup tune2fs md5sum e2fsck resize2fs"
|
||||||
ZIPTOOLS=("gzip xz")
|
ZIPTOOLS=("gzip xz")
|
||||||
|
declare -A ZIP_PARALLEL_TOOL=( [gzip]="pigz" [xz]="xz" ) # parallel zip tool to use in parallel mode
|
||||||
declare -A ZIP_PARALLEL_OPTIONS=( [gzip]="-f9" [xz]="-T0" ) # options for zip tools in parallel mode
|
declare -A ZIP_PARALLEL_OPTIONS=( [gzip]="-f9" [xz]="-T0" ) # options for zip tools in parallel mode
|
||||||
declare -A ZIPEXTENSIONS=( [gzip]="gz" [xz]="xz" ) # extensions of zipped files
|
declare -A ZIPEXTENSIONS=( [gzip]="gz" [xz]="xz" ) # extensions of zipped files
|
||||||
|
|
||||||
|
@ -68,16 +69,16 @@ fi
|
||||||
help() {
|
help() {
|
||||||
local help
|
local help
|
||||||
read -r -d '' help << EOM
|
read -r -d '' help << EOM
|
||||||
Usage: $0 [-sdiarpzvh] imagefile.img [newimagefile.img]
|
Usage: $0 [-sdarpzZvh] imagefile.img [newimagefile.img]
|
||||||
|
|
||||||
-s Don't expand filesystem when image is booted the first time
|
-s Don't expand filesystem when image is booted the first time
|
||||||
-d Write debug messages in a debug log file
|
-d Write debug messages in a debug log file
|
||||||
-r Use advanced filesystem repair option if the normal one fails
|
-r Use advanced filesystem repair option if the normal one fails
|
||||||
-p Remove logs, apt archives, dhcp leases and ssh hostkeys
|
-p Remove logs, apt archives, dhcp leases and ssh hostkeys
|
||||||
-v Be verbose
|
-v Be verbose
|
||||||
-z Compress image after shrinking
|
-z Compress image after shrinking with gzip
|
||||||
-i TOOL Zip tool to use to compress image. TOOLS can be one of $ZIPTOOLS (Default: gzip)
|
-Z Compress image after shrinking with xz
|
||||||
-a Use parallel compress feature of compression tool
|
-a Compress image in parallel using multiple cores
|
||||||
EOM
|
EOM
|
||||||
echo "$help"
|
echo "$help"
|
||||||
exit -1
|
exit -1
|
||||||
|
@ -86,11 +87,10 @@ EOM
|
||||||
should_skip_autoexpand=false
|
should_skip_autoexpand=false
|
||||||
debug=false
|
debug=false
|
||||||
repair=false
|
repair=false
|
||||||
compress=false
|
|
||||||
parallel=false
|
parallel=false
|
||||||
verbose=false
|
verbose=false
|
||||||
prep=false
|
prep=false
|
||||||
ziptool="gzip"
|
ziptool=""
|
||||||
required_tools="$REQUIRED_TOOLS"
|
required_tools="$REQUIRED_TOOLS"
|
||||||
|
|
||||||
while getopts ":adhipr:svz" opt; do
|
while getopts ":adhipr:svz" opt; do
|
||||||
|
@ -98,11 +98,11 @@ while getopts ":adhipr:svz" opt; do
|
||||||
a) parallel=true;;
|
a) parallel=true;;
|
||||||
d) debug=true;;
|
d) debug=true;;
|
||||||
h) help;;
|
h) help;;
|
||||||
i) ziptool="$OPTARG";;
|
|
||||||
p) prep=true;;
|
p) prep=true;;
|
||||||
r) repair=true;;
|
r) repair=true;;
|
||||||
s) should_skip_autoexpand=true ;;
|
s) should_skip_autoexpand=true ;;
|
||||||
z) compress=true;;
|
z) ziptool="gzip";;
|
||||||
|
Z) ziptool="xz";;
|
||||||
v) verbose=true;;
|
v) verbose=true;;
|
||||||
*) help;;
|
*) help;;
|
||||||
esac
|
esac
|
||||||
|
@ -137,13 +137,17 @@ if (( EUID != 0 )); then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check selected compression tool is supported and installed
|
# check selected compression tool is supported and installed
|
||||||
if [[ $compress == true ]]; then
|
if [[ -n $ziptool ]]; then
|
||||||
if [[ ! " ${ZIPTOOLS[@]} " =~ " $ziptool " ]]; then
|
if [[ ! " ${ZIPTOOLS[@]} " =~ " $ziptool " ]]; then
|
||||||
error $LINENO "$ziptool is an unsupported ziptool."
|
error $LINENO "$ziptool is an unsupported ziptool."
|
||||||
exit -17
|
exit -17
|
||||||
|
else
|
||||||
|
if [[ $parallel == true && ziptool == "gzip" ]]; then
|
||||||
|
REQUIRED_TOOLS="$REQUIRED_TOOLS pigz"
|
||||||
else
|
else
|
||||||
REQUIRED_TOOLS="$REQUIRED_TOOLS $ziptool"
|
REQUIRED_TOOLS="$REQUIRED_TOOLS $ziptool"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Check that what we need is installed
|
#Check that what we need is installed
|
||||||
|
@ -340,23 +344,24 @@ if ! truncate -s "$endresult" "$img"; then
|
||||||
exit -16
|
exit -16
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $compress == true ]]; then
|
if [[ -n $ziptool ]]; then
|
||||||
options=""
|
options=""
|
||||||
envVarname="${MYNAME^^}_${ziptool^^}"
|
envVarname="${MYNAME^^}_${ziptool^^}" # PISHRINK_GZIP or PISHRINK_XZ environment variables allow to override options
|
||||||
|
[[ $parallel == true ]] && options="${ZIP_PARALLEL_OPTIONS[$ziptool]}"
|
||||||
|
[[ -v $envVarname ]] && options="${!envVarname}" # if environment variable defined use these options
|
||||||
|
[[ $verbose == true ]] && options="$options -v" # add verbose flag
|
||||||
|
|
||||||
if [[ $parallel == true ]]; then
|
if [[ $parallel == true ]]; then
|
||||||
options="${ZIP_PARALLEL_OPTIONS[$ziptool]}"
|
parallel_tool="${ZIP_PARALLEL_TOOL[$ziptool]}"
|
||||||
[[ -v $envVarname ]] && options="${!envVarname}"
|
info "Using $parallel_tool on the shrunk image"
|
||||||
[[ $verbose == true ]] && options="$options -v"
|
if ! $parallel_tool ${options} "$img"; then
|
||||||
info "Using $ziptool on the shrunk image using options ${options}"
|
|
||||||
if ! $ziptool ${options} "$img"; then
|
|
||||||
rc=$?
|
rc=$?
|
||||||
error $LINENO "$ziptool failed with rc $rc"
|
error $LINENO "$parallel_tool failed with rc $rc"
|
||||||
exit -18
|
exit -18
|
||||||
fi
|
fi
|
||||||
|
|
||||||
else # sequential
|
else # sequential
|
||||||
info "Using $ziptool on the shrunk image"
|
info "Using $ziptool on the shrunk image"
|
||||||
[[ -v $envVarname ]] && options="${!envVarname}"
|
|
||||||
[[ $verbose == true ]] && options="$options -v"
|
|
||||||
if ! $ziptool ${options} $img; then
|
if ! $ziptool ${options} $img; then
|
||||||
rc=$?
|
rc=$?
|
||||||
error $LINENO "$ziptool failed with rc $rc"
|
error $LINENO "$ziptool failed with rc $rc"
|
||||||
|
|
Loading…
Reference in New Issue