2

ターミナルから起動できますか?grubファイルを探してみましたが、見つかりませんでした。また、 /boot/firmware/config.txtにはそのようなオプションがないようです。

4

2 に答える 2

6

Ubuntu-mate bitbucket の問題についてRohith MadhavanAceFaceに感謝:

次のコマンドを使用してシェルを起動できます。

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

disableenableに置き換えて、再度 GUI で起動します。

于 2015-07-10T22:29:02.207 に答える
4

提案されたソリューションは Ubuntu MATE 16.04 では機能せず、「ようこそ」アプリケーションは存在しない「グラフィカル」コマンドに言及しています。以下は私のために働いた:

#!/bin/bash

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

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

    if [ "$1" == '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
于 2017-02-14T11:08:09.020 に答える