Jep, eli tässä kohtaa tulee Dapperin bootissa "fail". En tiedä liittyykö nämä asiat toisiinsa, mutta työpöydälle on alkanut ilmestyä pikakuvakkeita sekä NTFS-asemaan, että Linuxin juurihakemistoon. Niitä ei voi edes poistaa, sillä silloin alkaa tapahtua jotain erikoista tiedostojen siirtelyä, jonka en antanut kovin kauan jatkua. Tässä tuloksia /etc/init.d/dns-clean:istä, jota kehotettiin tutkimaan.
#! /bin/sh
# $Id: dns-clean,v 1.1.1.1 2004/05/07 03:12:59 john Exp $
# dns-clean by John Hasler 1999-2003
# Any possessor of a copy of this program may treat it as if it
# were in the public domain. I waive all rights.
# This script should be run at bootup to clean up any mess left by 0dns-up.
# It should be run before ppp is started.
# It should never be run while ppp is up.
PATH=/sbin:/bin:/usr/sbin:/usr/bin
test -f /usr/sbin/pppconfig || exit 0
test -f /etc/ppp/ip-down.d/0dns-down || exit 0
. /lib/lsb/init-functions
case "$1" in
start)
log_begin_msg "Restoring resolver state..."
/etc/ppp/ip-down.d/0dns-down "0dns-clean"
log_end_msg $?
;;
stop|restart|force-reload)
;;
*)
;;
esac
exit 0