<?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>Disco Dingo Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/disco-dingo/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 17 Oct 2019 00:42:53 +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 install Yarn on Ubuntu 18.04 / Ubuntu 19.04?</title>
		<link>https://www.osradar.com/how-to-install-yarn-on-ubuntu-18-04-ubuntu-19-04/</link>
					<comments>https://www.osradar.com/how-to-install-yarn-on-ubuntu-18-04-ubuntu-19-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 01 May 2019 05:00:27 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Disco Dingo]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Javascritpt]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11956</guid>

					<description><![CDATA[<p>The management of dependencies in a programming project is vital. That is, with certain tools we can control everything related to the project libraries. Especially in web applications where a lot of libraries and components are required for a site or web application to be modern and functional. For example, a modern website needs Javascript [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yarn-on-ubuntu-18-04-ubuntu-19-04/">How to install Yarn on Ubuntu 18.04 / Ubuntu 19.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>The management of dependencies in a programming project is vital. That is, with certain tools we can control everything related to the project libraries. Especially in web applications where a lot of libraries and components are required for a site or web application to be modern and functional. For example, a modern website needs Javascript libraries to make it functional and didactic to the user. If there is a tool that helps us with this, everything becomes problems. Therefore, in this post, I will teach you how to install Yarn on Ubuntu 18.04 or Ubuntu 19.04.</p>
<p><a href="https://yarnpkg.com">Yarn</a> is a Javascript dependency manager that stands out for being fast, secure and reliable. It is presented to us as the most solid alternative to NPM. In addition, it is open source and it has the protection of a giant like <a href="https://www.osradar.com/facebook-vulnerability-affecting-50-million-users/">Facebook</a> what guarantees us solidity and robustness of the project. Some of its characteristics are the following:</p>
<ul>
<li>Fast: Yarn caches every package it has downloaded.</li>
<li>Reliable: Using a detailed but concise lockfile format and a deterministic algorithm for install operations.</li>
<li>Secure: Yarn uses checksums to verify the integrity of every installed package before its code is executed.</li>
</ul>
<p>There are also other features such as its efficiency in the use of the network as well as an offline mode. All this can be found on the <a href="https://github.com/yarnpkg/yarn">Github site</a> of Yarn.</p>
<h2>Install Yarn on Ubuntu</h2>
<p>The process is very simple since Yarn has a package repository at our disposal. This means that the installation can be done from the terminal and using APT. So let&#8217;s go for it.</p>
<p>First, open a terminal emulator. Then, add the GPG key from the repository.</p>
<pre>:~$ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -</pre>
<p>Then, add the Yarn repository.</p>
<pre>:~$ echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list</pre>
<figure id="attachment_11957" aria-describedby="caption-attachment-11957" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11957" src="https://www.osradar.com/wp-content/uploads/2019/04/1-17.png" alt="1.- Adding the Yarn repository" width="1366" height="741" srcset="https://www.osradar.com/wp-content/uploads/2019/04/1-17.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/1-17-300x163.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/1-17-768x417.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/1-17-1024x555.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/1-17-696x378.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/1-17-1068x579.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/1-17-774x420.png 774w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11957" class="wp-caption-text">1.- Adding the Yarn repository</figcaption></figure>
<p>After that, update the APT cache.</p>
<pre>:~$ sudo apt update</pre>
<p>If we are currently using Nodejs and NPM, we can install Yarn using the following command:</p>
<pre>:~$ sudo apt-get install --no-install-recommends yarn</pre>
<p>Otherwise, we will use this one.</p>
<pre>:~$ sudo apt-get install yarn</pre>
<figure id="attachment_11958" aria-describedby="caption-attachment-11958" style="width: 766px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11958" src="https://www.osradar.com/wp-content/uploads/2019/04/2-16.png" alt="2.- Install Yarn on Ubuntu" width="766" height="376" srcset="https://www.osradar.com/wp-content/uploads/2019/04/2-16.png 766w, https://www.osradar.com/wp-content/uploads/2019/04/2-16-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/2-16-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/04/2-16-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/04/2-16-696x342.png 696w" sizes="(max-width: 766px) 100vw, 766px" /><figcaption id="caption-attachment-11958" class="wp-caption-text">2.- Install Yarn on Ubuntu</figcaption></figure>
<p>The main difference is that <a href="https://www.osradar.com/how-to-install-nodejs-on-ubuntu-18-04-lts-linux-mint-19/">NodeJS</a> is dependent on Yarn. Then, the second command will install it from Ubuntu repositories. And the first one will leave everything as it is.</p>
<p>Next, check the installed version.</p>
<pre>:~$ yarn --version</pre>
<figure id="attachment_11959" aria-describedby="caption-attachment-11959" style="width: 765px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11959" src="https://www.osradar.com/wp-content/uploads/2019/04/3-15.png" alt="3.- Yarn version" width="765" height="117" srcset="https://www.osradar.com/wp-content/uploads/2019/04/3-15.png 765w, https://www.osradar.com/wp-content/uploads/2019/04/3-15-300x46.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/3-15-696x106.png 696w" sizes="(max-width: 765px) 100vw, 765px" /><figcaption id="caption-attachment-11959" class="wp-caption-text">3.- Yarn version</figcaption></figure>
<p>And that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>Yarn is a great alternative to NPM to manage the dependencies of our web projects. So it becomes essential if we are web developers or we are learning in it.</p>
<p>Please share this post with your friends.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yarn-on-ubuntu-18-04-ubuntu-19-04/">How to install Yarn on Ubuntu 18.04 / Ubuntu 19.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/how-to-install-yarn-on-ubuntu-18-04-ubuntu-19-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Opera Web Browser on Ubuntu 18.04 and Ubuntu 19.04</title>
		<link>https://www.osradar.com/install-opera-web-browser-on-ubuntu-18-04-and-ubuntu-19-04/</link>
					<comments>https://www.osradar.com/install-opera-web-browser-on-ubuntu-18-04-and-ubuntu-19-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 27 Apr 2019 05:00:35 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Disco Dingo]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web browser]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11923</guid>

					<description><![CDATA[<p>Linux is a great operating system that is gaining more and more relevance today. That is why many applications that were previously available only for Windows or MacOS make a presence in our favorite system. Some of them, for quite some time or since the beginning of their development, and others that are new arrivals. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-opera-web-browser-on-ubuntu-18-04-and-ubuntu-19-04/">Install Opera Web Browser on Ubuntu 18.04 and Ubuntu 19.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>Linux is a great operating system that is gaining more and more relevance today. That is why many applications that were previously available only for Windows or MacOS make a presence in our favorite system. Some of them, for quite some time or since the beginning of their development, and others that are new arrivals. These applications cover a large number of categories, from tools to develop professional tools for servers or simply web browsers. Web browsers are a vital part of the use of our personal computer and in Linux, there are many alternatives. Therefore, today we will teach you how to install Opera web browser on Ubuntu 18.04. In addition, this tutorial also serves Ubuntu 19.04.</p>
<p><a href="https://www.opera.com">Opera</a> is a well-known web browser in today&#8217;s world. Its development has been with us for some time so we are talking about a veteran program. It has many modern features, such as data synchronization, the ability to add extensions, as well as other more privacy oriented data. All this is achieved with moderate use of system resources.</p>
<p>So, let us start.</p>
<h2>Install Opera Web Browser  on Ubuntu</h2>
<p>The installation is quite simple, we will be able to do it, downloading the .deb package from the project website.</p>
<figure id="attachment_11924" aria-describedby="caption-attachment-11924" style="width: 1116px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11924" src="https://www.osradar.com/wp-content/uploads/2019/04/1-14.png" alt="1.- Opera Web browser" width="1116" height="376" srcset="https://www.osradar.com/wp-content/uploads/2019/04/1-14.png 1116w, https://www.osradar.com/wp-content/uploads/2019/04/1-14-300x101.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/1-14-768x259.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/1-14-1024x345.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/1-14-696x234.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/1-14-1068x360.png 1068w" sizes="(max-width: 1116px) 100vw, 1116px" /><figcaption id="caption-attachment-11924" class="wp-caption-text">1.- Opera Web browser</figcaption></figure>
<p>Once the .DEB package has been downloaded, we can install it by double clicking on the package. But we can also do it faster from the terminal. Open the terminal and run the following command:</p>
<pre>:~$ cd Downloads/
:~$ sudo dpkg -i [package_name]</pre>
<p>Then you can launch it from the main menu.</p>
<p>Another way to install Opera Web Browser is to manually add its repository and then run the package. This method is more reliable than the previous one. So let&#8217;s go for it.</p>
<p>Open a terminal and add GPG key to the repository and then add the repository.</p>
<pre>:~$ wget -qO- https://deb.opera.com/archive.key | sudo apt-key add -
:~$ echo deb https://deb.opera.com/opera-stable/ stable non-free | sudo tee /etc/apt/sources.list.d/opera.list</pre>
<figure id="attachment_11925" aria-describedby="caption-attachment-11925" style="width: 993px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11925" src="https://www.osradar.com/wp-content/uploads/2019/04/2-13.png" alt="2.- Add the Opera repository" width="993" height="223" srcset="https://www.osradar.com/wp-content/uploads/2019/04/2-13.png 993w, https://www.osradar.com/wp-content/uploads/2019/04/2-13-300x67.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/2-13-768x172.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/2-13-696x156.png 696w" sizes="(max-width: 993px) 100vw, 993px" /><figcaption id="caption-attachment-11925" class="wp-caption-text">2.- Add the Opera repository</figcaption></figure>
<p>Then, refresh APT and install Opera web browser.</p>
<pre>:~$ sudo apt update
:~$ sudo apt install opera-stable</pre>
<figure id="attachment_11926" aria-describedby="caption-attachment-11926" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11926" src="https://www.osradar.com/wp-content/uploads/2019/04/3-13.png" alt="3.- Install Opera Web Browser" width="1365" height="386" srcset="https://www.osradar.com/wp-content/uploads/2019/04/3-13.png 1365w, https://www.osradar.com/wp-content/uploads/2019/04/3-13-300x85.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/3-13-768x217.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/3-13-1024x290.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/3-13-696x197.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/3-13-1068x302.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11926" class="wp-caption-text">3.- Install Opera Web Browser</figcaption></figure>
<p>After that, launch it and use it. If for any reason you wish to uninstall it. Run the following command:</p>
<pre>:~$ sudo apt remove opera-stable</pre>
<p>In case you also want to delete its repository, you can do it with this other command:</p>
<pre>:~$ sudo rm -f /etc/apt/sources.list.d/opera.list</pre>
<p>And that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>Opera is a great alternative to the giants of Firefox and <a href="https://www.osradar.com/how-to-install-google-chrome-on-ubuntu-19-04/" target="_blank" rel="noopener noreferrer">Google Chrome</a>. It is quite fast and easy to use, as well as safe. Some users will not be happy to know that Opera is not open source but is a great web browser.</p>
<p>Please share this post with your friends because they might need it.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-opera-web-browser-on-ubuntu-18-04-and-ubuntu-19-04/">Install Opera Web Browser on Ubuntu 18.04 and Ubuntu 19.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/install-opera-web-browser-on-ubuntu-18-04-and-ubuntu-19-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Stacer a great optimizer and monitoring Linux tool</title>
		<link>https://www.osradar.com/stacer-a-great-optimizer-and-monitoring-linux-tool/</link>
					<comments>https://www.osradar.com/stacer-a-great-optimizer-and-monitoring-linux-tool/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 24 Apr 2019 05:00:25 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Disco]]></category>
		<category><![CDATA[Disco Dingo]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[optimizer]]></category>
		<category><![CDATA[Stacer]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11896</guid>

					<description><![CDATA[<p>Normally if we use Linux on a production server, it is important to monitor it. On the other hand, in everyday use, many users do not. Some because they have hardware so powerful that they do not worry about it. Others because they do not have the necessary knowledge to interpret the data that can [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/stacer-a-great-optimizer-and-monitoring-linux-tool/">Stacer a great optimizer and monitoring Linux tool</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Normally if we use Linux on a production server, it is important to monitor it. On the other hand, in everyday use, many users do not. Some because they have hardware so powerful that they do not worry about it. Others because they do not have the necessary knowledge to interpret the data that can be thrown. However, there are tools that not only allow us to monitor the system but also allow us to optimize it. Very important tasks for the system to remain stable and fast. Many options, but today we will talk about Stacer, an optimizer and monitoring Linux tool. We will also show you how to install it in Ubuntu 18.04 and Ubuntu 19.04.</p>
<p>Stacer is a great application that will help us optimize and monitor our Linux system. It has many advantages, starting because it is built with the Electron framework so its installation becomes easy. It also has a pretty graphical interface that will make the experience quite pleasant. All this being open source that will facilitate the adoption in our systems.</p>
<p>It is important to note that, this type of applications that are an optimizer and monitoring Linux tool, is necessary to keep an eye on the systems. In the same way, it will help us to delete packages and files not necessary for the system and thus save disk space. Finally, with Stacer, we will be able to manage Systemd services in a fast and easy way.</p>
<p>So, let us start to install and use it.</p>
<h2>Stacer a great optimizer and monitoring Linux tool</h2>
<h3>How to install it on Ubuntu 18.04 and 19.04?</h3>
<p>Its installation is quite simple, just go to the <a href="https://github.com/oguzhaninan/Stacer/releases">download section</a> and look for the package .DEB and download it. Remember that <a href="https://www.osradar.com/tag/debian/">Debian</a>, <a href="https://www.osradar.com/tag/ubuntu/">Ubuntu</a> and Linux Mint use the .DEB format and RHEL, <a href="https://www.osradar.com/tag/centos/">CentOS</a>, <a href="https://www.osradar.com/tag/fedora/">Fedora</a>, and OpenSUSE use the .RPM format.</p>
<p>On the other hand, there is another format called <a href="https://www.osradar.com/appimagehub-the-appimage-store/">AppImage</a> that can be used by the rest of Linux distributions. Even if you use Ubuntu and do not want to use the .DEB package you can use AppImage which is a portable and universal format.</p>
<p>If you choose the .DEB package, once you have downloaded it, open a terminal and run the following commands:</p>
<pre>:~$ cd Downloads/
:~$ sudo dpkg -i stacer_1.0.9_amd64.deb</pre>
<p>Remember that the file name will change with the version number. So you have to check it first.</p>
<p>If you opted for the .AppImage file. You need to make it executable to run.</p>
<pre>:~$ cd Downloads/
:~$ chmod +x stacer_1.0.9_amd64.deb</pre>
<p>Next, open it. Either through the main menu or by double-clicking on the AppImage file.</p>
<h3>Using Stacer</h3>
<p>As soon as you open it, you&#8217;ll see the following:</p>
<figure id="attachment_11897" aria-describedby="caption-attachment-11897" style="width: 850px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11897" src="https://www.osradar.com/wp-content/uploads/2019/04/1-12.png" alt="1.- Stacer a great optimizer and monitoring Linux tool" width="850" height="599" srcset="https://www.osradar.com/wp-content/uploads/2019/04/1-12.png 850w, https://www.osradar.com/wp-content/uploads/2019/04/1-12-300x211.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/1-12-768x541.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/1-12-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2019/04/1-12-696x490.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/1-12-596x420.png 596w" sizes="(max-width: 850px) 100vw, 850px" /><figcaption id="caption-attachment-11897" class="wp-caption-text">1.- Stacer a great optimizer and monitoring Linux tool</figcaption></figure>
<p>On the left side, you will see all the options to monitor and optimize. As you can see, it is a very easy and intuitive application to use.</p>
<p>One of the most important options is the system cleaner. There you select what you want to clean, and thus you save space in the disk.</p>
<figure id="attachment_11898" aria-describedby="caption-attachment-11898" style="width: 850px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11898" src="https://www.osradar.com/wp-content/uploads/2019/04/2-11.png" alt="2.- Stacer - system cleaner" width="850" height="599" srcset="https://www.osradar.com/wp-content/uploads/2019/04/2-11.png 850w, https://www.osradar.com/wp-content/uploads/2019/04/2-11-300x211.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/2-11-768x541.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/2-11-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2019/04/2-11-696x490.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/2-11-596x420.png 596w" sizes="(max-width: 850px) 100vw, 850px" /><figcaption id="caption-attachment-11898" class="wp-caption-text">2.- Stacer &#8211; system cleaner</figcaption></figure>
<p>It is also possible to manage the systemd services with a great graphical interface. With Stacer, you will be able to start them, stop them as well as make or not to start them during system startup.</p>
<figure id="attachment_11899" aria-describedby="caption-attachment-11899" style="width: 850px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11899" src="https://www.osradar.com/wp-content/uploads/2019/04/3-11.png" alt="3.- Systemd service" width="850" height="599" srcset="https://www.osradar.com/wp-content/uploads/2019/04/3-11.png 850w, https://www.osradar.com/wp-content/uploads/2019/04/3-11-300x211.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/3-11-768x541.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/3-11-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2019/04/3-11-696x490.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/3-11-596x420.png 596w" sizes="(max-width: 850px) 100vw, 850px" /><figcaption id="caption-attachment-11899" class="wp-caption-text">3.- Systemd service</figcaption></figure>
<p>Or, check the system resources.</p>
<figure id="attachment_11900" aria-describedby="caption-attachment-11900" style="width: 850px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11900" src="https://www.osradar.com/wp-content/uploads/2019/04/4-8.png" alt="4.- System resources" width="850" height="599" srcset="https://www.osradar.com/wp-content/uploads/2019/04/4-8.png 850w, https://www.osradar.com/wp-content/uploads/2019/04/4-8-300x211.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/4-8-768x541.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/4-8-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2019/04/4-8-696x490.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/4-8-596x420.png 596w" sizes="(max-width: 850px) 100vw, 850px" /><figcaption id="caption-attachment-11900" class="wp-caption-text">4.- System resources</figcaption></figure>
<p>So, that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>Stacer is a very useful tool to manage our system. This way we will have the necessary information about the behavior of it. But not only that but also, we can perform system maintenance tasks such as deleting unnecessary files.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/stacer-a-great-optimizer-and-monitoring-linux-tool/">Stacer a great optimizer and monitoring Linux tool</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/stacer-a-great-optimizer-and-monitoring-linux-tool/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Java on Ubuntu 19.04?</title>
		<link>https://www.osradar.com/how-to-install-java-on-ubuntu-19-04/</link>
					<comments>https://www.osradar.com/how-to-install-java-on-ubuntu-19-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 13 Apr 2019 04:53:10 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Disco Dingo]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[New version]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11800</guid>

					<description><![CDATA[<p>Java is one of the most popular programming languages out there. But not only that, it also consists of a software platform highly popular among developers. Besides this, it is a very robust language that tolerates errors in real time through exceptions. So many companies rely on Java to deploy their highly reliable software. Java [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-java-on-ubuntu-19-04/">How to install Java on Ubuntu 19.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>Java is one of the most popular programming languages out there. But not only that, it also consists of a software platform highly popular among developers. Besides this, it is a very robust language that tolerates errors in real time through exceptions. So many companies rely on Java to deploy their highly reliable software. Java is also needed to run not-so-strong programs on the desktop and on the desktop the most popular distribution is Ubuntu. So, in this post, we will teach you how to install Java on Ubuntu 19.04.</p>
<h2>Install Java on Ubuntu 19.04 &#8211; the OpenJDK</h2>
<p>Java belongs to <a href="https://oracle.com" rel="noopener noreferrer">Oracle</a> so the community in function of protecting the Java source code releases it under the OpenJDK project. Thus we can have the novelties without problems of licenses. This is especially useful if we are learning the language or are immersed in educational projects.</p>
<p>The great advantage of OpenJDK is its community support without sacrificing, some kind of Java feature. It is also much easier to install because the packages are in the official repositories of the distribution.</p>
<p>So, open a terminal and run one of the following commands.</p>
<p>For Java 11, we need to run:</p>
<pre>:~$ sudo apt install openjdk-11-jre</pre>
<p>However, <a href="https://www.osradar.com/java-12-is-released/" rel="noopener noreferrer">Java 12 is available</a>. If you want to use it, you can install t by using this command:</p>
<pre>:~$ sudo apt install openjdk-12-jre</pre>
<p>So this is enough.</p>
<h2>Install Java on Ubuntu 19.04 &#8211; The Oracle Binaries</h2>
<p>However, if we are in a company and our project needs to be commercialized on a large or medium scale, it is advisable to use Oracle binaries. So although the download is free, we need a license to monetize the project.</p>
<p>The great advantage of this is that we will have many more resources from Oracle. However, one of the restrictions of the commercial version is that <strong>we will not be able to use the programs for data processing or for any commercial, production or internal commercial purpose</strong> other than development, testing, prototyping, and demonstration of the application. We also may not remove or modify any program mark or any Oracle copyright notice. So keep this in mind when choosing the version for your project.</p>
<p>So, to install Java on Ubuntu 19.04, We will use a PPA.</p>
<pre>:~$ sudo add-apt-repository ppa:linuxuprising/java
:~$ sudo apt-get update</pre>
<p>To install Oracle Java 11 on Ubuntu 19.04:</p>
<pre>:~$ sudo apt install  oracle-java11-installer</pre>
<p>Or, to install Oracle Java 12:</p>
<pre>:~$ :~$ sudo apt install oracle-java12-installer</pre>
<p>And that is it.</p>
<h2>Conclusion</h2>
<p>Java is a basic programming language used today, so you will probably have to use it at some point. So, now that you know how to install Java on Ubuntu 19.04 you won&#8217;t have any problems to start using it.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-java-on-ubuntu-19-04/">How to install Java on Ubuntu 19.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/how-to-install-java-on-ubuntu-19-04/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Google Chrome on Ubuntu 19.04?</title>
		<link>https://www.osradar.com/how-to-install-google-chrome-on-ubuntu-19-04/</link>
					<comments>https://www.osradar.com/how-to-install-google-chrome-on-ubuntu-19-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 06 Apr 2019 03:19:03 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[Disco Dingo]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11706</guid>

					<description><![CDATA[<p>In this post we will show you how to install Google Chrome in Ubuntu 19.04. Google Chrome is one of the most popular web browsers in the world. Some studies even indicate that it is the most popular along with Mozilla Firefox. Google Chrome stands out above all for its speed in loading websites, as [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-google-chrome-on-ubuntu-19-04/">How to install Google Chrome on Ubuntu 19.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>In this post we will show you how to install Google Chrome in Ubuntu 19.04.</p>
<p>Google Chrome is one of the most popular web browsers in the world. Some studies even indicate that it is the most popular along with Mozilla Firefox. Google Chrome stands out above all for its speed in loading websites, as well as its large catalog of add-ons that increase the functionality of the program. On the other hand, Google Chrome comes from the hand of Google which means that it integrates perfectly with your Google account especially if you use a mobile with Android.</p>
<p>Knowing this is that when installing a Linux distribution, it is almost the first thing users do. Of course Firefox is a great open source browser and flag, but Google Chrome still rules.</p>
<p>So in this post, we will make it as simple as possible.</p>
<h2>Install Google Chrome on Ubuntu 19.04</h2>
<p>For licensing reasons, Google Chrome is not included by default in large Linux distributions such as Ubuntu or Linux Mint. Many Linux users do not consider it necessary because Firefox is almost at par, but there are always many users who prefer to have it.</p>
<p>First, go to its <a href="https://www.google.com/chrome/" target="_blank" rel="noopener noreferrer">website</a>.</p>
<figure id="attachment_11707" aria-describedby="caption-attachment-11707" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11707" src="https://www.osradar.com/wp-content/uploads/2019/04/1-1.png" alt="1.- Google Chrome web site" width="1354" height="630" srcset="https://www.osradar.com/wp-content/uploads/2019/04/1-1.png 1354w, https://www.osradar.com/wp-content/uploads/2019/04/1-1-300x140.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/1-1-768x357.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/1-1-1024x476.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/1-1-696x324.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/1-1-1068x497.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/1-1-903x420.png 903w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-11707" class="wp-caption-text">1.- Google Chrome web site</figcaption></figure>
<p>Next, click on the Download Chrome Button and select the .DEB package to download.</p>
<figure id="attachment_11708" aria-describedby="caption-attachment-11708" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11708" src="https://www.osradar.com/wp-content/uploads/2019/04/2-1.png" alt="2.- Download Google Chrome" width="1354" height="630" srcset="https://www.osradar.com/wp-content/uploads/2019/04/2-1.png 1354w, https://www.osradar.com/wp-content/uploads/2019/04/2-1-300x140.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/2-1-768x357.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/2-1-1024x476.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/2-1-696x324.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/2-1-1068x497.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/2-1-903x420.png 903w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-11708" class="wp-caption-text">2.- Download Google Chrome</figcaption></figure>
<p>Once the file is downloaded, open your terminal and place it in the download folder as follows:</p>
<pre>:~$ cd Downloads/
:~$ sudo dpkg -i google-chrome-stable_current_amd64.deb</pre>
<figure id="attachment_11709" aria-describedby="caption-attachment-11709" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11709" src="https://www.osradar.com/wp-content/uploads/2019/04/3-1.png" alt="3.- Install Google Chrome on Ubuntu 19.04" width="1365" height="390" srcset="https://www.osradar.com/wp-content/uploads/2019/04/3-1.png 1365w, https://www.osradar.com/wp-content/uploads/2019/04/3-1-300x86.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/3-1-768x219.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/3-1-1024x293.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/3-1-696x199.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/3-1-1068x305.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11709" class="wp-caption-text">3.- Install Google Chrome on Ubuntu 19.04</figcaption></figure>
<p>As you can see, the process went smoothly. So now you can start Google Chrome from the main menu.</p>
<h2>Conclusion</h2>
<p>Google Chrome is perhaps the most popular web browser out there. However, its installation on Ubuntu 19.04 is not complicated at all. On the contrary, it is quite simple and is available to any novice user who just uses Linux.</p>
<p>Please share this article with your friends to help them with their migration to Linux.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-google-chrome-on-ubuntu-19-04/">How to install Google Chrome on Ubuntu 19.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/how-to-install-google-chrome-on-ubuntu-19-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>5 things to do after install Ubuntu 19.04</title>
		<link>https://www.osradar.com/5-things-to-do-after-install-ubuntu-19-04/</link>
					<comments>https://www.osradar.com/5-things-to-do-after-install-ubuntu-19-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 02 Apr 2019 22:55:40 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[after install]]></category>
		<category><![CDATA[Disco Dingo]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu 19.04]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11681</guid>

					<description><![CDATA[<p>Ubuntu is together with Linux Mint the two most popular Linux distributions in the world. That has to be said. They have obtained it thanks to its stability and focus on the novice user. Probably many of them use Ubuntu as their first Linux distribution. However, it can always be improved and here are the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/5-things-to-do-after-install-ubuntu-19-04/">5 things to do after install Ubuntu 19.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>Ubuntu is together with Linux Mint the two most popular Linux distributions in the world. That has to be said. They have obtained it thanks to its stability and focus on the novice user. Probably many of them use Ubuntu as their first Linux distribution. However, it can always be improved and here are the 5 things to do after install Ubuntu 19.04</p>
<p>Ubuntu 19.04 comes with few but very important new features. The main of them is the inclusion of <a href="https://wiki.gnome.org/ThreePointThirtyone/ReleaseNotes" target="_blank" rel="noopener noreferrer">GNOME 3.32</a> which improves the user experience. This is because GNOME 3.32 has included algorithms that considerably improve its performance and resource consumption. So just for that, it becomes interesting. On top of that, we have the Linux <a href="https://www.osradar.com/install-linux-kernel-5-on-ubuntu-18-04/">Kernel 5 that was recently released</a>. Additionally, all applications have been updated such as LibreOffice, Firefox, Thunderbird and so on.</p>
<h2>The 5 things to do after install Ubuntu 19.04</h2>
<h3>1) Upgrade the system</h3>
<p>The first thing to do after installing Ubuntu 19.04 is to update the system. Once the system has been released until we install it some time passes and it is likely that during that time, security patches have been released. So open a terminal and run:</p>
<pre>:~$ sudo apt update &amp;&amp; sudo apt upgrade</pre>
<figure id="attachment_11683" aria-describedby="caption-attachment-11683" style="width: 899px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11683" src="https://www.osradar.com/wp-content/uploads/2019/03/1-17.png" alt="1.- After install Ubuntu 19.04 you need to upgrade the system" width="899" height="369" srcset="https://www.osradar.com/wp-content/uploads/2019/03/1-17.png 899w, https://www.osradar.com/wp-content/uploads/2019/03/1-17-300x123.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/1-17-768x315.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/1-17-696x286.png 696w" sizes="(max-width: 899px) 100vw, 899px" /><figcaption id="caption-attachment-11683" class="wp-caption-text">1.- After install Ubuntu 19.04 you need to upgrade the system</figcaption></figure>
<p>After entering the user&#8217;s password, the process will begin. Once finished, if you want to restart the system. In this way, the system becomes more stable and less prone to failures.</p>
<p>It is recommended to do it periodically to avoid gigantic updates.</p>
<h3>2) Install Codecs Multimedia</h3>
<p>A modern operating system that does not reproduce most of the world&#8217;s most popular multimedia codecs is not a good operating system. Fortunately, Ubuntu includes in its repositories a package that installs a lot of these codecs.</p>
<p>On the other hand, the package in question also installs Microsoft&#8217;s proprietary sources and other compression codecs.</p>
<p>So run the following command:</p>
<pre>:~$ sudo apt install ubuntu-restricted-extras</pre>
<figure id="attachment_11684" aria-describedby="caption-attachment-11684" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11684" src="https://www.osradar.com/wp-content/uploads/2019/03/2-17.png" alt="2.- Install restricted extras" width="1366" height="614" srcset="https://www.osradar.com/wp-content/uploads/2019/03/2-17.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/2-17-300x135.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/2-17-768x345.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/2-17-1024x460.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/2-17-696x313.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/2-17-1068x480.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/2-17-934x420.png 934w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11684" class="wp-caption-text">2.- Install restricted extras</figcaption></figure>
<p>Then, accept the license terms.</p>
<figure id="attachment_11685" aria-describedby="caption-attachment-11685" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11685" src="https://www.osradar.com/wp-content/uploads/2019/03/3-16.png" alt="3.- license terms" width="1366" height="741" srcset="https://www.osradar.com/wp-content/uploads/2019/03/3-16.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/3-16-300x163.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/3-16-768x417.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/3-16-1024x555.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/3-16-696x378.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/3-16-1068x579.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/3-16-774x420.png 774w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11685" class="wp-caption-text">3.- license terms</figcaption></figure>
<p>Now, you can play all your favorite music and videos.</p>
<h3>3) Check the Software and updates windows</h3>
<p>The way updates and repositories are configured can be viewed in the software and update window. In the first tab, you can disable which series of packages to exclude from Ubuntu downloads. It is recommended to mark them all. As well as you can change the server where to download the packages.</p>
<figure id="attachment_11686" aria-describedby="caption-attachment-11686" style="width: 928px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11686" src="https://www.osradar.com/wp-content/uploads/2019/03/4-12.png" alt="4.- Software and updates" width="928" height="468" srcset="https://www.osradar.com/wp-content/uploads/2019/03/4-12.png 928w, https://www.osradar.com/wp-content/uploads/2019/03/4-12-300x151.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/4-12-768x387.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/4-12-696x351.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/4-12-833x420.png 833w" sizes="(max-width: 928px) 100vw, 928px" /><figcaption id="caption-attachment-11686" class="wp-caption-text">4.- Software and updates</figcaption></figure>
<p>In the Other Software tab, we can activate the software of Canonical partners that opens the doors to more packages.</p>
<figure id="attachment_11687" aria-describedby="caption-attachment-11687" style="width: 928px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11687" src="https://www.osradar.com/wp-content/uploads/2019/03/5-9.png" alt="5.- Canonical partners" width="928" height="468" srcset="https://www.osradar.com/wp-content/uploads/2019/03/5-9.png 928w, https://www.osradar.com/wp-content/uploads/2019/03/5-9-300x151.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/5-9-768x387.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/5-9-696x351.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/5-9-833x420.png 833w" sizes="(max-width: 928px) 100vw, 928px" /><figcaption id="caption-attachment-11687" class="wp-caption-text">5.- Canonical partners</figcaption></figure>
<h3>4) Install Gnome-tweak-tool</h3>
<p>GNOME is the default Ubuntu environment. So to customize it, change the default theme and other things you need to install Tweaks tool. This way you will have even more control of customization over Ubuntu.</p>
<pre>:~$ sudo apt install gnome-tweak-tool</pre>
<figure id="attachment_11688" aria-describedby="caption-attachment-11688" style="width: 987px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11688" src="https://www.osradar.com/wp-content/uploads/2019/03/6-6.png" alt="6.- Install gnome tweak tool" width="987" height="358" srcset="https://www.osradar.com/wp-content/uploads/2019/03/6-6.png 987w, https://www.osradar.com/wp-content/uploads/2019/03/6-6-300x109.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/6-6-768x279.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/6-6-696x252.png 696w" sizes="(max-width: 987px) 100vw, 987px" /><figcaption id="caption-attachment-11688" class="wp-caption-text">6.- Install gnome tweak tool</figcaption></figure>
<p>It&#8217;s worth noting that you can not only modify GNOME through themes but also through extensions. These extensions are also managed by this tool.</p>
<h3>5) Install Synaptic</h3>
<p>Ubuntu&#8217;s software center is very good. However, it is often unreliable. So it&#8217;s always good to have the old and reliable Synaptic at hand.</p>
<p>Synaptic is a package manager that already has a few years on top that stands out for being fast and easy to install packages, as well as their removal and search.</p>
<pre>:~$ sudo apt install synaptic</pre>
<figure id="attachment_11689" aria-describedby="caption-attachment-11689" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11689" src="https://www.osradar.com/wp-content/uploads/2019/03/7-7.png" alt="7.- Install synaptic" width="1365" height="347" srcset="https://www.osradar.com/wp-content/uploads/2019/03/7-7.png 1365w, https://www.osradar.com/wp-content/uploads/2019/03/7-7-300x76.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/7-7-768x195.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/7-7-1024x260.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/7-7-696x177.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/7-7-1068x271.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11689" class="wp-caption-text">7.- Install synaptic</figcaption></figure>
<p>So, that is it.</p>
<h2>Conclusion</h2>
<p>These are from our point of view, the 5 things you have to do after installing Ubuntu 19.04. The rest is very much up to each user&#8217;s criteria like customizing themes or installing extensions for GNOME.</p>
<p>On the other hand, you can install many more applications like VLC or others to extend the functionality of Ubuntu.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/5-things-to-do-after-install-ubuntu-19-04/">5 things to do after install Ubuntu 19.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/5-things-to-do-after-install-ubuntu-19-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
