Operating System Programming 4DISS

(REV358--31-Jan-2024)
Welcome to the Operating System Programming for DISS site. The following is a step-by-step guide to set up a Virtual Debian Guest on VirtualBox. This site has been managed by VauLSMorg since 2020.
This is the WAY!

View on GitHub

HOME ABOUT WEB GITHUB TOP BOTTOM PREV NEXT

ℼ

SP Week 03 Assignment #4: Script Download

Download https://sp.vlsm.org/WEEK/WEEK03.tar.xz.asc

mkdir -pv $HOME/myspwork/
cd $HOME/myspwork/
wget -c https://sp.vlsm.org/WEEK/WEEK03.tar.xz.asc
ls -al

ℼ

Decrypt file WEEK03.tar.xz.asc

gpg -o WEEK03.tar.xz -d WEEK03.tar.xz.asc
ls -al

ℼ

Extract TARBALL

tar xfv WEEK03.tar.xz
cd WEEK03/
ls -al

ℼ

Check Scripts

for II in [0-9][0-9]* ; do
    echo ""
    echo "= === ==== FILE $II..."
    echo "= === ==== ==== ==== ==== ==== ==== ===="
    cat  "$II"
done

ℼ

Run Scripts

bash 00-SP-install-to-bin.sh

bash 01-SP-Version-Check.sh

ℼ

Check RESULT

cd $HOME/SP_RESULT/W03/
ls -al

ℼ

HOME ABOUT WEB GITHUB TOP BOTTOM PREV NEXT