From 16505439f834f2f5f901866378a4b56ac8c3733c Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 23 Mar 2021 17:20:59 -0500 Subject: Fix some issues with backup file location and use /home/kb0iic variable and use -T in front of NUMPROCS for XZ_OPTS. --- chapter6/backup.sh | 2 +- chapter6/cleanup.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'chapter6') diff --git a/chapter6/backup.sh b/chapter6/backup.sh index 0f474d6..0cbd314 100644 --- a/chapter6/backup.sh +++ b/chapter6/backup.sh @@ -9,7 +9,7 @@ else echo -ne "${GRN}Backing up ${YLW}${LFS}${GRN} to ${YLW}${FILE}${RST}... " pushd "${LFS}" > /dev/null || exit 1 - sudo XZ_OPTS="${NUMPROCS} -e" tar -cJpf /home/"${USER}"/"${FILE}" "${DIRS}" & pid=$! + sudo XZ_OPTS="-T${NUMPROCS} -e" tar -cJpf "${HOME}"/"${FILE}" "${DIRS}" & pid=$! spinner "$pid" retval=$? if [ "$retval" -ne 0 ]; then diff --git a/chapter6/cleanup.sh b/chapter6/cleanup.sh index abe4b0a..8d31264 100644 --- a/chapter6/cleanup.sh +++ b/chapter6/cleanup.sh @@ -9,9 +9,9 @@ else find "${LFS}"/usr/lib -name \*.la -delete >/dev/null 2>&1 find "${LFS}"/usr/libexec -name \*.la -delete >/dev/null 2>&1 - rm -rf /usr/share/doc >/dev/null 2>&1 - rm -rf /usr/share/info >/dev/null 2>&1 - rm -rf /usr/share/man >/dev/null 2>&1 + rm -rf "${LFS}"/usr/share/doc >/dev/null 2>&1 + rm -rf "${LFS}"/usr/share/info >/dev/null 2>&1 + rm -rf "${LFS}"/usr/share/man >/dev/null 2>&1 strip --strip-debug "${LFS}"S/usr/lib/* >/dev/null 2>&1 strip --strip-unneeded "${LFS}"/usr/bin/* >/dev/null 2>&1 -- cgit v1.2.3-54-g00ecf