最新消息:20210816 当前crifan.com域名已被污染,为防止失联,请关注(页面右下角的)公众号

【已解决】用VNC Viewer连接pcDuino中Ubuntu结果出错:connet: Connection refused (10061)

pcDuino crifan 10200浏览 0评论

【问题】

折腾:

【记录】在ssh2可以登陆pcDuino后尝试去用VNC连接并操作pcDuino

期间,遇到的:

run vnc viewer input server ip 107 and port 5900 then connect

结果连接被拒绝了:

vnc connect refuse 10061 pcduino

【折腾过程】

1.貌似需要去开启pcDuino中的ubuntu中的vnc server。

pcduino sudo x11vnc store password then cp it

然后

sudo reboot

去重启pcDuino的ubuntu。

然后再去登陆vnc,错误依旧。

2.参考:

pcDuino安装vnc进行远程控制

去安装并新建x11vnc的脚本:

结果又不能建立文件:

ubuntu@ubuntu:~$ sudo leafpad /etc/init/x11vnc.conf
leafpad: Cannot open display:

leafpad Cannot open display in securecrt

那再试试vi:

sudo vi /etc/init/x11vnc.conf

可见此文件已存在,且内容正常:

vi show x11vnc conf already exist

3.再去参考:

PcDuino入手设置流程(无HDMI视频线有USB-TTL)-kissthink

去试试:

sudo board-config.sh

结果secureCRT中都乱码了:

sudo board-config.sh securecrt messy ui

所以,去重新修改模拟的终端:

change securcrt emulaion vt100 ansi color

看看能否有效果:

还是乱码。

只是背景变为黑色了。

不过,一直都是:

键盘的上下和左右键,都是可以用的。

4.所以去试试:

选择change_screen change ubuntu to screen resolution

change_screen change ubuntu to screen resolution

然后选择OK,回车,结果出现:

if you want to change screen resolution please run switch to command line

貌似再回车,又回到主界面了。

好像是需要先切换到command line模式,才行的?

5.折腾了半天,通过:

换为linux模式:

change to emulate linux ansi color

然后终于可以看到信息了:

show more info after want to change screen resoluton

但是弄了半天,还是不行。

6.参考:

PCduino入手,SSH连接开放VncServer远程服务-树莓派

去试试手动启动x11vnc,结果启动失败:

ubuntu@ubuntu:~$  sudo x11vnc -forever -shared -rfbauth ~/.vnc/passwd
28/12/2013 10:41:17 passing arg to libvncserver: -rfbauth
28/12/2013 10:41:17 passing arg to libvncserver: /home/ubuntu/.vnc/passwd
28/12/2013 10:41:17 x11vnc version: 0.9.12 lastmod: 2010-09-09  pid: 1004
28/12/2013 10:41:17 XOpenDisplay("") failed.
28/12/2013 10:41:17 Trying again with XAUTHLOCALHOSTNAME=localhost ...
28/12/2013 10:41:17 
28/12/2013 10:41:17 *** XOpenDisplay failed. No -display or DISPLAY.
28/12/2013 10:41:17 *** Trying ":0" in 4 seconds.  Press Ctrl-C to abort.
28/12/2013 10:41:17 *** 1 2 3 4 
28/12/2013 10:41:21 XOpenDisplay(":0") failed.
28/12/2013 10:41:21 Trying again with XAUTHLOCALHOSTNAME=localhost ...
28/12/2013 10:41:21 XOpenDisplay(":0") failed.
28/12/2013 10:41:21 Trying again with unset XAUTHLOCALHOSTNAME ...
28/12/2013 10:41:21 

28/12/2013 10:41:21 ***************************************
28/12/2013 10:41:21 *** XOpenDisplay failed (:0)

*** x11vnc was unable to open the X DISPLAY: ":0", it cannot continue.
*** There may be "Xlib:" error messages above with details about the failure.

Some tips and guidelines:

