Wie zum Geier bekomme ich den SSH-Zugang?
Code: Alles auswählen
#/etc/init.d/ssh start
Open BSD Secure Shell Server not in use (/etc/ssh/sshd_not_to_be_run)
#
Code: Alles auswählen
#/etc/init.d/ssh start
Open BSD Secure Shell Server not in use (/etc/ssh/sshd_not_to_be_run)
#
Code: Alles auswählen
check_for_no_start() {
# forget it if we're trying to start, and /etc/ssh/sshd_not_to_be_run exists
if [ -e /etc/ssh/sshd_not_to_be_run ]; then
echo "OpenBSD Secure Shell server not in use (/etc/ssh/sshd_not_to_be_run)"
exit 0
fi
}