Putty:
sudo nano /etc/ssh/sshd_config
changer permitrootlogin without-password
pour permitrootlogin yes , ctrl X – Enter
command: sudo passwd root
set password: raspberry
confirm, raspberry
sudo reboot
WINSCP root login: in the ” /etc/ ” folder drop the image ” splash.png ”
full screen resolution: 1920×1080
Putty command: ” sudo nano ”
Code:
#! /bin/sh
### BEGIN INIT INFO
# Provides: asplashscreen
# Required-Start:
# Required-Stop:
# Should-Start:
# Default-Start: S
# Default-Stop:
# Short-Description: Show custom splashscreen
# Description: Show custom splashscreen
### END INIT INFO
do_start () {
/usr/bin/fbi -T 1 -noverbose -a /etc/splash.png
exit 0
}
case “$1″ in
start|””)
do_start
;;
restart|reload|force-reload)
echo “Error: argument ‘$1’ not supported” >&2
exit 3
;;
stop)
# No-op
;;
status)
exit 0
;;
*)
echo “Usage: asplashscreen [start|stop]” >&2
exit 3
;;
esac
:
Control X and save file: /etc/init.d/asplashscreen
Enter Replace YES
launch the script:
sudo chmod a+x /etc/init.d/asplashscreen
sudo insserv /etc/init.d/asplashscreen
Done – sudo reboot