Xubuntu VNC Xfce4

sudo mousepad ~/.vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
# exec /etc/X11/xinit/xinitrc
startxfce4 &

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncserver -kill :1
vncserver
时间: 2024-12-14 04:47:11

Xubuntu VNC Xfce4的相关文章

Ubuntu 14.04 配置VNC服务 配置Xfce4桌面

一.安装配置VNC 1.首先安装VNC apt-get install vnc4server 2.为VNC设置密码 vncpasswd 输入密码,然后再确认一遍,就OK了. 3.启动VNC vncserver :1 New 'node1:1 (root)' desktop is node1:1 Starting applications specified in /root/.vnc/xstartup Log file is /root/.vnc/node1:1.log 启动成功. 二.客户端连

解决VNC中tab键无效的方法

http://ubuntuforums.org/archive/index.php/t-1771058.html I accidentally discovered a fix for this while trying to solve a different problem.edit~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xmlfind the line <property name="&l

Ubuntu 16.04配置VNC进行远程桌面连接

说明:其实要装VNC还不如装个Teamview来的快一些,并且全平台支持. 1.安装 $sudo apt-get install xfce4 $sudo apt-get install vnc4server $sudo apt-get install xrdp   2.启动vncserver,初始化 vncserver #启动vncserver,第一次需要输入设置登录密码 如果密码忘记了,可以进去~/.vnc/目录删除password文件即可. 3.修改配置文件xstartup sudo ged

ubuntu安装VNC、Xfce桌面

1.首先安装xfce桌面环境 sudo apt-get -y install xfce4 2.安装vncserver sudo apt-get -y install vnc4server 2.设置访问密码 vncserver 根据提示输入两次密码 3.设置属性 vi ~/.vnc/xstartup 在“#x-window-manager &”下面添加 startxfce4 & 修改后如下(供参考) #!/bin/sh xrdb $HOME/.Xresources xsetroot -sol

Ubuntu server配置远程VNC服务

[email protected]:~# cat /etc/issue Ubuntu 12.04 LTS \n \l 需求:现在需要远程连接Ubuntu的图形界面,因为有一个程序是需要使用图形界面配置的. 默认情况下,Ubuntu server是没有图形界面的,使用Xmanager远程连接Ubuntu,连接完成后,本来想使用Xmanager自带的功能,来实现弹出一个图形界面的,但是不管怎么弹,该程序就是弹不出来,很纠结,用Xclock测试,是可以的.只能另行它法. 以前配置VNC,都是在RedH

VNC ( Virtual Network Computing )

VNC is used to display an X windows session running on another computer. Unlike a remote X connection, the xserver is running on the remote computer, not on your local workstation. Your workstation ( Linux or Windows ) is only displaying a copy of th

我是如何将Bandwagonhost VPS安装VNC实现远程链接打开FireFox火狐浏览器

我们选择和使用便宜VPS主机并不都是用来搭建网站WEB环境建站使用的,在很多时候我们可以将Linux系统安装模拟Windows桌面实现需要 在Windows系统中才能执行的任务项目.但是,由于Windows服务器较少而且成本高,所以我们会依托Linux VPS主机实现.看到不少的网友在群里讨论如何将Linux VPS安装远程桌面的技术,这里我考虑到可以安装VNC.部署Window系统. 一般而言,搭建VNC远程桌面链接还是比较简单的,如果是要直接安装Windows系统得需要服务器支持,至少是要K

ubuntu vnc install

windows & ubuntu http://www.jb51.net/os/Ubuntu/104948.html ubuntu & ubuntu https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-14-04 sudo apt-get update sudo apt-get install xfce4 xfce4-goodies tightvncserve

linux 下 VNC Server安装配置及 eclipse CDT C/C++ 开发环境搭建(我用的是阿里云服务器 ubuntu 12.04 64-bit,无图形化界面)

linux 下 VNC Server安装配置及 eclipse CDT C/C++ 开发环境搭建(我用的是阿里云服务器 ubuntu 12.04 64-bit,无图形化界面): 既然要用 eclipse 可视环境下开发,那首先要安装图形界面喽!!! 对开发者来说,个人认为 linux 选择界面优先选择顺序:Awesome(性能最好) > Xfce4 > gnome > unity-2d //////////////////////////////////////////////// 首先