<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>vnc Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/vnc/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 22 Dec 2020 21:33:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to set an VNC Server on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/set-vnc-server-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/set-vnc-server-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 23 Dec 2020 03:32:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vnc]]></category>
		<category><![CDATA[vnc server]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=26865</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to set up a VNC server on Ubuntu 20.04 Having a VNC server is a good alternative in these moments where work is being done remotely. Because VNC allows us to have a remote desktop server with which we can do jobs if you were on [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/set-vnc-server-ubuntu-20-04/">How to set an VNC Server on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>Hello, friends. In this post, you will learn how to set up a VNC server on Ubuntu 20.04</strong></p>



<p>Having a VNC server is a good alternative in these moments where work is being done remotely. Because VNC allows us to have a remote desktop server with which we can do jobs if you were on the computer.</p>



<p>This will be a fairly short tutorial because it is quite simple.</p>



<h2>Creating a VNC Server on Ubuntu 20.04</h2>



<p>Whether you are using Ubuntu desktop or Ubuntu Server it is convenient to install a lightweight desktop environment to make the connection. In this case, I have chosen XFCE.</p>



<p>So, install XFCE. For this, we present to you the tutorial that we have made.</p>



<p><a href="https://www.osradar.com/install-xfce-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install XFCE on Ubuntu 20.04?</a></p>



<p>Then, we can continue with the tutorial.</p>



<h3>Install VNC Server on Ubuntu 20.04</h3>



<p>Now we can install a VNC server. To do so, open a terminal or run via SSH.</p>



<pre class="wp-block-preformatted">sudo apt install tightvncserver</pre>



<p>Once the server is installed, it is necessary to define a password.</p>



<pre class="wp-block-preformatted">vncpasswd
Using password file /home/angelo/.vnc/passwd
 VNC directory /home/angelo/.vnc does not exist, creating.
 Password: 
 Verify:   
 Would you like to enter a view-only password (y/n)? y
 Password: 
 Verify:</pre>



<p>There you can define a password as a view-only password.</p>



<p>Now configure the server so that when it starts it will run the XFCE environment</p>



<p>So, create a configuration file:</p>



<pre class="wp-block-preformatted">nano ~/.vnc/xstartup</pre>



<p>And add the following:</p>



<pre class="wp-block-preformatted">!/bin/bash
 xrdb $HOME/.Xresources
 startxfce4 &amp;</pre>



<p>Then close the file and give it execution permission</p>



<pre class="wp-block-preformatted">chmod +x ~/.vnc/xstartup</pre>



<p>Now you can start the VNC server.</p>



<pre class="wp-block-preformatted">vncserver
New 'X' desktop is ubuntuosradar:1
 Starting applications specified in /home/angelo/.vnc/xstartup
 Log file is /home/angelo/.vnc/ubuntuosradar:1.log</pre>



<p>Now if you open a client program, for example, <a href="https://wiki.gnome.org/Apps/Vinagre" target="_blank" rel="noreferrer noopener">Vinagre</a> and access it through <strong>port 5901</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="557" src="https://www.osradar.com/wp-content/uploads/2020/12/1-8-1024x557.png" alt="1.- VNC Server on Ubuntu 20.04" class="wp-image-26947" srcset="https://www.osradar.com/wp-content/uploads/2020/12/1-8-1024x557.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/1-8-300x163.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/1-8-768x418.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/1-8-696x379.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/1-8-1068x581.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/1-8.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- VNC Server on Ubuntu 20.04</figcaption></figure>



<p>So, enjoy it.</p>



<h2>Conclusion</h2>



<p>Creating and configuring this tool on Ubuntu 20.04 is quite useful these days. Now that you know how to do it, it&#8217;s up to you.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/set-vnc-server-ubuntu-20-04/">How to set an VNC Server on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/set-vnc-server-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
