<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Connecting To Nokia N800 From a Computer Using VNC</title>
	<atom:link href="http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/feed/" rel="self" type="application/rss+xml" />
	<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/</link>
	<description>"The time has come...to talk of many [technologies]." --Lewis Carroll('The Walrus and the Carpenter')</description>
	<pubDate>Thu, 07 Aug 2008 19:10:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Milos</title>
		<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-137086</link>
		<dc:creator>Milos</dc:creator>
		<pubDate>Sun, 11 May 2008 18:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-137086</guid>
		<description>Hello, 

I have modified/ added some scripts in order to print out VNC status and not searching for the IP address.
If I click to X11VNC, I see system message about vnc server port and IP address, or that VNC server is closed.
Here is the guide:

1. sudo gainroot and edit file /usr/bin/x11vnc.sh:

if [ -e /tmp/x11vnc.pid ]
then
        killall x11vnc
        rm /tmp/x11vnc.pid
        echo "VNC server stopped..."
else
        /sbin/ifconfig -a &#124;grep addr: &#124;grep -v 127.0.0.1&#124;awk '{print "VNC started at " $2}' &#124;xargs echo `tail -2 /tmp/x11vnc.log`
        echo $$ &#62; /tmp/x11vnc.pid
        export LD_PRELOAD=/usr/lib/libosso-ic-preload.so
        exec /usr/bin/x11vnc -cursor arrow &#62; /tmp/x11vnc.log 2&#62;&#38;1           
fi

exit 0


2. Create /usr/bin/myx11vnc.py file and chmod 755 /usr/bin/myx11vnc.py:

#!/usr/bin/python
import osso
import os

def main():

    osso_c = osso.Context("osso_x11launch", "0.0.1", False)
    note = osso.SystemNote(osso_c)
    storeRes="..."

    child = os.popen( "/usr/bin/x11vnc.sh" )
    while 1:
      line = child.readline()
      if not line:
         break
      storeRes = storeRes + line

    result = note.system_note_dialog(storeRes, type='notice')

    print result
    return


if __name__ == "__main__":
    main()

#End of file



3. edit file
/usr/share/applications/hildon/x11vnc.desktop
so that it will launch your new python script /usr/bin/myx11vnc.py instead of original  /usr/bin/x11vnc.sh



bye,

Milos</description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>I have modified/ added some scripts in order to print out VNC status and not searching for the IP address.<br />
If I click to X11VNC, I see system message about vnc server port and IP address, or that VNC server is closed.<br />
Here is the guide:</p>
<p>1. sudo gainroot and edit file /usr/bin/x11vnc.sh:</p>
<p>if [ -e /tmp/x11vnc.pid ]<br />
then<br />
        killall x11vnc<br />
        rm /tmp/x11vnc.pid<br />
        echo &#8220;VNC server stopped&#8230;&#8221;<br />
else<br />
        /sbin/ifconfig -a |grep addr: |grep -v 127.0.0.1|awk &#8216;{print &#8220;VNC started at &#8221; $2}&#8217; |xargs echo `tail -2 /tmp/x11vnc.log`<br />
        echo $$ &gt; /tmp/x11vnc.pid<br />
        export LD_PRELOAD=/usr/lib/libosso-ic-preload.so<br />
        exec /usr/bin/x11vnc -cursor arrow &gt; /tmp/x11vnc.log 2&gt;&amp;1<br />
