<?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>gotop Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/gotop/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 02 Feb 2019 14:56:12 +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>Using Gotop a graphical system monitor</title>
		<link>https://www.osradar.com/using-gotop-a-graphical-system-monitor/</link>
					<comments>https://www.osradar.com/using-gotop-a-graphical-system-monitor/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 04 Feb 2019 05:00:09 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[gotop]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[htop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[top]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=10489</guid>

					<description><![CDATA[<p>It is always a good idea to know various tools for monitoring systems from the terminal. Of course, they can not be compared to professional tools like Zabbix, but neither do many users really need them. We&#8217;ve already talked about Hegemon. Now it is Gotop&#8217;s turn. Using Gotop you can see the resources spent by [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/using-gotop-a-graphical-system-monitor/">Using Gotop a graphical 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>It is always a good idea to know various tools for monitoring systems from the terminal. Of course, they can not be compared to professional tools like Zabbix, but neither do many users really need them. We&#8217;ve already talked about Hegemon. Now it is Gotop&#8217;s turn. Using Gotop you can see the resources spent by the system in a very friendly way.</p>
<p><a href="https://github.com/cjbassi/gotop" rel="noopener">Gotop is another terminal based graphical</a> activity monitor, inspired by gtop and vtop, this time written in Go. With this tool, you can visualize the resources that your system consumes in a very friendly way. It is written in <a href="https://www.osradar.com/install-go-language-ubuntu-18-04/" rel="noopener">Go</a> with many advantages in execution time. It is quite fast and does not consume almost resources.</p>
<p>Some of its main features are:</p>
<ul>
<li>It is available for all Linux distributions. As well as for Mac OS and BSD.</li>
<li>You can customize the color scheme of the application adapting it to your needs.</li>
<li>It is open source. The program is released under the <a href="https://github.com/cjbassi/gotop/blob/master/LICENSE" rel="noopener">GNU Affero General Public License</a>.</li>
<li>You can monitor CPU, Network, RAM, battery level and processes.</li>
</ul>
<p>And many more.</p>
<p>So, let using Gotop.</p>
<h2>1. Upgrade the system</h2>
<p>The first step is to update the system so that it has the best possible performance and you will be able to show more accurate data when running Gotop.</p>
<p>So, in <a href="https://www.osradar.com/set-up-dhcp-server-debian-9/" rel="noopener">Debian</a>, <a href="https://www.osradar.com/install-apachemq-ubuntu-18-04/" rel="noopener">Ubuntu</a>, and derivates:</p>
<pre class="">:~$ sudo apt update &amp;&amp; sudo apt upgrade</pre>
<figure id="attachment_10490" aria-describedby="caption-attachment-10490" style="width: 991px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10490" src="https://www.osradar.com/wp-content/uploads/2019/02/1-1.png" alt="1.- Upgrade the system" width="991" height="363" srcset="https://www.osradar.com/wp-content/uploads/2019/02/1-1.png 991w, https://www.osradar.com/wp-content/uploads/2019/02/1-1-300x110.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/1-1-768x281.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/1-1-696x255.png 696w" sizes="(max-width: 991px) 100vw, 991px" /><figcaption id="caption-attachment-10490" class="wp-caption-text">1.- Upgrade the system</figcaption></figure>
<p>&nbsp;</p>
<p>For <a href="https://www.osradar.com/how-to-install-zabbix-server-4-on-centos-7/" rel="noopener">CentOS</a> 7 and RHEL:</p>
<pre class="">:~$ sudo yum update</pre>
<p>If you are using <a href="https://osradar.com/tag/fedora/" rel="noopener">Fedora</a> 28, 29:</p>
<pre class="">:~$ sudo dnf update</pre>
<p>Finally, if you are using OpenSUSE, you can update the system with this command:</p>
<pre class="">:~$ sudo zypper up</pre>
<p>Once you have updated the system, you can move on.</p>
<h2>2. Installing and using Gotop</h2>
<p>Now it is time for installation. To do this, first, you have to download the binaries from the <a href="https://github.com/cjbassi/gotop/releases" rel="noopener">download section</a> of the project website.</p>
<p>At the time of writing this post, the latest stable version of Gotop is 2.0 which introduces new features such as the ability to monitor the battery of a laptop.</p>
<p>So, download it.</p>
<pre class="">:~$ wget -c https://github.com/cjbassi/gotop/releases/download/2.0.0/gotop_2.0.0_linux_amd64.tgz</pre>
<figure id="attachment_10491" aria-describedby="caption-attachment-10491" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10491" src="https://www.osradar.com/wp-content/uploads/2019/02/2-1.png" alt="2.- Download Gotop" width="1365" height="504" srcset="https://www.osradar.com/wp-content/uploads/2019/02/2-1.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/2-1-300x111.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/2-1-768x284.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/2-1-1024x378.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/2-1-696x257.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/2-1-1068x394.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/2-1-1138x420.png 1138w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-10491" class="wp-caption-text">2.- Download Gotop</figcaption></figure>
<p>Of course, if you do not have wget installed, you have to do it.</p>
<p>For Debian, Ubuntu, Linux Mint and derivates:</p>
<pre class="">:~$ sudo apt install wget</pre>
<p>In case, you are using CentOS 7 and RHEL:</p>
<pre class="">:~$ yum install wget</pre>
<p>For Fedora 29:</p>
<pre class="">:~$ sudo dnf install wget</pre>
<p>Finally, if you are using OpenSUSE:</p>
<pre class="">:~$ sudo zypper in wget</pre>
<p>However, wget is a main component of the system. It is likely installed by default.</p>
<p>Next, decompress the file.</p>
<pre class="">:~$ tar -xvzf gotop_2.0.0_linux_amd64.tgz</pre>
<figure id="attachment_10492" aria-describedby="caption-attachment-10492" style="width: 826px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10492" src="https://www.osradar.com/wp-content/uploads/2019/02/3-1.png" alt="3.- Decompress the file" width="826" height="141" srcset="https://www.osradar.com/wp-content/uploads/2019/02/3-1.png 826w, https://www.osradar.com/wp-content/uploads/2019/02/3-1-300x51.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/3-1-768x131.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/3-1-696x119.png 696w" sizes="(max-width: 826px) 100vw, 826px" /><figcaption id="caption-attachment-10492" class="wp-caption-text">3.- Decompress the file</figcaption></figure>
<p>Now, run it.</p>
<pre class="">:~$ ./gotop</pre>
<figure id="attachment_10494" aria-describedby="caption-attachment-10494" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10494" src="https://www.osradar.com/wp-content/uploads/2019/02/5-1.png" alt="5.- Using Gotop" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/5-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/5-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/5-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/5-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/5-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/5-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/5-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10494" class="wp-caption-text">5.- Using Gotop</figcaption></figure>
<p>To exit, press CTRL + C.</p>
<p>If you want more options, you can show the help.</p>
<pre class="">:~$ ./gotop --help</pre>
<figure id="attachment_10496" aria-describedby="caption-attachment-10496" style="width: 764px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10496" src="https://www.osradar.com/wp-content/uploads/2019/02/6-1.png" alt="6.- Gotop help" width="764" height="368" srcset="https://www.osradar.com/wp-content/uploads/2019/02/6-1.png 764w, https://www.osradar.com/wp-content/uploads/2019/02/6-1-300x145.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/6-1-696x335.png 696w" sizes="(max-width: 764px) 100vw, 764px" /><figcaption id="caption-attachment-10496" class="wp-caption-text">6.- Gotop help</figcaption></figure>
<p>So, you can change the color schemes. For example:</p>
<pre class="">:~$ ./gotop --color=monokai</pre>
<figure id="attachment_10497" aria-describedby="caption-attachment-10497" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10497" src="https://www.osradar.com/wp-content/uploads/2019/02/7-1.png" alt="7.- Gotop with another color scheme" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/7-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/7-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/7-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/7-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/7-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/7-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/7-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10497" class="wp-caption-text">7.- Gotop with another color scheme</figcaption></figure>
<p>Or, enable the averages.</p>
<pre class="">:~$ ./gotop -a</pre>
<figure id="attachment_10498" aria-describedby="caption-attachment-10498" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10498" src="https://www.osradar.com/wp-content/uploads/2019/02/8-1.png" alt="8.- Show the average use of cpu" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/8-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/8-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/8-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/8-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/8-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/8-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10498" class="wp-caption-text">8.- Show the average use of CPU</figcaption></figure>
<h2>Conclusion</h2>
<p>It is always good to have tools to monitor the state of our system. Now we have another tool that will help us with the task in a simple and friendly.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/using-gotop-a-graphical-system-monitor/">Using Gotop a graphical 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/using-gotop-a-graphical-system-monitor/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
