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


Week 10 Assignments #3: Modules

tail -f /var/log/kern.log | grep --line-buffered ' ZCZC ' | tee WEEK10-KERNEL-LOG.txt

for i in $(seq 18); do echo $(($i-1)) $(($(cat /proc/sys/kernel/tainted)>>($i-1)&1));done

MODLOG="/tmp/WEEK10-MODULE-LOG.txt"
RESULT="$HOME/SP_RESULT/W10"
[ -d $RESULT/ ] || mkdir -pv $RESULT/
if [ -f $MODLOG  ] ; then
  cp -v $MODLOG $RESULT/
  cd $RESULT/
  ls -al
else
  echo "No $MODLOG File!"
fi



HOME ABOUT WEB GITHUB TOP BOTTOM PREV NEXT