私はDebian 9を使用しています。 Gnomeをインストールした後、コンピュータの画面にはマウスカーソルだけが表示されます。 Gnomeを削除してX11を有効にしましたが、動作しません。私が使用している開発ボードにSSHを介して接続して入る必要があります。
> startx
画面に画像をインポートするには。 gnomeをインストールするときに何かを台無しにした可能性があります。
修正する:
apt install gdm
動作しません:
root@linaro-alip:~# apt install gdm
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package gdm is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is
only available from another source However the following packages replace
it: libgdm1 cinnamon-control-center-data
E: Package 'gdm' has no installation candidate
アップデート2:
dpkg-reconfigure lightdm
>> lightdmを手動で選択します
root@linaro-alip:~# systemctl enable lightdm
Synchronizing state of lightdm.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable lightdm
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
4) In case of template units, the unit is meant to be enabled with some
instance name specified.
問題はまだ解決されていません。
次のコマンドを使用すると、ファイルが存在しないことがわかります。この問題をどのように解決できますか?
update-rc.d '/etc/init.d/xserver start' defaults
update-rc.d: error: initscript does not exist: /etc/init.d//etc/init.d/xserver start
ベストアンサー1
グラフィカル環境を手動で起動できるため、グラフィカルログイン画面(通常はGnomeシステムのGDM)が見つからないか、自動的に起動しない可能性があります。
root
次のコマンド(プレフィックスを適切に指定)を実行してインストールして有効にしてみてくださいsudo
。
apt install gdm
コマンドからインストールされたことを示すapt install
メッセージが表示されたら、そのコマンドを残して他のコマンドを続行します。gdm
gdm
コマンドでパッケージが利用できないというメッセージが表示された場合は、以下を試してくださいlightdm
。
apt install lightdm
dpkg-reconfigure lightdm
その後、起動して起動しますgdm
(またはlightdm
必要に応じて交換)。
systemctl enable gdm
systemctl start gdm
このコマンドが有効な場合はログインが開始されます。コンソールを開き(または戻る)(root
再)入力します。
systemctl set-default graphical.target
起動時にグラフィカルログインを有効にします。
コマンドが失敗した場合systemctl start gdm
(ログイン画面が表示されない)、まずgnome自体を再インストールしてください。
apt install --reinstall gnome
行の次のコマンドに進みます。