<?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>linux-dash Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/linux-dash/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 24 Jul 2020 16:20:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<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>
	</channel>
</rss>
