在命令環境下執行如下命令:
#更新軟體庫
sudo apt-get update
#公升級軟體
sudo apt-get upgrade
#安裝ubuntu桌面系統
#安裝時間有點長,需要耐心等待。
sudo apt-get install ubuntu-desktop
reboot重啟後發現桌面環境不能使用root賬戶登入.
#重啟然後使用ctrl + alt + f1 進入命令列使用root登陸
#執行命令
#開啟50-ubuntu.conf
sudo vi /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
#在末尾新增
#允許切換使用者登陸
greeter-show-manual-login=true
#禁用guest
allow-guest=false
完整**
[seat:*]
user-session=ubuntu
greeter-show-manual-login=true
allow-guest=false
`儲存重啟(在vi模式下編輯完成後使用esc鍵切換到末行模式,然後輸入:wq退出編輯)發現root使用者登陸後還是有警告`
修改/root/.profile檔案 (圖形介面下修改請勾選顯示隱藏檔案)
將mesg n 替換為 tty -s && mesg n
完整**
# ~/.profile: executed by bourne-compatible login shells.
if [ "$bash" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fifi
tty -s && mesg n || true
儲存後重啟即可完美在桌面環境登陸root ubuntu 18 0 安裝GUI頁面 Gnome
推廣 通常情況下ubuntn 有兩種版本,乙個是帶gui 也就是安裝桌面的。還有一種就是純命令列模式。如果我們安裝的是純命令模式,但是之後又由於需求,需要安裝介面時,該怎麼做呢?通過xshell 等遠端工具 進入到命令列模式,並且獲取sudo 許可權。如果是root 賬戶登入,那麼就不用新增sudo...
Ubuntu18 0安裝搜狗輸入法
先安裝fcitx 然後安裝搜狗安裝包 sudo dpkg i sogoupinyin 2.2.0.0108 amd64.deb通常會報錯 sogoupinyin 依賴於 libfcitx qt0 fcitx libs qt 然而 未安裝軟體包 libfcitx qt0。未安裝軟體包 fcitx li...
ubuntu18 0下VSCode配置C 環境
下面注釋一下那些,明白具體意義且自定義時比較重要的引數,有些引數感覺官方文件也解析的不太清楚。可能要改的標頭檔案路徑1 defines compilerpath usr bin gcc 可能要改的標頭檔案路徑2 cstandard c11 cppstandard c 17 intellisensem...