Debian

我如何在 Debian 上安裝 gnome 並遠端安裝它?

  • July 3, 2010

我有一個已經啟動並執行了一段時間的 debian 伺服器,我通過 putty 訪問它,它工作得很好,但是我想添加一個 gui 來讓事情看起來更漂亮,讓我更容易管理我的伺服器(什麼我可以說-我是在窗戶下長大的……)。我可以僅通過膩子訪問來做到這一點嗎?我需要安裝 VNC 或類似遠端的東西,因為它放在壁櫥裡。我想這樣做而不必關閉機器、搬到另一個房間、連接顯示器等。我可以從命令行完成這一切嗎?如果是這樣怎麼辦?

我要描述的方式是使用 GDM自動登錄,如果有人可以物理訪問機器,這可能是不安全的。

首先安裝Gnome、gdm、vinoxorg

apt-get install gnome gdm xorg vino

然後在 gdm 中啟動自動登錄,編輯**/etc/gdm/custom.conf**並添加:

AutomaticLoginEnable=true
AutomaticLogin=yourusername

重啟。

然後 ssh 作為你的使用者名進入機器,然後輸入:

DISPLAY=:0.0
gconftool-2 --type list --list-type string --set /desktop/gnome/remote_access/authentication_methods '[vnc]'
gconftool-2 -s -t bool /desktop/gnome/remote_access/prompt_enabled false
vino-passwd
gconftool-2 -s -t bool /desktop/gnome/remote_access/enabled true

重啟。

然後嘗試使用 VNC 連接到您的機器。

引用自:https://serverfault.com/questions/157220