最近给ubuntu安装gnome环境搞得一头雾水,还有官方的源不要改动,不然会出现啥找不到依赖之类的问题很头疼,网上搜的apt-get源尽管速度快,但是有些东西找不到,建议新手用不要随意更改源。
最简单的安装gnome只需要两条命令
apt-get install x-window-system-core
apt-get install gnome
不过会装出gnome的几个版本,什么经典版之类的,如果需要定制安装只能从gnome-core开始,安装了下水平不够装得乱起八糟的,出的问题很多。
上述桌面安装上了,浏览器乱码问题没有解决,最后还是回到unity桌面
apt-get install ubuntu-desktop
这样就不会出现乱码了,不过装得东西比较多,
安装vnc4server
使用的是unity桌面
vncpasswd 设置密码
apt-get install vnc4server
会产生~/vnc/xstartup文件
修改
root@ubuntu:~# cat .vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
gnome-session &
杀死vnc4server先前的进程
ps aux|grep vnc
运行 vnc4server
就可以远程vnc了
在/etc/profile末尾添加 vnc4server 命令,以便自动执行
这样做的问题就是重启了,偶尔本地登录不了只可以vnc远程登录