Knoppix start sshd daemon at systemStart

---

http://www.knoppixforum.de/knoppix-forum-deutsch/netzwerk/thread4280/gel%C3%B6st-sshd-startet-nicht-automatisch.html

#!/bin/bash
#
# rc.local
#
# Start local services after hardware detection

SERVICES=”cups ssh”

for i in $SERVICES; do
[ -x /etc/init.d/”$i” ] && /etc/init.d/”$i” start >/dev/null 2>&1
done

sudo /usr/sbin/sshd

exit 0

vorher noch ein passwd für knoppix setzen 😉

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>