Я изменил
/etc/xdg/lxsession/LXDE-pi/autostart
/etc/xdg/lxsession/LXDE/autostart
/etc/rc.local
/home/pi/.config/lxsession/LXDE-pi/autostart
на автозапуск test.py в / home / pi, и мой raspberrypi не показывает LXDE
Я пытался изменить / etc / r c .local сначала, и мой test.py не запускался автоматически при перезагрузке raspberrypi, поэтому я изменил / etc / xdg / lxsession / LXDE-pi / autostart , / etc / xdg / lxsession / LXDE / autostart , / home / pi / .config / lxsession / LXDE-pi / autostart . и когда я перезагружаюсь, мой экран весь затемняется без моего курсора мыши и предупреждения о пароле
Я думаю, что я где-то испортил настройки и не знаю, что не так
вот содержание
/etc/xdg/lxsession/LXDE-pi/autostart
@lxpanel --profile lXDE-pi
@pcmanfm --desktop --profile LXDE-pi
@lxterminal -e python /home/pi/test.py
@xscreensaver -no-splash
point-rpi
/etc/xdg/lxsession/LXDE/autostart
@lxpanel --profile LXDE
@pcmanfm --desktop --profile LXDE
@lxteminal
@xscreensaver -no-splash
/etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel
# Make sure that the script will "exit 0" on success or ant other
# value on error
# In order to enable or disable this script just change the excution
# bits.
# By default this script does nothing
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IPaddress is %s\n" "$_IP"
fi
exit 0
/home/pi/.config/lxsession/LXDE-pi/autostart
@lxpanel -profile LXDE-pi
@pcmanfm --desktop -profile LXDE-pi
@xcreesnsaver -no-splash