diff options
author | Eric Hameleers <alien@slackware.com> | 2017-11-22 22:44:39 +0100 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2017-11-22 22:44:39 +0100 |
commit | 479fb8ac181567dc3a292eb89b89abb9da8e6051 (patch) | |
tree | eaea8c91b72bea19db2834170944938880194cf2 | |
parent | a4f250b078dddb54b40cb77781e91ec37445975d (diff) | |
download | liveslak-479fb8ac181567dc3a292eb89b89abb9da8e6051.tar.gz liveslak-479fb8ac181567dc3a292eb89b89abb9da8e6051.tar.xz |
Show information about CDROM and DVD media sizes at the end
This way you can check in a pinch whether your new ISO will fit or not.
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index 6d0103c..df19d29 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -797,6 +797,8 @@ create_iso() { > "$(basename "${OUTFILE}")".md5 cd - 1>/dev/null echo "-- Live ISO image created:" + echo " - CDROM max size is 737.280.000 bytes (703 MB)" + echo " - DVD max size is 4.706.074.624 bytes (4.38 GB aka 4.7 GiB)" ls -l "${OUTFILE}"* } # End of create_iso() |