Hello everybody,
I'm using an Orange Pi Plus 2E, with DietPi Orange Pi Plus image on a 16Gb SD card. I followed the directions at http://dietpi.com/phpbb/viewtopic.php?f=8&t=9#p9 , and selected to install XFCE. I set the Autostart to option '2' (Desktop with Auto-login). After installation and reboot, the device goes straight to console. I tried rebooting several times and confirming the autostart settings. What am I missing here?
Thanks!
DietPi Does Not Boot to Desktop
Re: DietPi Does Not Boot to Desktop
I should say, it does come up when I execute startx. Just doesn't autostart or give any errors.
Re: DietPi Does Not Boot to Desktop
If you find our project or support useful, then we’d really appreciate it if you’d consider contributing to the project however you can.
Donating is the easiest – you can use PayPal or become a DietPi patron.
Donating is the easiest – you can use PayPal or become a DietPi patron.
Re: DietPi Does Not Boot to Desktop
That sounds like it. What's the best way for me to get you a pertinent log?
By the way, congrats on the new baby! And thanks for all the hard work, I'm definitely donating to the effort. I've been around the block on Pi OSs, and this is the most direct/flexible option out there. By a long shot, in my opinion.
By the way, congrats on the new baby! And thanks for all the hard work, I'm definitely donating to the effort. I've been around the block on Pi OSs, and this is the most direct/flexible option out there. By a long shot, in my opinion.
Re: DietPi Does Not Boot to Desktop
Thanks.finchamp wrote:That sounds like it. What's the best way for me to get you a pertinent log?
By the way, congrats on the new baby! And thanks for all the hard work, I'm definitely donating to the effort. I've been around the block on Pi OSs, and this is the most direct/flexible option out there. By a long shot, in my opinion.
I did get this setup for testing today, but baby wasn't having it lol. Will try and take a look at this tomorrow

If you find our project or support useful, then we’d really appreciate it if you’d consider contributing to the project however you can.
Donating is the easiest – you can use PayPal or become a DietPi patron.
Donating is the easiest – you can use PayPal or become a DietPi patron.
Re: DietPi Does Not Boot to Desktop
Looks like I can confirm that the issue exists across environments. LXDE, MATE, and XFCE exhibit exactly the same behavior on clean installs. Other installed software does not seem to have any impact.
Re: DietPi Does Not Boot to Desktop
Hi,finchamp wrote:Looks like I can confirm that the issue exists across environments. LXDE, MATE, and XFCE exhibit exactly the same behavior on clean installs. Other installed software does not seem to have any impact.
Fixed in the next update v155. Can be patched now with the following:
https://github.com/Fourdee/DietPi/issue ... -323332006
If you find our project or support useful, then we’d really appreciate it if you’d consider contributing to the project however you can.
Donating is the easiest – you can use PayPal or become a DietPi patron.
Donating is the easiest – you can use PayPal or become a DietPi patron.
Re: DietPi Does Not Boot to Desktop
Moist excellent! Working here as well on XCFE. Thou art the man!
Re: DietPi Does Not Boot to Desktop
could the command have been added to /etc/rc.local?
Code: Select all
startx
-
- Posts: 1
- Joined: Fri May 29, 2020 4:13 pm
Re: DietPi Does Not Boot to Desktop
Hello!
I have a same issue when I add my custom user. (Not root)
But I could solve that question only some step.
I will give you some tips.
Check /home/YourName/.local/share/xorg/Xorg.3.log
(EE) is Error.
I got error like "[ 4343.663] (EE) open /dev/fb0: Permission denied"
/dev/fb0's group is video, so run
to add youuser could access /dev/fb0.
or if you could not solve
And re-login or reboot, the change will appear!
I hope you could solve your issue!
I have a same issue when I add my custom user. (Not root)
But I could solve that question only some step.
I will give you some tips.
Check /home/YourName/.local/share/xorg/Xorg.3.log
(EE) is Error.
I got error like "[ 4343.663] (EE) open /dev/fb0: Permission denied"
/dev/fb0's group is video, so run
Code: Select all
sudo usermod -aG video yourname
or if you could not solve
Code: Select all
sudo usermod -aG tty,sudo yourname
I hope you could solve your issue!