<?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>monitoring Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/monitoring/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 03 Aug 2021 19:31:00 +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>Install Monit on Ubuntu 20.04 to monitor the system services</title>
		<link>https://www.osradar.com/install-monit-ubuntu-monitor-system-services/</link>
					<comments>https://www.osradar.com/install-monit-ubuntu-monitor-system-services/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 10 Aug 2021 01:33:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[Monit]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[services]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=31576</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install and configure Monit on Ubuntu 20.04. With this tool, you can quickly monitor the services you have on your server. You will also be able to add others that you manually configure. Introducing to Monit According to the project website Monit is a small [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-monit-ubuntu-monitor-system-services/">Install Monit on Ubuntu 20.04 to monitor the system services</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-line-data">Hello, friends. In this post, you will learn how to install and configure Monit on Ubuntu 20.04. With this tool, you can quickly monitor the services you have on your server. You will also be able to add others that you manually configure.</p>



<h2 class="code-line"><a id="Introducing_to_Monit_2"></a>Introducing to Monit</h2>



<p class="has-line-data">According to the <a href="https://mmonit.com/monit/" target="_blank" rel="noreferrer noopener">project website</a></p>



<blockquote class="wp-block-quote"><p class="has-line-data" data-line-start="6" data-line-end="7">Monit is a small Open Source utility for managing and monitoring Unix systems. Monit conducts automatic maintenance and repair and can execute meaningful causal actions in error situations.</p></blockquote>



<p class="has-line-data">One of the most important features of Monit is that it is quite easy to deploy on supported systems. These include Linux, BSD, and Solaris. So it is compatible with our distribution.</p>



<p class="has-line-data">For example, Monit can act if an error situation should occur, e.g.; if sendmail is not running, Monit can start sendmail again automatically or if apache is using too much resources.</p>



<p class="has-line-data">also, it can monitor the main system resources such as RAM, CPU, and disk space.</p>



<p class="has-line-data">So, let’s get started</p>



<h2 class="code-line"><a id="Install_Monit_on_Ubuntu_2004_16"></a>Install Monit on Ubuntu 20.04</h2>



<p class="has-line-data">First, connect to your server via SSH and update it</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p class="has-line-data">Monit is present in the official Ubuntu repositories so to install it, just run this command:</p>



<pre class="wp-block-preformatted">sudo apt install monit
Reading package lists... Done
Building dependency tree
Reading state information... Done
Suggested packages:
  default-mta | postfix | mail-transport-agent sysvinit-core
The following NEW packages will be installed:
  monit
0 upgraded, 1 newly installed, 0 to remove and 24 not upgraded.
Need to get 320 kB of archives.
After this operation, 964 kB of additional disk space will be used.</pre>



<p class="has-line-data">At the end of the installation, you can check the status of the service</p>



<pre class="wp-block-preformatted">sudo systemctl status monit
● monit.service - LSB: service and resource monitoring daemon
     Loaded: loaded (/etc/init.d/monit; generated)
     Active: active (running) since Tue 2021-08-03 20:27:56 CEST; 31s ago
       Docs: man:systemd-sysv-generator(8)
      Tasks: 1 (limit: 2286)
     Memory: 1.3M
     CGroup: /system.slice/monit.service
             └─1505 /usr/bin/monit -c /etc/monit/monitrc

Aug 03 20:27:56 osradar systemd[1]: Starting LSB: service and resource monitoring daemon...
Aug 03 20:27:56 osradar monit[1494]:  * Starting daemon monitor monit
Aug 03 20:27:56 osradar monit[1494]:    ...done.
Aug 03 20:27:56 osradar systemd[1]: Started LSB: service and resource monitoring daemon.</pre>



<p class="has-line-data">So, Monit is running fine.</p>



<h3 class="code-line"><a id="Enabling_the_web_interface_33"></a>Enabling the web interface</h3>



<p class="has-line-data">To make monitoring more convenient for you, enable the web interface of the program.</p>



<p class="has-line-data">To do this, edit the Monit config file <code>/etc/monit/monitrc</code>.</p>



<p class="has-line-data">First, make a backup of it:</p>



<pre class="wp-block-preformatted">sudo cp /etc/monit/monitrc /etc/monit/monitrc.bak</pre>



<p class="has-line-data">Now edit it using <code>nano</code>.</p>



<pre class="wp-block-preformatted">sudo nano /etc/monit/monitrc</pre>



<p class="has-line-data">note the lines starting with <code>set httpd port 2812 and</code> and <code>allow admin:monit</code> which are commented out and uncomment them</p>



<pre class="wp-block-preformatted">set httpd port 2812 and
allow admin:password</pre>



<p class="has-line-data">You can assign any password you want after <code>admin:</code> save the changes and close the editor.</p>



<p class="has-line-data">You can check the syntax of the file for any errors.</p>



<pre class="wp-block-preformatted">sudo monit -t</pre>



<p class="has-line-data">And to apply the changes, restart monit.</p>



<pre class="wp-block-preformatted">sudo systemctl restart monit</pre>



<p class="has-line-data">Now open your web browser and go to <code>http://your-server:2812</code> and after entering the password you will see the following.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="511" src="https://www.osradar.com/wp-content/uploads/2021/08/1-1-1024x511.png" alt="1.- Monit on Ubuntu 20.04" class="wp-image-31581" srcset="https://www.osradar.com/wp-content/uploads/2021/08/1-1-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/08/1-1-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/1-1-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/1-1-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/08/1-1-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/08/1-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Monit on Ubuntu 20.04</figcaption></figure>



<p class="has-line-data">And you can check the Monit runtime.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/08/2-1024x518.png" alt="2.- Monit Runtime" class="wp-image-31582" srcset="https://www.osradar.com/wp-content/uploads/2021/08/2-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/08/2-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/2-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/2-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/08/2-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/08/2.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Monit Runtime</figcaption></figure>



<h3 class="code-line"><a id="Enabling_services_to_monitor_66"></a>Enabling services to monitor</h3>



<p class="has-line-data">By default, Monit has several service configurations that you can monitor. They are located in the <code>/etc/monit/conf-available/</code> directory.</p>



<pre class="wp-block-preformatted">ls /etc/monit/conf-available/`
acpid apache2 at cron mdadm memcached mysql nginx openntpd openssh-server pdns-recursor postfix rsyslog smartmontools snmpd</pre>



<p class="has-line-data">To enable one, it is only necessary to make a symbolic link to the <code>/etc/monit/conf-enabled/</code> folder, in the case of Apache, this would be</p>



<pre class="wp-block-preformatted">sudo ln -s /etc/monit/conf-available/apache2 /etc/monit/conf-enabled/`</pre>



<p class="has-line-data">And apply the changes by restarting Monit</p>



<pre class="wp-block-preformatted">sudo systemctl restart monit</pre>



<p class="has-line-data">So, enjoy it</p>



<h2 class="code-line"><a id="Conclusion_83"></a>Conclusion</h2>