fi</p>
<p>exit 0</p>
<p>2. Create /usr/bin/myx11vnc.py file and chmod 755 /usr/bin/myx11vnc.py:</p>
<p>#!/usr/bin/python<br />
import osso<br />
import os</p>
<p>def main():</p>
<p>    osso_c = osso.Context(&#8221;osso_x11launch&#8221;, &#8220;0.0.1&#8243;, False)<br />
    note = osso.SystemNote(osso_c)<br />
    storeRes=&#8221;&#8230;&#8221;</p>
<p>    child = os.popen( &#8220;/usr/bin/x11vnc.sh&#8221; )<br />
    while 1:<br />
      line = child.readline()<br />
      if not line:<br />
         break<br />
      storeRes = storeRes + line</p>
<p>    result = note.system_note_dialog(storeRes, type=&#8217;notice&#8217;)</p>
<p>    print result<br />
    return</p>
<p>if __name__ == &#8220;__main__&#8221;:<br />
    main()</p>
<p>#End of file</p>
<p>3. edit file<br />
/usr/share/applications/hildon/x11vnc.desktop<br />
so that it will launch your new python script /usr/bin/myx11vnc.py instead of original  /usr/bin/x11vnc.sh</p>
<p>bye,</p>
<p>Milos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-136969</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Fri, 25 Jan 2008 09:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-136969</guid>
		<description>Dear Mr/Mrs,
My device: Nokia N800(OS 2008) which has successfully installed x11vnc_0.9.3-1_armel.deb

I meet two problems here:
1. Applications menu --&#62; Extras --&#62; select the x11vnc application. 
   Nothing happens here. It seems that it fail to launch this app successfully 

2. How run it from the terminal.

Thanks and have a nice day! ^^
My MSN: silonyaya@hotmail.com</description>
		<content:encoded><![CDATA[<p>Dear Mr/Mrs,<br />
My device: Nokia N800(OS 2008) which has successfully installed x11vnc_0.9.3-1_armel.deb</p>
<p>I meet two problems here:<br />
1. Applications menu &#8211;&gt; Extras &#8211;&gt; select the x11vnc application.<br />
   Nothing happens here. It seems that it fail to launch this app successfully </p>
<p>2. How run it from the terminal.</p>
<p>Thanks and have a nice day! ^^<br />
My MSN: <a href="mailto:silonyaya@hotmail.com">silonyaya@hotmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: x11vnc - Connecting Remotely To Nokia N800 From a Windows/Linux box Using VNC &#171; Linux and Open Source Blog</title>
		<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-135788</link>
		<dc:creator>x11vnc - Connecting Remotely To Nokia N800 From a Windows/Linux box Using VNC &#171; Linux and Open Source Blog</dc:creator>
		<pubDate>Mon, 26 Nov 2007 21:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-135788</guid>
		<description>[...] - Every Flavour Beans [...]</description>
		<content:encoded><![CDATA[<p>[...] - Every Flavour Beans [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nokius</title>
		<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-134365</link>
		<dc:creator>Nokius</dc:creator>
		<pubDate>Sat, 03 Nov 2007 16:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-134365</guid>
		<description>thanks!!!!!

now i know witch way it works</description>
		<content:encoded><![CDATA[<p>thanks!!!!!</p>
<p>now i know witch way it works</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-133812</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Mon, 29 Oct 2007 16:49:12 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-133812</guid>
		<description>When the host PC behind firewall or NAT, tightVNC will fail, it is also not easy to configure a VNC server to avoid it. I am using Gooer Remote Desktop Service and it can work in any network environment. I do not need know the IP of host PC, what I need to do is click the host name of my PC, then I can connect to my PC.</description>
		<content:encoded><![CDATA[<p>When the host PC behind firewall or NAT, tightVNC will fail, it is also not easy to configure a VNC server to avoid it. I am using Gooer Remote Desktop Service and it can work in any network environment. I do not need know the IP of host PC, what I need to do is click the host name of my PC, then I can connect to my PC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Different Ways of Taking Screenshots in Nokia N800</title>
		<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-130966</link>
		<dc:creator>Different Ways of Taking Screenshots in Nokia N800</dc:creator>
		<pubDate>Wed, 03 Oct 2007 16:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-130966</guid>
		<description>[...] from the computer in whatever way pleases you. I have written a post about one such way to connect a computer to Nokia N800 using VNC, so probably that will be a good place to get started. Once connected through VNC, the N800 screen [...]</description>
		<content:encoded><![CDATA[<p>[...] from the computer in whatever way pleases you. I have written a post about one such way to connect a computer to Nokia N800 using VNC, so probably that will be a good place to get started. Once connected through VNC, the N800 screen [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Как порулить нокией через VNC сервер &#187; Internet Tablet</title>
		<link>http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-130799</link>
		<dc:creator>&#187; Как порулить нокией через VNC сервер &#187; Internet Tablet</dc:creator>
		<pubDate>Mon, 01 Oct 2007 14:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2007/09/21/connecting-to-nokia-n800-from-a-computer-using-vnc/#comment-130799</guid>
		<description>[...] Статья о установке vnc сервера на таблетку и клиентов на... - как на windows pc так и на linux box. Статья на английском, но - в ней так много картинок, что, думаю, любой обойдётся без перевода.  This work, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License. [...]</description>
		<content:encoded><![CDATA[<p>[...] Статья о установке vnc сервера на таблетку и клиентов на&#8230; - как на windows pc так и на linux box. Статья на английском, но - в ней так много картинок, что, думаю, любой обойдётся без перевода.  This work, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
