邮件管理程序\远程登录

一、邮件管理程序:Evolution

二、远程登录:

 

windows平台如何使用vncviewer远程登录linux系统:

1.在ubuntu上安装vnc。

     $ sudo apt-get  install vnc4server

(有个vnc4-common包是可选安装的,它包含vncserver和vnc viewer的一些通用功能。关于vnc4-common的具体说明见http://download.gna.org/pdbv/demo_html/demo_2.0.10/package/vnc4-common_4.0-7.html,包含vnc4-common的安装shell命令为:

     $sudo apt-get install vnc4-common vnc4server  )

2、给当前用户设置vnc登录密码:

vncpasswd  

3、启动vncserver,生成.vnc文件和xstartup文件

4、修改.vnc/xstartup文件

打开 .vnc/xstartup 文件并编辑:
    gedit /.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
vnccon** -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &


修改 .vnc/xstartup文件并保存
   

取消unset和exec开始的行的注释,注释以xsetroot,vnccon**,xterm和twm开始的行。执行后看起来像这样:
#!/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
#vnccon** -iconic &
#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &

 

5、配置完毕后,启动vncserver

启动窗口:vncserver:1

6、windows下进行vnc访问 

vnc登录时connection refused(10061)解决方法 

问题:当你在windows上连接Linux上vnc服务器时,点击connect后弹出connect:connect refused(10061)警告框时连接被拒绝。

首先,如果你的VNC配置没有问题并且在linux那边通过service vncserver status查看显示“Xvnc (pid 3644) 正在运行”,表明确实已经启动。

那么原因就是你没有在VNC客户端输入IP地址的时候加上桌面号。没加的话就会出现上面的错误。正确的写法为IP:1
这样就会连接上并提示让你输入密码了! 

posted @ 2017-08-31 11:47  马丝丝  阅读(233)  评论(0编辑  收藏  举报