阿里云更换成Ubuntu系统之后执行执行以下命令安装桌面
1.gnome 桌面环境安装与配置
安装x-windows的基础
sudo apt-get install x-window-system-core
安装登录管理器
sudo apt-get install gdm
安装Ubuntu的桌面
sudo apt-get install ubuntu-desktop
安装gnome配套软件
sudo apt-get install gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal
接下来打开putty软件,自行百度下载
在红色框中输入阿里云ip地址点击open,输入管理员账号密码登陆
登陆之后输入以下命令进入配置文件中修改
cd /usr/share/lightdm/lightdm.conf.d
chmod 777 50-ubuntu.conf
vi 50-ubuntu.conf
#文件 /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
修改完文件之后,如上图执行reboot,重启服务器。重启之后就可以用root用户登录,但是登录后还是有警告,这个需要修改 /root/.profile 文件。
vi .profile
#文件 /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
再执行 reboot 命令,重启服务器,重启之后,只有root用户,登录后也没有警告信息了。
进入系统后在终端或者在上面那软件继续输入以下两行命令就可以更换成中文了
sudo localectl set-locale LANGUAGE=zh_CN.utf8
sudo localectl set-locale LANG=zh_CN.utf8
关键字可以自动补全
重启后生效,相应的也可以修改为英文,就是后面的赋值时en开头的
2.VNC的安装与配置
安装之前先输入
apt-get update
获取最新套件的信息。
输入以下命令安装VNC,安装过程中需要输入Y来确认
apt-get install vnc4server
启动VNC
vncserver
并设置密码
看到 New ‘iZbp1idfrdpf1c3its2hpkZ:1 (root)’ desktop is iZbp1idfrdpf1c3its2hpkZ:1字样的时候,说明启动成功。
修改VNC配置文件
vi ~/.vnc/xstartup
修改为
#!/bin/sh
#Uncomment the following two lines for normal desktop:
export XKL_XMODMAP_DISABLE=1
unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
unset DBUS_SESSION_BUS_ADDRESS
gnome-panel &
gnmoe-settings-daemon &
metacity &
nautilus &
gnome-terminal &
杀掉原桌面进程,输入命令(其中的:1是桌面号):
vncserver -kill :1
输入以下命令生成新的会话:
vncserver :1
开启VNC服务需要用到的5900和5901端口,具体可查看防火墙功能说明。
本地使用VNC连接
本地安装VNC后,使用ip地址:1的方式连接
输入之前设置的VNC密码后点击连接
连接成功即可看到Ubuntu桌面的界面了