在 Raspberry PI 2 上使用 Ubuntu MATE 15.04 引导至 shell

Boot to shell with Ubuntu MATE 15.04 on Raspberry PI 2

是否可以启动到终端?我试图寻找 grub 文件,但找不到。另外 /boot/firmware/config.txt 似乎没有这样的选项。

感谢 Rohith MadhavanAceFaceUbuntu-mate bitbucket issues:

您可以使用以下命令启动至 shell:

systemctl set-default multi-user.target --force
systemctl disable lightdm.service --force
systemctl disable graphical.target --force
systemctl disable plymouth.service --force

disable 替换为 enable 以再次使用 GUI 启动。

建议的解决方案不适用于 Ubuntu MATE 16.04,"Welcome" 应用程序提到了 non-existent "graphical" 命令。以下对我有用:

#!/bin/bash

if [[ "" == 'enable' || "" == 'disable' ]]; then
    if [ "" == 'disable' ]; then
        systemctl set-default multi-user.target --force
    fi

    systemctl  lightdm.service --force
    systemctl  graphical.target --force
    systemctl  plymouth.service --force

    if [ "" == 'enable' ]; then
        if [ ! -h /etc/systemd/system/display-manager.service ]; then
            ln -s /lib/systemd/system/lightdm.service /etc/systemd/system/display-manager.service
        fi

        systemctl set-default graphical.target --force
    fi
else
    echo 'Enables or disables GUI at boot.'
    echo "Usage : $(basename) {enable | disable}"
fi