** An X server (the one you wish to view) must be running before x11vnc is
   started: x11vnc does not start the X server.  (however, see the -create
   option if that is what you really want).

** You must use -display <disp>, -OR- set and export your $DISPLAY
   environment variable to refer to the display of the desired X server.
 - Usually the display is simply ":0" (in fact x11vnc uses this if you forget
   to specify it), but in some multi-user situations it could be ":1", ":2",
   or even ":137".  Ask your administrator or a guru if you are having
   difficulty determining what your X DISPLAY is.

** Next, you need to have sufficient permissions (Xauthority) 
   to connect to the X DISPLAY.   Here are some Tips:

 - Often, you just need to run x11vnc as the user logged into the X session.
   So make sure to be that user when you type x11vnc.
 - Being root is usually not enough because the incorrect MIT-MAGIC-COOKIE
   file may be accessed.  The cookie file contains the secret key that
   allows x11vnc to connect to the desired X DISPLAY.
 - You can explicitly indicate which MIT-MAGIC-COOKIE file should be used
   by the -auth option, e.g.:
       x11vnc -auth /home/someuser/.Xauthority -display :0
       x11vnc -auth /tmp/.gdmzndVlR -display :0
   you must have read permission for the auth file.
   See also '-auth guess' and '-findauth' discussed below.

** If NO ONE is logged into an X session yet, but there is a greeter login
   program like "gdm", "kdm", "xdm", or "dtlogin" running, you will need
   to find and use the raw display manager MIT-MAGIC-COOKIE file.
   Some examples for various display managers:

     gdm:     -auth /var/gdm/:0.Xauth
              -auth /var/lib/gdm/:0.Xauth
     kdm:     -auth /var/lib/kdm/A:0-crWk72
              -auth /var/run/xauth/A:0-crWk72
     xdm:     -auth /var/lib/xdm/authdir/authfiles/A:0-XQvaJk
     dtlogin: -auth /var/dt/A:0-UgaaXa

   Sometimes the command "ps wwwwaux | grep auth" can reveal the file location.

   Starting with x11vnc 0.9.9 you can have it try to guess by using:

              -auth guess

   (see also the x11vnc -findauth option.)

   Only root will have read permission for the file, and so x11vnc must be run
   as root (or copy it).  The random characters in the filenames will of course
   change and the directory the cookie file resides in is system dependent.

See also: http://www.karlrunge.com/x11vnc/faq.html
ubuntu@ubuntu:~$ 

很明显,会出错:

XOpenDisplay("") failed.

还是不知道如何解决。

7.后来,自己无意间想到,貌似之前在选择了:

set_boot

是,好像有个提示的,说是,如果切换到了command line模式后,想要进入图形桌面模式,需要自己手动运行:

lightdm

的。所以,就去试试:

run sudo lightdm to into desktop

然后就没任何输出了。

此时,再去那个vnc viewer中去连接,结果竟然可以正常连接了:

vnc viewer connecting unencrypted connection continue

然后输入密码:

input vnc viewer pass word ubuntu

不过好像有点异常:

VNC Server是:

192.168.107::5900

而不是

192.168.107:5900

且Username也没显示出来我要的ubuntu。

此处,密码,是我之前设置的:ubuntu

至此,终于解决了此问题了。

 

【总结】

此处,看来还是:

启动pcDuino时,好像是之前被自己改动了,启动后,变成command line模式了。

导致:

command line模式下,vnc根本无法正常启动。

而需要手动输入:

lightdm

去启动Ubuntu的桌面。

然后远程才可以通过Win7中的VNC Viewer去连接此pcDuino中Ubuntu的vnc的server,才能正常使用。

才不会出现那个被拒绝的问题。

转载请注明:在路上 » 【已解决】用VNC Viewer连接pcDuino中Ubuntu结果出错:connet: Connection refused (10061)

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

网友最新评论 (1)

  1. 应该是5901端口
    呃呃7年前 (2017-02-26)回复
88 queries in 0.205 seconds, using 22.08MB memory