阿裏雲ECS服務器環境搭建(1) —— ubuntu 16.04 圖形界面的安裝
1. 背景
下面,看看我是怎麼把毛坯房精裝起來吧。2. 環境
- 阿裏雲 ECS服務器 (4核 8G 4M)
- Ubuntu16.04-64-bit 純淨版
- putty-64bit-0.70-installer (遠程終端工具)
3. 詳細步驟
3.1. 安裝putty
3.2. 安裝步驟
- 執行下面的命令。 或者打包成一個sh腳本文件,方法是:把它複制到服務器上任何一個文件中,取名為desktopUpdate.sh,在終端找到該文件所在目錄,執行bash desktopUpdate.sh命令。
#!/bin/bash
# 更新軟件庫
apt-get update
# 升級軟件
apt-get upgrade
# 安裝ubuntu桌面系統
apt-get install ubuntu-desktop
- 運行過程需要手動確認兩次,選擇 Y。
- 安裝完成之後,終端輸入 reboot,重啟服務器。
3.3. 配置root帳號
# 文件 /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
# 修改前
[Seat:*]
user-session=ubuntu
# 修改後
[Seat:*]
user-session=ubuntu
greeter-show-manual-login=true
allow-guest=false
# 文件 /root/.profile
# 文件修改前
# ~/.profile: executed by Bourne-compatible login shells.
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi
mesg n || true
# 文件修改後
# ~/.profile: executed by Bourne-compatible login shells.
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi
tty -s && mesg n || true
附錄:Win7 與 Ubuntu16.04 之間利用 WinSCP 進行文件傳輸
- 參考兩篇文章: https://blog.csdn.net/g_ithot/article/details/73002567 https://jingyan.baidu.com/article/ed2a5d1f346fd409f6be179a.html