如何设置我的Raspberry Pi引导进入GUI?


43

从上一个问题开始,我问角落的电源按钮有什么作用。然后有人说,如果您自动启动到GUI,它将为您提供一些选择。

如何在启动时启动到GUI?


您可以扩展使用的发行版吗?
kolin

阅读这篇文章,其中介绍了如何自动登录和自动启动桌面opentechguides.com/how-to/article/raspberry-pi/5/...

Answers:


60

假设您正在使用Raspbian,则实际上很简单。只需打开终端,然后输入以下内容:

sudo raspi-config

应显示以下窗口

配置画面

导航到boot_behaviour并单击Enter。这样可以使GUI界面自动启动。


只是一个细节:我feeb试图切换,从启动到GUI来引导到外壳,失败了。也许我从过时的Raspbian图像开始...
Phlip

10

如果您使用的是Arch Linux,请安装X11服务器。首先按照《Archlinux入门指南》中的步骤进行操作。并安装您喜欢的WM。

  1. 将此行添加到您的~/.xinitrc

    #!/bin/sh
    #
    # ~/.xinitrc
    #
    # Executed by startx (run your window manager from here)
    
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
       for f in /etc/X11/xinit/xinitrc.d/*; do
        [ -x "$f" ] && . "$f"
       done
       unset f
    fi
    exec openbox-session ## I'm using window manager Openbox (<https://en.wikipedia.org/wiki/Openbox>)
    #exec awesome
    
  2. 登录时启动X。~/.bash_profile如果使用,请在下面添加以下内容bash。或者,~/.zprofile如果您正在使用zsh在Arch Linux Wiki上查看更多信息

    [[-z $ DISPLAY && $ XDG_VTNR -eq 1]] && exec startx


请注意,这也适用于树莓派。xxmbabanexx的答案对我不起作用(我认为是因为我有一个.xinitrc?),但我添加exec startx~/.profile该功能,现在可以使用了。
Cosine
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.