<p class="has-line-data">Monit helps us to monitor the most critical services of the system from a comfortable graphical interface and with a very simple installation.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-monit-ubuntu-monitor-system-services/">Install Monit on Ubuntu 20.04 to monitor the system services</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-monit-ubuntu-monitor-system-services/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Monitoring your system with Monitorix on Ubuntu 20.04</title>
		<link>https://www.osradar.com/monitoring-your-system-with-monitorix-ubuntu/</link>
					<comments>https://www.osradar.com/monitoring-your-system-with-monitorix-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 18 Jul 2021 23:09:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[server]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=31250</guid>

					<description><![CDATA[<p>Hello, friends. In this post, we will help you to install Monitorix on Ubuntu 20.04. With this great application, you can quickly monitor your computer and know the resource consumption by this. According to the Monitorix website Monitorix is a free, open-source, lightweight system monitoring tool designed to monitor as many services and system resources [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitoring-your-system-with-monitorix-ubuntu/">Monitoring your system with Monitorix 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 class="has-line-data">Hello, friends. In this post, we will help you to install Monitorix on Ubuntu 20.04. With this great application, you can quickly monitor your computer and know the resource consumption by this.</p>



<p class="has-line-data">According to the <a href="https://www.monitorix.org">Monitorix website</a></p>



<blockquote class="wp-block-quote"><p class="has-line-data" data-line-start="4" data-line-end="5">Monitorix is a free, open-source, lightweight system monitoring tool designed to monitor as many services and system resources as possible. It has been created to be used under production Linux/UNIX servers, but due to its simplicity and small size can be used on embedded devices as well.</p></blockquote>



<p class="has-line-data">One of its main advantages is that it is open-source and free. So, we can use it under almost any circumstances or project. In addition to this, it is quite lightweight so it will not be a nuisance on servers or computers with a rather short performance.</p>



<p class="has-line-data"><strong>It is currently in active development adding new features, new graphs, and correcting bugs</strong> in the attempt to offer a great tool for daily systems administration of any professional server.</p>



<p class="has-line-data">Although it was intended for Linux systems like CentOS or RHEL, <strong>it is perfectly compatible with many Linux distributions</strong> and BSD based systems like FreeBSD, OpenBSD and others,</p>



<p class="has-line-data">So, let’s get started.</p>



<h2 class="code-line"><a id="Install_Monitorix_on_Ubuntu_2004_14"></a>Install Monitorix on Ubuntu 20.04</h2>



<p class="has-line-data">The first thing we have to do for this post is to open the server and update it.</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p class="has-line-data">Of course, you can also install it from a local computer.</p>



<p class="has-line-data">Now, Monitorix is available from the official repositories of the distribution, so to install it, just run the following command</p>



<pre class="wp-block-preformatted">sudo apt install monitorix
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  fontconfig fontconfig-config fonts-dejavu-core libcairo2 libcgi-pm-perl libconfig-general-perl libdatrie1 libdbi-perl libdbi1 libemail-date-format-perl
  libencode-locale-perl libfile-listing-perl libfontconfig1 libgdbm-compat4 libgraphite2-3 libharfbuzz0b libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
  libhttp-cookies-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-server-simple-perl libio-html-perl libio-socket-ssl-perl
  liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libmime-lite-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libpango-1.0-0
  libpangocairo-1.0-0 libpangoft2-1.0-0 libperl5.30 libpixman-1-0 librrd8 librrds-perl libthai-data libthai0 libtimedate-perl libtry-tiny-perl liburi-perl libwww-perl
  libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb-render0 libxcb-shm0 libxcb1 libxdmcp6 libxext6 libxml-libxml-perl libxml-namespacesupport-perl
  libxml-sax-base-perl libxml-sax-perl libxml-simple-perl libxrender1 perl perl-modules-5.30 perl-openssl-defaults rrdtool
Suggested packages:
  libclone-perl libmldbm-perl libnet-daemon-perl libsql-statement-perl libdata-dump-perl libcrypt-ssleay-perl default-mta | mail-transport-agent libauthen-ntlm-perl
  perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl make libb-debug-perl liblocale-codes-perl
Recommended packages:
  libcgi-fast-perl libhtml-format-perl libmime-types-perl libauthen-sasl-perl libdata-dump-perl libhtml-form-perl libhttp-daemon-perl libxml-sax-expat-perl
The following NEW packages will be installed:
  fontconfig fontconfig-config fonts-dejavu-core libcairo2 libcgi-pm-perl libconfig-general-perl libdatrie1 libdbi-perl libdbi1 libemail-date-format-perl
  libencode-locale-perl libfile-listing-perl libfontconfig1 libgdbm-compat4 libgraphite2-3 libharfbuzz0b libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
  libhttp-cookies-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-server-simple-perl libio-html-perl libio-socket-ssl-perl
  liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libmime-lite-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libpango-1.0-0
  libpangocairo-1.0-0 libpangoft2-1.0-0 libperl5.30 libpixman-1-0 librrd8 librrds-perl libthai-data libthai0 libtimedate-perl libtry-tiny-perl liburi-perl libwww-perl
  libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb-render0 libxcb-shm0 libxcb1 libxdmcp6 libxext6 libxml-libxml-perl libxml-namespacesupport-perl
  libxml-sax-base-perl libxml-sax-perl libxml-simple-perl libxrender1 monitorix perl perl-modules-5.30 perl-openssl-defaults rrdtool
0 upgraded, 66 newly installed, 0 to remove and 72 not upgraded.
Need to get 14.4 MB of archives.
After this operation, 71.3 MB of additional disk space will be used.
Do you want to continue? [Y/n]</pre>



<p class="has-line-data">Once the installation is complete, the monitorix service will start, which is worth checking to avoid surprises.</p>



<pre class="wp-block-preformatted">sudo systemctl status monitorix</pre>



<p class="has-line-data">This way, we will notice that it is running without problems.</p>



<h3 class="code-line"><a id="Monitorix_Configurations_33"></a>Monitorix Configurations</h3>



<p class="has-line-data">The Monitorix configuration resides in the <code>/etc/monitorix/monitorix.conf</code> file which we need to edit. But first, it is a good idea to back it up.</p>



<pre class="wp-block-preformatted">sudo cp /etc/monitorix/monitorix.conf /etc/monitorix/monitorix.conf.bak</pre>



<p class="has-line-data">Now you can do it with the help of the <code>nano</code> editor.</p>



<pre class="wp-block-preformatted">sudo nano /etc/monitorix/monitorix.conf</pre>



<p class="has-line-data">There are many options you can add/remove so it is best to visit <a href="https://www.monitorix.org/documentation.html">the official documentation</a>.</p>



<p class="has-line-data">To apply any changes you make, you need to restart the service.</p>



<h3 class="code-line"><a id="Using_Monitorix_on_Ubuntu_2004_47"></a>Using Monitorix on Ubuntu 20.04</h3>



<p class="has-line-data">When you have made all the changes you want, you can open your web browser and go to <code>http://your-server:8080/monitorix</code> to see the Monitorix interface. Remember that this port must be available.</p>



<p class="has-line-data">The first thing you will see is the configuration of how the graphs are displayed. In this part, you can define the frequency, and which graphs to display.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="511" src="https://www.osradar.com/wp-content/uploads/2021/07/1-6-1024x511.png" alt="1.- Monitorix screen" class="wp-image-31259" srcset="https://www.osradar.com/wp-content/uploads/2021/07/1-6-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/07/1-6-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/07/1-6-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/07/1-6-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/07/1-6-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/07/1-6.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Monitorix screen</figcaption></figure>



<p class="has-line-data">Then you will see the first graphs. There you can measure CPU consumption, RAM, and so on.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/07/2-5-1024x518.png" alt="2.- Monitorix Graphics on Ubuntu 20.04" class="wp-image-31260" srcset="https://www.osradar.com/wp-content/uploads/2021/07/2-5-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/07/2-5-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/07/2-5-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/07/2-5-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/07/2-5-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/07/2-5.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Monitorix Graphics on Ubuntu 20.04</figcaption></figure>



<p class="has-line-data">Keep scrolling down and you will find other interesting graphs like disk and kernel usage.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/07/3-1-1024x518.png" alt="3.- Monitoring servers with Monitorix on Ubuntu 20.04" class="wp-image-31261" srcset="https://www.osradar.com/wp-content/uploads/2021/07/3-1-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/07/3-1-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/07/3-1-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/07/3-1-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/07/3-1-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/07/3-1.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Monitoring servers with Monitorix on Ubuntu 20.04</figcaption></figure>



<p class="has-line-data">So, enjoy it</p>



<h2 class="code-line"><a id="Conclusion_59"></a>Conclusion</h2>



<p class="has-line-data">Monitoring your server can be a great way to detect network problems. This tool allows us by day, month, and year to detect behavior far from our ideal.</p>



<p class="has-line-data">So, share this post.</p>



<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitoring-your-system-with-monitorix-ubuntu/">Monitoring your system with Monitorix 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/monitoring-your-system-with-monitorix-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Wireshark on Ubuntu 20.04/18.04?</title>
		<link>https://www.osradar.com/install-wireshark-on-ubuntu/</link>
					<comments>https://www.osradar.com/install-wireshark-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 16 Mar 2021 02:14:00 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux mint]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wireshark]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=9187</guid>

					<description><![CDATA[<p>Many things happen in a network, especially if many users use it. Actually, we don&#8217;t know everything that happens on it, and that for some sysadmin or IT professionals is a problem. Basic or relevant information intersect in that exchange. Therefore, there are applications like Wireshark that help to collect statistics on the use of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wireshark-on-ubuntu/">How to install Wireshark on Ubuntu 20.04/18.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>Many things happen in a network, especially if many users use it. Actually, we don&#8217;t know everything that happens on it, and that for some sysadmin or IT professionals is a problem. Basic or relevant information intersect in that exchange. Therefore, there are applications like Wireshark that help to collect statistics on the use of the network protocol and analyze them. With this in mind, today I will teach you how to install Wireshark on Ubuntu 20.04 and 18.04.</p>
<p><a href="https://www.wireshark.org/">Wireshark</a> is a free and opensource web analyzer. It allows you to know from a quite technical point of view what is happening in your network. With this, you can make statistics, specific <a href="http://osradar.com/tag/monitoring/">monitoring</a> or simply know its traffic.</p>
<p>Some of the main features of Wireshark are:</p>
<ul>
<li>Deep inspection of hundreds of protocols, with more being added all the time.</li>
<li>Live capture and offline analysis.</li>
<li>Standard three-pane packet browser.</li>
<li>Captured network data can be browsed via a GUI, or via the TTY-mode TShark utility.<br />
The most powerful display filters in the industry.</li>
<li>Rich VoIP analysis.</li>
</ul>
<p>And many more. However, one of the most outstanding features is that it is <strong>cross-</strong>platform. In other words, you can install it on Windows, Linux, <a href="https://www.osradar.com/tag/freebsd/">FreeBSD</a>, Solaris, and other systems.</p>
<p>So, let&#8217;s install Wireshark.</p>
<h2>1. Install Wireshark on Ubuntu 20.04/18.04</h2>
<p>To install Wireshark more easily on Ubuntu 16.04, it is necessary to use a PPA repository of its developers. We have two options to install, the developing version or the latest stable version. I&#8217;ll show you the process for both, but in this post, I&#8217;ll install the stable version. <strong>If you use Ubuntu 20.04/ 18.04 this is not necessary.</strong></p>
<h3>If you want to install the development version:</h3>
<p>Open a terminal and run:</p>
<pre class="">:~$ sudo add-apt-repository ppa:dreibh/ppa
:~$ sudo apt update
:~$ sudo apt install wireshark</pre>
<p>And that&#8217;s it.</p>
<h3>Install the stable version:</h3>
<p>It is always best to install the stable version of any program. That&#8217;s to avoid major bugs and surprises. It is clear that no application is free of bugs, but stable versions are less prone to them.</p>
<p>Open a Terminal and add the external repository with this command:</p>
<pre class="">:~$ sudo add-apt-repository ppa:wireshark-dev/stable</pre>
<p><figure id="attachment_9188" aria-describedby="caption-attachment-9188" style="width: 1117px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-9188" src="https://www.osradar.com/wp-content/uploads/2019/01/1-11.png" alt="1.- Adding the external repository" width="1117" height="383" srcset="https://www.osradar.com/wp-content/uploads/2019/01/1-11.png 1117w, https://www.osradar.com/wp-content/uploads/2019/01/1-11-300x103.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/1-11-768x263.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/1-11-1024x351.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/1-11-1068x366.png 1068w" sizes="(max-width: 1117px) 100vw, 1117px" /><figcaption id="caption-attachment-9188" class="wp-caption-text">1.- Adding the external repository</figcaption></figure></p>
<p>Next, refresh the APT cache.</p>
<pre class="">:~$ sudo apt update</pre>
<p><figure id="attachment_9189" aria-describedby="caption-attachment-9189" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-9189" src="https://www.osradar.com/wp-content/uploads/2019/01/2-10.png" alt="2.- Running the APT cache" width="1365" height="522" srcset="https://www.osradar.com/wp-content/uploads/2019/01/2-10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/01/2-10-300x115.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/2-10-768x294.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/2-10-1024x392.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/2-10-1068x408.png 1068w, https://www.osradar.com/wp-content/uploads/2019/01/2-10-1098x420.png 1098w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-9189" class="wp-caption-text">2.- Running the APT cache</figcaption></figure></p>
<p>Then install Wireshark.</p>
<pre class="">:~$ sudo apt install wireshark</pre>
<p><figure id="attachment_9190" aria-describedby="caption-attachment-9190" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-9190" src="https://www.osradar.com/wp-content/uploads/2019/01/3-10.png" alt="3.- Install Wireshark" width="1365" height="550" srcset="https://www.osradar.com/wp-content/uploads/2019/01/3-10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/01/3-10-300x121.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/3-10-768x309.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/3-10-1024x413.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/3-10-1068x430.png 1068w, https://www.osradar.com/wp-content/uploads/2019/01/3-10-1042x420.png 1042w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-9190" class="wp-caption-text">3.- Install Wireshark</figcaption></figure></p>
<p>During installation, we will be asked if we want Wireshark to be available to all users member of wireshark group. Say yes.</p>
<p><figure id="attachment_9191" aria-describedby="caption-attachment-9191" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-9191" src="https://www.osradar.com/wp-content/uploads/2019/01/4-11.png" alt="4.- Configuring Wireshark" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/01/4-11.png 1366w, https://www.osradar.com/wp-content/uploads/2019/01/4-11-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/4-11-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/4-11-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/4-11-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/01/4-11-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-9191" class="wp-caption-text">4.- Configuring Wireshark</figcaption></figure></p>
<p>And that&#8217;s it.</p>
<h2>2. Configuring Wireshark</h2>
<p>First, check the version of Wireshark installed.</p>
<pre class="">:~$ wireshark -v</pre>
<p><figure id="attachment_9192" aria-describedby="caption-attachment-9192" style="width: 812px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-9192" src="https://www.osradar.com/wp-content/uploads/2019/01/5-11.png" alt="5.- Check the Wireshark version" width="812" height="490" srcset="https://www.osradar.com/wp-content/uploads/2019/01/5-11.png 812w, https://www.osradar.com/wp-content/uploads/2019/01/5-11-300x181.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/5-11-768x463.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/5-11-696x420.png 696w" sizes="(max-width: 812px) 100vw, 812px" /><figcaption id="caption-attachment-9192" class="wp-caption-text">5.- Check the Wireshark version</figcaption></figure></p>
<p>Next, add your current user to the wireshark group so you can use it without problems.</p>
<pre class="">:~$ sudo usermod -a -G wireshark $USER</pre>
<p>Now, change <code>dumpcap</code> permissions. With this you will make it possible to run without permission problems.</p>
<pre class="">:~$ sudo chgrp wireshark /usr/bin/dumpcap
:~$ sudo chmod 750 /usr/bin/dumpcap
:~$ sudo setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap</pre>
<p><figure id="attachment_9193" aria-describedby="caption-attachment-9193" style="width: 797px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-9193" src="https://www.osradar.com/wp-content/uploads/2019/01/6-10.png" alt="6.- Change the pemissions" width="797" height="181" srcset="https://www.osradar.com/wp-content/uploads/2019/01/6-10.png 797w, https://www.osradar.com/wp-content/uploads/2019/01/6-10-300x68.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/6-10-768x174.png 768w" sizes="(max-width: 797px) 100vw, 797px" /><figcaption id="caption-attachment-9193" class="wp-caption-text">6.- Change the permissions</figcaption></figure></p>
<p>After you do these steps, run Wireshark from the main menu.</p>
<p><figure id="attachment_9194" aria-describedby="caption-attachment-9194" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-9194" src="https://www.osradar.com/wp-content/uploads/2019/01/7-10.png" alt="7.- Wireshark" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/01/7-10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/01/7-10-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/7-10-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/7-10-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/7-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/01/7-10-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-9194" class="wp-caption-text">7.- Wireshark</figcaption></figure></p>
<p>Now, you can start to monitor your network.</p>
<p><em>Note: some case you need to run wireshark as root user.</em></p>
<h2>Conclusion</h2>
<p>Wireshark is a vital tool for many sysadmin or network enthusiasts. Its installation is quite simple but its power is almost unmatched.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wireshark-on-ubuntu/">How to install Wireshark on Ubuntu 20.04/18.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-wireshark-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install SysMonTask on Ubuntu 20.04 &#8211; A Windows 10-style system monitor</title>
		<link>https://www.osradar.com/install-sysmontask-ubuntu-20-04-a-windows-10-style-system-monitor/</link>
					<comments>https://www.osradar.com/install-sysmontask-ubuntu-20-04-a-windows-10-style-system-monitor/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 15 Mar 2021 01:05:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=29031</guid>

					<description><![CDATA[<p>Hello, friends. We like that more and more people are coming from Windows 10 to Linux and specifically to Ubuntu 20.04. That’s why in this post, we will show you how to install SysMonTask on Ubuntu 20.04 which is a system monitor that mimics the appearance of Windows 10. According to the Github profile of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-sysmontask-ubuntu-20-04-a-windows-10-style-system-monitor/">Install SysMonTask on Ubuntu 20.04 &#8211; A Windows 10-style system monitor</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. We like that more and more people are coming from Windows 10 to Linux and specifically to Ubuntu 20.04. That’s why in this post, we will show you how to install SysMonTask on Ubuntu 20.04 which is a system monitor that mimics the appearance of Windows 10.</p>



<p>According to the <a href="https://github.com/KrispyCamel4u/SysMonTask" target="_blank" rel="noreferrer noopener">Github profile</a> of the application, we have the following definition</p>



<blockquote class="wp-block-quote"><p>Linux system monitor with the compactness and usefulness of Windows Task Manager to allow higher control and monitoring.</p></blockquote>



<p>Now, one of the most striking features is that the appearance mimics that of the Windows 10 system monitor, with all that this implies.</p>



<p>But make no mistake, it’s a great application because the <strong>interface is quite clean and integrates very well with the desktop environment</strong>. It is still in an early stage of development so some features will not work well in other desktop environments such as Mate, XFCE, or Cinnamon. In particular, the process tab but don’t worry, support will be added in the future.</p>



<p>Some of the features of the application are:</p>



<ul><li>CPU, Memory, Disk, Disk, and Network resource monitoring graphs.</li><li>CPU, Memory, Disk, Disk, Network Adapters, and Nvidia single GPU usage statistics</li><li>List of disks mounted on the system</li><li>You can get the list of processes running on the system. You can also sort and terminate them.</li><li>It has a dark theme and starts with the theme you have set on the system</li></ul>



<p>For now, the application is only packaged for <a href="https://www.osradar.com/tag/focal" target="_blank" rel="noreferrer noopener">Ubuntu 20.04</a> and <a href="https://www.osradar.com/tag/bionic" target="_blank" rel="noreferrer noopener">18.04</a> and their respective derivatives like Linux Mint and ElementaryOS.</p>



<h2 id="install-sysmontask-on-ubuntu-20.04"><a href="#install-sysmontask-on-ubuntu-20.04" name="install-sysmontask-on-ubuntu-20.04"></a>Install SysMonTask on Ubuntu 20.04</h2>



<p>The best way to install this kind of application is by using the official method provided by the developers. In this case, it is by using the PPA provided by the developers.</p>



<p>So, open a terminal and update Ubuntu</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p>And add the repository in question:</p>



<pre class="wp-block-preformatted">sudo add-apt-repository ppa:camel-neeraj/sysmontask</pre>



<p>Now proceed to install by running</p>



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



<p>Then the developers advise us to launch the application for the first time via terminal with the command</p>



<pre class="wp-block-preformatted">sysmontask</pre>



<p><strong>Note: For Nvidia GPUs, <code>nvidia-smi</code> needs to be installed in your system.</strong></p>



<p>When you run it, you will see the graphical interface, which is very reminiscent of Windows 10.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1005" height="655" src="https://www.osradar.com/wp-content/uploads/2021/03/1-5.png" alt="1.- SysMonTask on Ubuntu 20.04" class="wp-image-29050" srcset="https://www.osradar.com/wp-content/uploads/2021/03/1-5.png 1005w, https://www.osradar.com/wp-content/uploads/2021/03/1-5-300x196.png 300w, https://www.osradar.com/wp-content/uploads/2021/03/1-5-768x501.png 768w, https://www.osradar.com/wp-content/uploads/2021/03/1-5-696x454.png 696w" sizes="(max-width: 1005px) 100vw, 1005px" /><figcaption>1.- SysMonTask on Ubuntu 20.04</figcaption></figure>



<p>Also, you can see the process tab and check all system processes.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1005" height="655" src="https://www.osradar.com/wp-content/uploads/2021/03/2-4.png" alt="2.- Processes tab" class="wp-image-29051" srcset="https://www.osradar.com/wp-content/uploads/2021/03/2-4.png 1005w, https://www.osradar.com/wp-content/uploads/2021/03/2-4-300x196.png 300w, https://www.osradar.com/wp-content/uploads/2021/03/2-4-768x501.png 768w, https://www.osradar.com/wp-content/uploads/2021/03/2-4-696x454.png 696w" sizes="(max-width: 1005px) 100vw, 1005px" /><figcaption>2.- Processes tab</figcaption></figure>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>In Linux every day we have a lot of different applications, in this case, we have a system monitor that Windows users will feel identified with, making the transition easier for many of them.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-sysmontask-ubuntu-20-04-a-windows-10-style-system-monitor/">Install SysMonTask on Ubuntu 20.04 &#8211; A Windows 10-style system monitor</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-sysmontask-ubuntu-20-04-a-windows-10-style-system-monitor/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Sensu GO monitoring tool on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-sensu-go-monitoring-tool-ubuntu/</link>
					<comments>https://www.osradar.com/install-sensu-go-monitoring-tool-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 19 Feb 2021 02:46:00 +0000</pubDate>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[sensu]]></category>
		<category><![CDATA[sensu go]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28571</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install Sensu Go Monitoring Tool on Ubuntu 20.04. With this complete tool you can monitor nodes in your network and at the same time check the health of some applications. Sensu is a complete solution for monitoring and observability at scale. Sensu Go is designed [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-sensu-go-monitoring-tool-ubuntu/">How to install Sensu GO monitoring tool 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>Hello, friends. In this post, you will learn how to install Sensu Go Monitoring Tool on Ubuntu 20.04. With this complete tool you can monitor nodes in your network and at the same time check the health of some applications.</p>



<p>Sensu is a complete solution for monitoring and observability at scale. Sensu Go is designed to give you visibility into everything you care about: traditional server closets, containers, applications, the cloud, and more.</p>



<p>The application is composed of three elements:</p>



<ul><li>Backend: which is the server where the monitoring operations are performed.</li><li>Sensuctl: is a command-line tool for managing resources within Sensu.</li><li>Agent: This microprogram is installed on those devices that we want to monitor.</li></ul>



<p>In this post, we will install the first two, and in another post the agent in another one.</p>



<h2 id="install-sensu-go-monitoring-tool-on-ubuntu-20.04"><a href="#install-sensu-go-monitoring-tool-on-ubuntu-20.04" name="install-sensu-go-monitoring-tool-on-ubuntu-20.04"></a>Install Sensu GO Monitoring Tool on Ubuntu 20.04</h2>



<p><strong>Note:There are many ports that we need to open for the tutorial to work. The complete list can be found at <a href="https://docs.sensu.io/sensu-go/latest/operations/deploy-sensu/install-sensu/">this</a> link.</strong></p>



<p>As powerful as the application is, the reality is that installing Sensu Go is quite easy.</p>



<p>First, in a terminal session update Ubuntu 20.04</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p>After that, you have to install some necessary packages such as <code>gnupg</code></p>



<pre class="wp-block-preformatted">sudo apt install curl gnupg unzip wget</pre>



<p>Sensu Go provides us with a script that adds its repository to our system in a very convenient way:</p>



<pre class="wp-block-preformatted">curl -s https://packagecloud.io/install/repositories/sensu/stable/script.deb.sh | sudo bash
Detected operating system as Ubuntu/focal.
 Checking for curl…
 Detected curl…
 Checking for gpg…
 Detected gpg…
 Running apt-get update… done.
 Installing apt-transport-https… done.
 Installing /etc/apt/sources.list.d/sensu_stable.list…done.
 Importing packagecloud gpg key… done.
 Running apt-get update… done.
 The repository is setup! You can now install packages.</pre>



<p>Once the repository is successfully added to the system, we can start the installation by running:</p>



<pre class="wp-block-preformatted">sudo apt install sensu-go-backend
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  sensu-go-backend
0 upgraded, 1 newly installed, 0 to remove and 53 not upgraded.
Need to get 15.2 MB of archives.
After this operation, 41.5 MB of additional disk space will be used.</pre>



<p>Once the application has been successfully downloaded, it is necessary to download the default configuration file:</p>



<pre class="wp-block-preformatted">curl -L https://docs.sensu.io./sensu-go/latest/files/backend.yml -o backend.yml</pre>



<p>And now move it to the correct location:</p>



<pre class="wp-block-preformatted">sudo mv backend.yml /etc/sensu/</pre>



<p>After this, you will be able to manage Sensu as a <a href="https://www.osradar.com/the-linux-systemctl-command/" target="_blank" rel="noreferrer noopener">system service</a>. So, start it, enable it and check the status of the service</p>



<pre class="wp-block-preformatted">sudo systemctl start sensu-backend
sudo systemctl enable sensu-backend
sudo systemctl status sensu-backend</pre>



<p>As everything is OK you have to start the Backend by assigning it a username and password.</p>



<pre class="wp-block-preformatted">sensu-backend init --interactive
? Cluster Admin Username: admin
? Cluster Admin Password: ******
? Retype Cluster Admin Password: ******
{"component":"backend.seeds","level":"info","msg":"seeding etcd store with intial data","time":"2021-02-17T17:15:36+01:00"}
{"component":"store","level":"warning","msg":"migrating etcd database to a new version","time":"2021-02-17T17:15:36+01:00"}
{"component":"store","database_version":1,"level":"info","msg":"successfully upgraded database","time":"2021-02-17T17:15:36+01:00"}
{"component":"store","database_version":2,"level":"info","msg":"successfully upgraded database","time":"2021-02-17T17:15:36+01:00"}</pre>



<p>Assign a username and a strong password.</p>



<p>Then you need to install <code>sensuctl</code> by running:</p>



<pre class="wp-block-preformatted">sudo apt install sensu-go-cli</pre>



<p>And then you have to configure it by running:</p>



<pre class="wp-block-preformatted">sensuctl configure
? Authentication method: username/password
? Sensu Backend URL: http://127.0.0.1:8080
? Namespace: default
? Preferred output format: tabular
? Username: admin
? Password: ******</pre>



<p>Leave it as I currently show you. Remember that the username and password must be the same as the one you set in the previous step.</p>



<h2 id="testing-the-installation"><a href="#testing-the-installation" name="testing-the-installation"></a>Testing the installation</h2>



<p>After applying the changes, you can check that the backend is working through the web interface provided by the application.</p>



<p>So, access it from <code>http://your-server:3000</code></p>



<p>And you will see the Login screen</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/02/1-5-1024x502.png" alt="1.- Sensu GO login screen" class="wp-image-28572" srcset="https://www.osradar.com/wp-content/uploads/2021/02/1-5-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/02/1-5-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/02/1-5-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/02/1-5-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/02/1-5-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/02/1-5.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Sensu GO login screen</figcaption></figure>



<p>Log in with your username and password and you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/02/2-3-1024x506.png" alt="2.- Sensu Go on Ubuntu 20.04" class="wp-image-28573" srcset="https://www.osradar.com/wp-content/uploads/2021/02/2-3-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/02/2-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/02/2-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/02/2-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/02/2-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/02/2-3.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Sensu Go on Ubuntu 20.04</figcaption></figure>



<p>Obviously, it’s empty because we haven’t added any nodes. But the backend is ready.</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>In this post, you have learned how to install a part of Sensu GO that will allow you to monitor devices on a network. Although it is a very professional application, it is really easy to install.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-sensu-go-monitoring-tool-ubuntu/">How to install Sensu GO monitoring tool 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/install-sensu-go-monitoring-tool-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Netdata on Ubuntu 20.04 / Debian 10</title>
		<link>https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/</link>
					<comments>https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 17 Feb 2021 06:49:00 +0000</pubDate>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[Netdata]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28120</guid>

					<description><![CDATA[<p>Servers are usually the most important part of a network, monitoring and knowing what their performance is is an essential task of any system administrator. They must therefore ensure that they use efficient tools to meet certain objectives. That is why, today you will learn to install Netdata on Ubuntu 20.04 / Debian 10. Netdata [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/">How to install Netdata on Ubuntu 20.04 / Debian 10</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>Servers are usually the most important part of a network</strong>, monitoring and knowing what their performance is is an essential task of any system administrator. They must therefore ensure that they use efficient tools to meet certain objectives. That is why, today you will learn to install Netdata on Ubuntu 20.04 / Debian 10.</p>



<p><a href="https://www.netdata.cloud/">Netdata</a> is a tool to visualize and monitor metrics in real time, optimized to accumulate all types of data. It is also optimized to accumulate all types of data, such as CPU usage, disk activity, SQL queries, website visits, etc. The tool is designed to visualize the now in as much detail as possible, allowing the user to get an overview of what is happening and what has just happened in your system or application.</p>



<h2 id="netdata-is-very-easy-to-use"><a href="#netdata-is-very-easy-to-use" name="netdata-is-very-easy-to-use"></a>Netdata is very easy to use</h2>



<p>For the server monitoring conception conceived by Netdata, it is vital that everything is monitorable. It also has the following attributes.</p>



<ul><li>Out of the box: netdata supports auto-detection for everything. It collects more than 5000 metrics automatically, with zero configuration</li><li>Basically, it can monitor practically in real time and achieves this without sacrificing performance in its execution.</li><li>It is highly customizable thanks to HTML.</li><li>Extensible: Anything you can get a number for, can be given to netdata, using its Plugin API.</li><li>Scalable: netdata scales out, your web browser is the central netdata connecting all your servers together</li></ul>



<h2 id="install-netdata-on-ubuntu-20.04"><a name="install-netdata-on-ubuntu-20.04" href="#install-netdata-on-ubuntu-20.04"></a>Install Netdata on Ubuntu 20.04 / Debian 10</h2>



<p>One of the main advantages of Netdata is that we can install it using the official Ubuntu repositories. This, apart from being secure, will give us the necessary stability in this kind of procedure.</p>



<p>So, open a terminal or <a href="https://www.osradar.com/install-snowflake-ssh-client-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">SSH</a> session.</p>



<p>When you start it, it updates Ubuntu completely.</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p>Once the system is fully upgraded, you can install Netdata by running the following command:</p>



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



<p>Netdata is also managed as a system service, so you can use the systemctl command to start it, stop it, or check its status.</p>



<p>Netdata is now available from <code>http://localhost:19999</code> but you may want to configure Nginx as a reverse proxy.</p>



<h2 id="configuring-nginx-as-reverse-proxy-for-netdata"><a href="#configuring-nginx-as-reverse-proxy-for-netdata" name="configuring-nginx-as-reverse-proxy-for-netdata"></a>Configuring Nginx as reverse proxy for Netdata</h2>



<p>First, install Nginx from the Ubuntu repositories.</p>



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



<p>Next, create a new configuration file for Netdata</p>



<pre class="wp-block-preformatted">sudo nano /etc/nginx/conf.d/netdata.conf</pre>



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



<pre class="wp-block-preformatted">upstream backend {
# the Netdata server
server 127.0.0.1:19999;
keepalive 64;
}
server {
# nginx listens to this
listen 80;
# the virtual host name of this
server_name angtest.ga;

<code data-origin="<pre><code>upstream backend {
# the Netdata server
server 127.0.0.1:19999;
keepalive 64;
}

server {
# nginx listens to this
listen 80;

# the virtual host name of this
server_name angtest.ga;

location / {
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://backend;
    proxy_http_version 1.1;
    proxy_pass_request_headers on;
    proxy_set_header Connection &quot;keep-alive&quot;;
    proxy_store off;
}
}
</code></pre>
<p>">    location / {

    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://backend;
    proxy_http_version 1.1;   </code>
       <code data-origin="<pre><code>upstream backend {
# the Netdata server
server 127.0.0.1:19999;
keepalive 64;
}

server {
# nginx listens to this
listen 80;

# the virtual host name of this
server_name angtest.ga;

location / {
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://backend;
    proxy_http_version 1.1;
    proxy_pass_request_headers on;
    proxy_set_header Connection &quot;keep-alive&quot;;
    proxy_store off;
}
}
</code></pre>
<p>">proxy_pass_request_headers on;
    proxy_set_header Connection "keep-alive";
    proxy_store off;
}
}</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="889" height="488" src="https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx.png" alt="Configuring Nginx for Netdata" class="wp-image-28121" srcset="https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx.png 889w, https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx-300x165.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx-768x422.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/configuring-nginx-696x382.png 696w" sizes="(max-width: 889px) 100vw, 889px" /><figcaption>Configuring Nginx for Netdata</figcaption></figure>



<p>Replace <code>server_name</code> with the name of your server.</p>



<p>It is also a good idea to secure your Netdata installation by installing and adding certificates to enable HTTPS.</p>



<pre class="wp-block-preformatted">So, install Certbot.</pre>



<pre class="wp-block-preformatted">sudo apt install certbot python3-certbot-nginx</pre>



<p>And create the new certificate for your domain by running:</p>



<pre class="wp-block-preformatted">sudo certbot --nginx --agree-tos --redirect --hsts --staple-ocsp --email you@example.com -d your-domain</pre>



<p>Replace the <code>email</code> and <code>-d</code> values with your own.</p>



<p>Finally, restart Nginx.</p>



<pre class="wp-block-preformatted">sudo systemctl restart nginx</pre>



<h2 id="using-netdata"><a href="#using-netdata" name="using-netdata"></a>Using Netdata</h2>



<p>Now you can open netdata from your web browser by opening <a href="https://your-domain">https://your-domain</a> and you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/01/netdata-1024x506.png" alt="Netdata on Ubuntu 20.04 / Debian 10" class="wp-image-28122" srcset="https://www.osradar.com/wp-content/uploads/2021/01/netdata-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/netdata-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/netdata.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Netdata on Ubuntu 20.04 / Debian 10</figcaption></figure>



<p>After that, just check the options on the left side of the screen.</p>



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



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>About Netdata you can say that it’s amazing how easy it is to use. Also, the app is really an Out-The-Box application because you simply don’t have to configure anything extra, it’s just install and go</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-netdata-on-ubuntu-debian/">How to install Netdata on Ubuntu 20.04 / Debian 10</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-netdata-on-ubuntu-debian/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the Munin agent on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-the-munin-agent-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-the-munin-agent-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 09 Feb 2021 03:45:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[munin]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28359</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install Munin Agent on Ubuntu 20.04. Of course, we will also add it to the server so that it can monitor it. In the previous post, you learned how to install Munin on Debian 10. That installation referred to the server-side. Note that Munin monitors [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-the-munin-agent-ubuntu-20-04/">How to install the Munin agent 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>Hello, friends. In this post, you will learn how to install <a href="http://munin-monitoring.org/" target="_blank" rel="noreferrer noopener">Munin</a> Agent on Ubuntu 20.04. Of course, we will also add it to the server so that it can monitor it.</p>



<p>In the previous post, you learned <a href="https://www.osradar.com/install-munin-debian-10/(opens in a new tab)" target="_blank" rel="noreferrer noopener">how to install Munin on Debian 10</a>. That installation referred to the server-side. Note that Munin monitors especially remote machines. Now I will show you how to install the agent or client on an Ubuntu 20.04 machine so that the client is handled by the server. The procedure is quite simple and practical.</p>



<h2 id="install-munin-agent-on-ubuntu-20.04"><a href="#install-munin-agent-on-ubuntu-20.04" name="install-munin-agent-on-ubuntu-20.04"></a>Install Munin Agent on Ubuntu 20.04</h2>



<p>Before we start, you have to know that we are working on two servers. The first one is where we have the Munin server which contains Debian 10. The other one is the client.</p>



<p>Have at hand the IP addresses and hostname of each of them and open the port 4949 on both.</p>



<p>So, on the client, open a terminal session and update Ubuntu.</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p>After that, you need to install the munin-node package which is the package where the Munin client is embedded.</p>



<p>This package is available in the official Ubuntu repositories so the installation is not complex.</p>



<p>So, install the package by running:</p>



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



<p>this way it will be installed.</p>



<h3 id="adding-the-munin-client-to-the-server"><a href="#adding-the-munin-client-to-the-server" name="adding-the-munin-client-to-the-server"></a>Adding the Munin client to the server</h3>



<p>On the client-side, we now have to configure the machine to communicate with the server.</p>



<p>To do this, edit the munin configuration file</p>



<pre class="wp-block-preformatted">sudo nano /etc/munin/munin-node.conf</pre>



<p>And at the end of the file, add the following content:</p>



<pre class="wp-block-preformatted">host_name osradarclient
allow ^192.22.145.141$</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="320" height="116" src="https://www.osradar.com/wp-content/uploads/2021/02/1-2.png" alt="1.- Configuring Munin Agent on Ubuntu 20.04" class="wp-image-28375" srcset="https://www.osradar.com/wp-content/uploads/2021/02/1-2.png 320w, https://www.osradar.com/wp-content/uploads/2021/02/1-2-300x109.png 300w" sizes="(max-width: 320px) 100vw, 320px" /><figcaption>1.- Configuring Munin Agent on Ubuntu 20.04</figcaption></figure>



<p>Remember to change the hostname to the client’s hostname and the client’s IP address. Do not modify the symbols <code>^</code> or <code>\</code> which are necessary.</p>



<p>Save the file and close it.</p>



<p>Apply the changes by restarting the <code>munin-node</code> service.</p>



<pre class="wp-block-preformatted">sudo systemctl restart munin-node.service</pre>



<p>And check the status of the service:</p>



<pre class="wp-block-preformatted">sudo systemctl status munin-node.service</pre>



<h3 id="working-on-the-server"><a href="#working-on-the-server" name="working-on-the-server"></a>Working on the server</h3>



<p>We are almost ready, but we have to adjust some things on the server.</p>



<p>On the server, open the munin configuration file.</p>



<pre class="wp-block-preformatted">sudo nano /etc/munin/munin.conf</pre>



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



<pre class="wp-block-preformatted">[osradarclient]
    address 46.183.114.67
    use_node_name yes</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="641" height="159" src="https://www.osradar.com/wp-content/uploads/2021/02/2.png" alt="2.- Munin Agent" class="wp-image-28376" srcset="https://www.osradar.com/wp-content/uploads/2021/02/2.png 641w, https://www.osradar.com/wp-content/uploads/2021/02/2-300x74.png 300w" sizes="(max-width: 641px) 100vw, 641px" /><figcaption>2.- Munin Agent</figcaption></figure>



<p>Remember that you have to change the hostname and the IP address to the client’s one. This is done so that the program can monitor it.</p>



<p>Apply the changes by restarting the munin services.</p>



<pre class="wp-block-preformatted">sudo systemctl restart munin munin-node.service</pre>



<p>Now we are ready.</p>



<p>Now open a web browser and access the Munin server and you should see the client node already added.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-the-munin-agent-ubuntu-20-04/">How to install the Munin agent 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/install-the-munin-agent-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Munin on Debian 10</title>
		<link>https://www.osradar.com/install-munin-debian-10/</link>
					<comments>https://www.osradar.com/install-munin-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 08 Feb 2021 03:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[munin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28326</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install Munin on DEbian 10. This is the first step before adding nodes to be monitored by this server that we will deploy. What is Munin? According to the Munin website: Munin is a networked resource monitoring tool that can help analyze resource trends and [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-munin-debian-10/">Install Munin on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. In this post, you will learn how to install Munin on DEbian 10. This is the first step before adding nodes to be monitored by this server that we will deploy.</p>



<h2 id="what-is-munin?"><a href="#what-is-munin?" name="what-is-munin?"></a>What is Munin?</h2>



<p>According to the Munin website:</p>



<blockquote class="wp-block-quote"><p>Munin is a networked resource monitoring tool that can help analyze resource trends and “what just happened to kill our performance?” problems. It is designed to be very plug and play. A default installation provides a lot of graphs with almost no work.</p></blockquote>



<p>Munin the monitoring tool surveys all your computers and remembers what it saw. It presents all the information in graphs through a web interface. Its emphasis is on plug and play capabilities. After completing a installation a high number of monitoring plugins will be playing with no more effort.</p>



<p>Using Munin you can easily monitor the performance of your computers, networks, SANs, applications, weather measurements and whatever comes to mind. It makes it easy to determine “what’s different today” when a performance problem crops up. It makes it easy to see how you’re doing capacity-wise on any resources.</p>



<p>So, let us get started.</p>



<h2 id="install-munin-on-debian-10"><a href="#install-munin-on-debian-10" name="install-munin-on-debian-10"></a>Install Munin on DEbian 10</h2>



<p>The first thing you have to do is to install some packages needed to run the Munin web client.</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt install apache2 apache2-utils libcgi-fast-perl libapache2-mod-fcgid</pre>



<p>Then enable the Apache <code>fcgid</code> module:</p>



<pre class="wp-block-preformatted">sudo a2enmod fcgid</pre>



<p>Now you can install munin and some additional packages such as those containing the plugins and for the node.</p>



<pre class="wp-block-preformatted">sudo apt install munin munin-node munin-plugins-extra</pre>



<p>As Muni is accessible from the web, it is convenient to request a username and password to make sure that not just anyone can log in and see the information.</p>



<pre class="wp-block-preformatted">htpasswd -c /etc/munin/munin-htpasswd admin
New password:
Re-type new password:
Adding password for user admin</pre>



<p>You can replace admin with the user of your choice.</p>



<p>Then, enable the default VirtualHost configuration for Munin:</p>



<pre class="wp-block-preformatted">sudo cp -p /etc/munin/apache24.conf /etc/apache2/sites-available/munin.conf</pre>



<p>Enable the new VirtualHost:</p>



<pre class="wp-block-preformatted">sudo a2ensite munin
sudo systemctl reload apache2</pre>



<p>Before using Munin, it is advisable to make some modifications to the virtualhost.</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-available/munin.conf</pre>



<p>And leave the file as follows:</p>



<pre class="wp-block-preformatted">ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
Alias /munin/static/ /var/cache/munin/www/static/

&lt;Directory /var/cache/munin/www&gt;
AuthUserFile /etc/munin/munin-htpasswd
Authtype Basic
AuthName <span class="hljs-string">"Munin"</span>
Require valid-user
Options FollowSymLinks SymLinksIfOwnerMatch
Options None
&lt;/Directory&gt;

   <code class="bash" data-origin="<pre><code class=&quot;bash&quot;>ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
Alias /munin/static/ /var/cache/munin/www/static/

<Directory /var/cache/munin/www>
    AuthUserFile /etc/munin/munin-htpasswd
    Authtype Basic
    AuthName &quot;Munin&quot;
    Require valid-user
    Options FollowSymLinks SymLinksIfOwnerMatch
    Options None
</Directory>

<Directory /usr/lib/munin/cgi>
    AuthUserFile /etc/munin/munin-htpasswd
    Authtype Basic
    AuthName &quot;Munin&quot;
    Require valid-user
    Options FollowSymLinks SymLinksIfOwnerMatch
    <IfModule mod_fcgid.c>
        SetHandler fcgid-script
    </IfModule>
    <IfModule !mod_fcgid.c>
        SetHandler cgi-script
    </IfModule>
</Directory>
</code></pre>
<p>">&lt;Directory /usr/lib/munin/cgi&gt;
    AuthUserFile /etc/munin/munin-htpasswd
    Authtype Basic
    AuthName <span class="hljs-string">"Munin"</span>
    Require valid-user
    Options FollowSymLinks SymLinksIfOwnerMatch
    </code>
   <code class="bash" data-origin="<pre><code class=&quot;bash&quot;>ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
Alias /munin/static/ /var/cache/munin/www/static/

<Directory /var/cache/munin/www>
    AuthUserFile /etc/munin/munin-htpasswd
    Authtype Basic
    AuthName &quot;Munin&quot;
    Require valid-user
    Options FollowSymLinks SymLinksIfOwnerMatch
    Options None
</Directory>

<Directory /usr/lib/munin/cgi>
    AuthUserFile /etc/munin/munin-htpasswd
    Authtype Basic
    AuthName &quot;Munin&quot;
    Require valid-user
    Options FollowSymLinks SymLinksIfOwnerMatch
    <IfModule mod_fcgid.c>
        SetHandler fcgid-script
    </IfModule>
    <IfModule !mod_fcgid.c>
        SetHandler cgi-script
    </IfModule>
</Directory>
</code></pre>
<p>">&lt;IfModule mod_fcgid.c&gt;
        SetHandler fcgid-script
    &lt;/IfModule&gt;
    &lt;IfModule !mod_fcgid.c&gt;
        SetHandler cgi-script
    &lt;/IfModule&gt;
&lt;/Directory&gt;
</code></pre>



<p>Save the changes and close the editor.</p>



<p>And to apply the changes, restart Apache and munin.</p>



<pre class="wp-block-preformatted">sudo systemctl restart apache2 munin-node</pre>



<h2 id="access-to-munin-interface"><a href="#access-to-munin-interface" name="access-to-munin-interface"></a>Access to Munin interface</h2>



<p>Now all you have to do is to verify that the server is working properly and to do this you just have to open a web browser and access http://your-server/munin and you will see the following</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/02/1-1-1024x502.png" alt="1.- Munin on Debian 10" class="wp-image-28360" srcset="https://www.osradar.com/wp-content/uploads/2021/02/1-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/02/1-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/02/1-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/02/1-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/02/1-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/02/1-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Munin on Debian 10</figcaption></figure>



<p>So, Munin is working but you need to add nodes.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-munin-debian-10/">Install Munin on Debian 10</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-munin-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Basic system monitoring with Linux Dash on Ubuntu 20.04</title>
		<link>https://www.osradar.com/basic-system-monitoring-linux-dash-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/basic-system-monitoring-linux-dash-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 24 Jul 2020 23:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[linux-dash]]></category>
		<category><![CDATA[monitoring]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=21830</guid>

					<description><![CDATA[<p>Hello, friends in this post. We&#8217;ll learn how to install Linux Dash on Ubuntu 20.04 This basic monitoring tool is ideal for home servers where you need to get information about your computer&#8217;s performance but without sacrificing resources. A server administrator must be aware of the processes that take place on it, its performance as [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/basic-system-monitoring-linux-dash-ubuntu-20-04/">Basic system monitoring with Linux Dash 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>Hello, friends in this post. We&#8217;ll learn <strong>how to install Linux Dash on Ubuntu 20.04</strong> This basic monitoring tool is ideal for home servers where you need to get information about your computer&#8217;s performance but without sacrificing resources.</p>



<p>A server administrator must be aware of the processes that take place on it, its performance as well as the behavior it has when performing the tasks for which it was installed; all this without sacrificing valuable computer resources, that is, <strong>maximum efficiency is required.</strong></p>



<p><strong>Linux-Dash</strong> is a great web-based monitoring tool that allows you to visualize the behavior of your server in real time, without sacrificing resources. The requirements for its execution are really few: PHP to be interpreted, Apache to be accessed from the web and <a aria-label="undefined (opens in a new tab)" href="https://www.osradar.com/install-git-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">git</a>, if you want to clone your project from GitHub.</p>



<h2>Installing Linux Dash on Ubuntu 20.04</h2>



<p>Before installing Linux Dash, it is a good idea to perform a general system update. This increases the stability of the system, but also prepares the system for downloading packages.</p>



<pre class="wp-block-preformatted">:~$ sudo apt update
:~$ sudo apt upgrade</pre>



<p>Now we can move on.</p>



<h3>1.- Install some required packages</h3>



<p>To install and run Linux Dash, some previous packages are required. These packages are in the official Ubuntu repositories, so installing them is not a big deal.</p>



<pre class="wp-block-preformatted">:~$ sudo apt install wget unzip git apache2 php7.4 php7.4-json libapache2-mod-php7.4
apache2-bin apache2-data apache2-utils libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libjansson4 liblua5.2-0 php-common php7.4-cli php7.4-common
php7.4-opcache php7.4-readline ssl-cert
Suggested packages:
apache2-doc apache2-suexec-pristine | apache2-suexec-custom www-browser php-pear openssl-blacklist zip
The following NEW packages will be installed:
apache2 apache2-bin apache2-data apache2-utils libapache2-mod-php7.4 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libjansson4 liblua5.2-0 php-common
php7.4 php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline ssl-cert unzip
0 upgraded, 20 newly installed, 0 to remove and 0 not upgraded.
Need to get 6048 kB of archives.
After this operation, 26.6 MB of additional disk space will be used.
Do you want to continue? [Y/n]</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="294" src="https://www.osradar.com/wp-content/uploads/2020/07/1-10-1024x294.png" alt="1.- Installing some required packages for Linux Dash on Ubuntu" class="wp-image-21833" srcset="https://www.osradar.com/wp-content/uploads/2020/07/1-10-1024x294.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/1-10-300x86.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/1-10-768x221.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/1-10-696x200.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/1-10-1068x307.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/1-10.png 1364w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Installing some required packages for Linux Dash on Ubuntu</figcaption></figure>



<p>These packages include Apache and PHP which are the basis for running Linux Dash as it is a web-based application.</p>



<h3>2.- Download and install Linux Dash on Ubuntu 20.04</h3>



<p>The next step is to clone the Linux Dash repository. To do this we will use Git. This process guarantees that you have the latest stable version of the application.</p>



<pre class="wp-block-preformatted">:~$ git clone https://github.com/afaqurk/linux-dash.git
Cloning into 'linux-dash'…
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 4520 (delta 0), reused 0 (delta 0), pack-reused 4517
Receiving objects: 100% (4520/4520), 4.58 MiB | 20.00 KiB/s, done.
Resolving deltas: 100% (2670/2670), done.</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="813" height="216" src="https://www.osradar.com/wp-content/uploads/2020/07/2-9.png" alt="2.- Downloading Linux Dash on Ubuntu 20.04" class="wp-image-21834" srcset="https://www.osradar.com/wp-content/uploads/2020/07/2-9.png 813w, https://www.osradar.com/wp-content/uploads/2020/07/2-9-300x80.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/2-9-768x204.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/2-9-696x185.png 696w" sizes="(max-width: 813px) 100vw, 813px" /><figcaption>2.- Downloading Linux Dash on Ubuntu 20.04</figcaption></figure>



<p>In any case, the application is quite light and achieves the objective set in an efficient way. So updating this program will not take long.</p>



<p>When the cloning of the repository is finished, a folder called <code>linux-dash</code> will be generated. This folder has to be moved to the Apache root directory.</p>



<pre class="wp-block-preformatted">:~$ sudo mv linux-dash/ /var/www/html/</pre>



<p>In order for Linux Dash to run smoothly and have access to system resources, it is necessary to change the owner of the folder to www-data which is Apache.</p>



<pre class="wp-block-preformatted">:~$ sudo chown -R www-data:www-data /var/www/html/linux-dash/</pre>



<p>Now make sure that the PHP functions <code>shell_exec</code> and <code>exec</code> are enabled.</p>



<p>To do this, open the file /etc/php/7.4/apache2/php.ini</p>



<pre class="wp-block-preformatted">:~$ sudo nano /etc/php/7.4/apache2/php.ini</pre>



<p>Press <code>CTRL + W</code> to enable searching the file. Type <code>disable_functions</code> and press ENTER. This will take you directly to the line:</p>



<pre class="wp-block-preformatted">disable_functions = pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wte<br>rms</pre>



<p>If the <code>shell_exec</code> and <code>exec</code> modules are in that line, just delete them, save the changes and close the file.</p>



<p>In my case, they were not there so I just closed the file.</p>



<p>So, to apply any changes you may have made, just restart Apache.</p>



<pre class="wp-block-preformatted">:~$ sudo systemct restart apache2</pre>



<p>Finally, now we can run Linux Dash.</p>



<h3>3.- Using Linux Dash</h3>



<p>Once Linux Dash is installed, we can run it through the web interface.</p>



<p>So, open a web browser and go to the following address <code>http://[your-pc-ip-or-domain]/linux-dash</code></p>



<p>In my case, I accessed with the following address <code>http://192.168.250/linux-dash</code></p>



<p>And there the main screen of Linux Dash will be displayed with information about the computer.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/07/3-9-1024x505.png" alt="3.- Linux Dash main screen" class="wp-image-21835" srcset="https://www.osradar.com/wp-content/uploads/2020/07/3-9-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/3-9-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/3-9-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/3-9-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/3-9-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/3-9.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Linux Dash main screen</figcaption></figure>



<p>As you can see, it is very presented in blocks that make it fast and easy to understand.</p>



<p>Also, you can navigate through the tabs to show even more information. For example, this is what the <em>Basic</em> <em>Info</em> tab looks like.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/07/4-4-1024x505.png" alt="4.- Basic info tab on Linux Dash" class="wp-image-21836" srcset="https://www.osradar.com/wp-content/uploads/2020/07/4-4-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/4-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/4-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/4-4-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/4-4-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/4-4.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Basic info tab on Linux Dash</figcaption></figure>



<p>Another interesting aspect is that you can get information about the network traffic that the computer has. Quite useful in many circumstances.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/07/5-3-1024x505.png" alt="5.- Linux Dash on Ubuntu 20.04" class="wp-image-21837" srcset="https://www.osradar.com/wp-content/uploads/2020/07/5-3-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/5-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/5-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/5-3-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/5-3-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/5-3.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Linux Dash on Ubuntu 20.04</figcaption></figure>



<p>So, it is a basic tool but very useful and ideal for home servers or even some production servers where it is required.</p>



<p>Enjoy it.</p>



<h2>Conclusion</h2>



<p>In this post you have learned how to install Linux Dash on Ubuntu 20.04 as you have seen is a basic monitoring tool but very interesting. So, it&#8217;s ideal for test servers or even personal computers.</p>



<p>So, share this post and join <a aria-label="undefined (opens in a new tab)" href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram Channel</a>.</p>



<p><a href="https://github.com/afaqurk/linux-dash" target="_blank" aria-label="undefined (opens in a new tab)" rel="noreferrer noopener">Linux Dash Github Page</a></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/basic-system-monitoring-linux-dash-ubuntu-20-04/">Basic system monitoring with Linux Dash 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/basic-system-monitoring-linux-dash-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Webmin on Ubuntu 20.04 / Debian 10?</title>
		<link>https://www.osradar.com/install-webmin-on-ubuntu-20-04-debian-10/</link>
					<comments>https://www.osradar.com/install-webmin-on-ubuntu-20-04-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 25 Jun 2020 01:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[webmin]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=15389</guid>

					<description><![CDATA[<p>Monitoring a computer is always necessary to verify its operation. Especially if we are talking about a computer connected to an internal network. So, installing a tool with some computer tasks is always a good idea. Therefore, in this post, I will show you how to install Webmin on Ubuntu 20.04 / Debian 10. Webmin [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-webmin-on-ubuntu-20-04-debian-10/">How to install Webmin on Ubuntu 20.04 / Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Monitoring a computer is always necessary to verify its operation. Especially if we are talking about a computer connected to an internal network. So, installing a tool with some computer tasks is always a good idea. Therefore, in this post, I will show you <strong>how to install Webmin on Ubuntu 20.04 / Debian 10.</strong></p>
<p><a href="http://www.webmin.com" rel="noopener">Webmin</a> is a web-based interface for managing UNIX systems. It has a new web interface where you can modify and manage several things on the computer. For example, user accounts, UNIX groups, DNS, and others.</p>
<p>In addition, you will have no license problems with Webmin because it is released under the GPL3 license, which guarantees that you can use it, modify it, and install it as you want.</p>
<p>So, let’s install Webmin on Ubuntu 20.04 / Debian 10.</p>
<h2>Installing Webmin on Ubuntu 20.04 / Debian 10</h2>
<p>Before starting the installation, it is necessary to update the system completely.</p>
<p>So open a terminal session and run the following:</p>
<pre>:~$ sudo apt update
:~$ sudo apt upgrade</pre>
<p>In case you do not have access to sudo on Debian 10, you can use our tutorial and enable it.</p>
<p><a href="https://www.osradar.com/how-to-enable-sudo-on-debian-10/" target="_blank" rel="noopener noreferrer">How to enable sudo on Debian 10?</a></p>
<p>At the end of the upgrade, the system will have security patches that increase the stability of the system.</p>
<p>So, Webmin provides a repository so that the application can be made using APT. This is the most recommended method to install Webmin on Ubuntu 20.04 and Debian 10.</p>
<p>First, install some necessary packages.</p>
<pre>:~$ sudo apt install apt-transport-https gnupg</pre>
<p>Then, edit your APT font list to add the Webmin repository.</p>
<pre>:~$ sudo nano /etc/apt/sources.list</pre>
<p>At the end of the file add this line.</p>
<pre>:~$ deb https://download.webmin.com/download/repository sarge contrib</pre>
<p><figure id="attachment_15502" aria-describedby="caption-attachment-15502" style="width: 695px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-15502 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/1-5-e1593039801959.png" alt="1.- Adding the Webmin repository" width="695" height="72" srcset="https://www.osradar.com/wp-content/uploads/2019/11/1-5-e1593039801959.png 695w, https://www.osradar.com/wp-content/uploads/2019/11/1-5-e1593039801959-300x31.png 300w" sizes="(max-width: 695px) 100vw, 695px" /><figcaption id="caption-attachment-15502" class="wp-caption-text">1.- Adding the Webmin repository</figcaption></figure></p>
<p>Then download and add the GPG key from the repository. This further secures the webmin download.</p>
<pre>:~$ wget http://www.webmin.com/jcameron-key.asc
:~$ sudo apt-key add jcameron-key.asc</pre>
<p><figure id="attachment_15503" aria-describedby="caption-attachment-15503" style="width: 1324px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-15503" src="https://www.osradar.com/wp-content/uploads/2019/11/2-5.png" alt="2.- Importing the GPG key" width="1324" height="295" srcset="https://www.osradar.com/wp-content/uploads/2019/11/2-5.png 1324w, https://www.osradar.com/wp-content/uploads/2019/11/2-5-300x67.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/2-5-768x171.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/2-5-1024x228.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/2-5-696x155.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/2-5-1068x238.png 1068w" sizes="(max-width: 1324px) 100vw, 1324px" /><figcaption id="caption-attachment-15503" class="wp-caption-text">2.- Importing the GPG key</figcaption></figure></p>
<p>After that, refresh the APT source and install Webmin.</p>
<pre>:~$ sudo apt install webmin</pre>
<p><figure id="attachment_15504" aria-describedby="caption-attachment-15504" style="width: 1326px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-15504 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/3-6.png" alt="3.- Installing Webmin on Ubuntu 20.04 /  Debian 10" width="1326" height="225" srcset="https://www.osradar.com/wp-content/uploads/2019/11/3-6.png 1326w, https://www.osradar.com/wp-content/uploads/2019/11/3-6-300x51.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/3-6-768x130.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/3-6-1024x174.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/3-6-696x118.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/3-6-1068x181.png 1068w" sizes="(max-width: 1326px) 100vw, 1326px" /><figcaption id="caption-attachment-15504" class="wp-caption-text">3.- Installing Webmin on Ubuntu 20.04 / Debian 10</figcaption></figure></p>
<p>Webmin uses port 10000 to run. So make sure that port is available on the server.</p>
<p>Now you can acess using your web browser. Just go to <code>https://your-server:10000</code>.</p>
<p><figure id="attachment_15505" aria-describedby="caption-attachment-15505" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-15505" src="https://www.osradar.com/wp-content/uploads/2019/11/4-4.png" alt="4.- Webmin login page" width="1365" height="668" srcset="https://www.osradar.com/wp-content/uploads/2019/11/4-4.png 1365w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-1024x501.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/11/4-4-858x420.png 858w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-15505" class="wp-caption-text">4.- Webmin login page</figcaption></figure></p>
<p>Just type your system credentials. And you will see the dashboard.</p>
<p><figure id="attachment_21359" aria-describedby="caption-attachment-21359" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-21359 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/1-22.png" alt="5.- Webmin dashboard on Ubuntu 20.04 / Debian 10" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/11/1-22.png 1366w, https://www.osradar.com/wp-content/uploads/2019/11/1-22-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/1-22-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/1-22-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/1-22-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/1-22-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-21359" class="wp-caption-text">5.- Webmin dashboard on Ubuntu 20.04 / Debian 10</figcaption></figure></p>
<p>Also, you can enable the Night mode.</p>
<p><figure id="attachment_21360" aria-describedby="caption-attachment-21360" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-21360" src="https://www.osradar.com/wp-content/uploads/2019/11/2-21.png" alt="6.- Night mode on Webmin" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/11/2-21.png 1366w, https://www.osradar.com/wp-content/uploads/2019/11/2-21-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/2-21-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/2-21-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/2-21-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/2-21-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-21360" class="wp-caption-text">6.- Night mode on Webmin</figcaption></figure></p>
<p>So, you can now use it.</p>
<h2>Conclusion</h2>
<p>Webmin is one of those applications that can be easy to install but help to know the system information quickly and accurately. It has a special package for Ubuntu 20.04 and Debian 10 which makes it easier to install.</p>
<p>Please, share this post and join Our <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-webmin-on-ubuntu-20-04-debian-10/">How to install Webmin on Ubuntu 20.04 / Debian 10?</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-webmin-on-ubuntu-20-04-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
