<?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>tool Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/tool/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 09 Jan 2021 15:25:38 +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 FengOffice on Debian 10</title>
		<link>https://www.osradar.com/install-fengoffice-debian-10/</link>
					<comments>https://www.osradar.com/install-fengoffice-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 13 Jan 2021 06:24:00 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fengoffice]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27514</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install FengOffice Server on Debian 10. According to the FengOffice website Feng Office is an integrated suite of software designed to help your organization run better. Stay connected to your customers, meet project deadlines, find information faster and grow your organization. This is a tool [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-fengoffice-debian-10/">Install FengOffice 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 FengOffice Server on Debian 10.</p>



<p>According to the <a href="https://www.fengoffice.com/web/" target="_blank" rel="noreferrer noopener">FengOffice website</a></p>



<blockquote class="wp-block-quote"><p>Feng Office is an integrated suite of software designed to help your organization run better. Stay connected to your customers, meet project deadlines, find information faster and grow your organization.</p></blockquote>



<p>This is a tool that can be very useful in professional environments. We also have a paid version with professional support and a community version that we can use in smaller projects.</p>



<h2>Install FengOffice on Debian 10</h2>



<p>The installation of FengOffice is possible using a server that has MariaDB, PHP, and of course, a server like Apache.</p>



<h3>1.- Install Apache, PHP 7.1, and MariaDB on Debian 10</h3>



<p>So, it is necessary to install Apache, MariaDB, and PHP 7.1 which is the version that will not give us problems with FengOffice.</p>



<p>So, we have to add the repository to install PHP 7.1</p>



<pre class="wp-block-preformatted">wget https://packages.sury.org/php/apt.gpg<br>sudo apt-key add apt.gpg<br>echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php7.list</pre>



<p>And finally, install all the necessary packages:</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt install apache2 mariadb-server php7.1 php7.1-mysql php7.1-curl php7.1-json php7.1-cgi libapache2-mod-php7.1 php7.1-xmlrpc php7.1-gd php7.1-mbstring php7.1-common php7.1-soap php7.1-xml php7.1-intl php7.1-cli php7.1-ldap php7.1-readline php7.1-imap php7.1-tidy php7.1-recode php7.1-zip php7.1-sq unzip catdoc xpdf ghostscript imagemagick wkhtmltopdf</pre>



<p>Don&#8217;t forget to configure MariaDB with the mysql_secure_installation script</p>



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



<p>Define the root password and answer the questions indicated.</p>



<h3>2.- Creting the new Database for FengOffice</h3>



<p>Now it is necessary to create a new database together with a new user using FengOffice.</p>



<p>Open the MariaDB shell:</p>



<pre class="wp-block-preformatted">sudo mysql -u root -p</pre>



<p>And it creates the database as well as the user and assigns the corresponding permissions:</p>



<pre class="wp-block-preformatted">CREATE DATABASE fengdb;<br>GRANT ALL PRIVILEGES ON fengdb.* TO 'fenguser'@'localhost' IDENTIFIED BY 'fengpss';<br>FLUSH PRIVILEGES;<br>EXIT;</pre>



<p>You can change the values of the database, the user, and the password on your own. The password must be strong enough.</p>



<h3>3.- Configure PHP before using FengOffice</h3>



<p>To ensure the highest possible stability, it is recommended to make some changes to PHP. More than anything else we will increase the resources it can consume.</p>



<p>So, in the files <code>/etc/php/7.1/cli/php.ini</code> and <code>/etc/php/7.1/apache2/php.ini</code> set the following values.</p>



<pre class="wp-block-preformatted">max_execution_time = 300<br>max_input_time = 300<br>memory_limit = 512M<br>html_errors = Off<br>post_max_size = 250M<br>upload_max_filesize = 200M</pre>



<p>As you are using nano, a very quick way to do this is to press the <code>CTRL + W</code> keys to enable the search and make everything easier.</p>



<p>When you make your changes, close the editor and apply your changes:</p>



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



<h3>4.- Download FengOffice on Debian 10</h3>



<p>Now we can download FengOffice without any problem</p>



<p>To do this, execute <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener">the command wget</a></p>



<pre class="wp-block-preformatted">wget -O fengoffice.zip --no-check-certificate https://www.fengoffice.com/web/reference.php?dest=latest_version
--2021-01-07 19:38:45--  https://www.fengoffice.com/web/reference.php?dest=latest_version
 Resolving www.fengoffice.com (www.fengoffice.com)… 192.99.15.151
 Connecting to www.fengoffice.com (www.fengoffice.com)|192.99.15.151|:443… connected.
 HTTP request sent, awaiting response… 302 Found
 Location: https://github.com/fengoffice/fengoffice/archive/3.7.0.5.zip [following]
 --2021-01-07 19:38:46--  https://github.com/fengoffice/fengoffice/archive/3.7.0.5.zip
 Resolving github.com (github.com)… 140.82.121.4
 Connecting to github.com (github.com)|140.82.121.4|:443… connected.
 HTTP request sent, awaiting response… 302 Found
 Location: https://codeload.github.com/fengoffice/fengoffice/zip/3.7.0.5 [following]
 --2021-01-07 19:38:46--  https://codeload.github.com/fengoffice/fengoffice/zip/3.7.0.5
 Resolving codeload.github.com (codeload.github.com)… 140.82.121.10
 Connecting to codeload.github.com (codeload.github.com)|140.82.121.10|:443… connected.
 HTTP request sent, awaiting response… 200 OK
 Length: unspecified [application/zip]
 Saving to: ‘fengoffice.zip’
 fengoffice.zip                                 [        &lt;=&gt;                                                                           ]  14.43M  9.06MB/s    in 1.6s    
 2021-01-07 19:38:48 (9.06 MB/s) - ‘fengoffice.zip’ saved [15128364]</pre>



<p>And after the download is done, you can decompress the file with the command unzip</p>



<pre class="wp-block-preformatted">unzip fengoffice.zip</pre>



<p>Move the generated folder to the Apache root directory.</p>



<pre class="wp-block-preformatted">sudo mv fengoffice-3.7.0.5 /var/www/html/fengoffice</pre>



<p>And assign the necessary permissions to the folder. Also, make Apache the owner of the folder.</p>



<pre class="wp-block-preformatted">sudo chown -R www-data:www-data /var/www/html/fengoffice<br>sudo chmod -R 777 /var/www/html/fengoffice</pre>



<p>After this, create a new Virtualhost for FengOffice:</p>



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



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



<pre class="wp-block-preformatted">&lt;VirtualHost *:80&gt;
          ServerAdmin admin@your-server.com
          DocumentRoot /var/www/html/fengoffice
          ServerName your-server.com

         &lt;Directory /var/www/html/fengoffice/&gt;
               Options FollowSymlinks
               AllowOverride All
               Require all granted
         &lt;/Directory&gt;

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

&lt;/VirtualHost&gt;</pre>



<p>Replace the <code>ServerName</code> and <code>ServerAdmin</code> values with your own.</p>



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



<p>Then, activate the new Virtualhost as well as the rewrite modules and headers</p>



<pre class="wp-block-preformatted">sudo a2ensite feng.conf<br>sudo a2enmod rewrite headers</pre>



<p>And apply the changes by restarting Apache</p>



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



<h3>5.- Secure the installation with Let&#8217;s Encrypt</h3>



<p>If you are going to use FengOffice on a server that will be accessible from the Internet then you should use HTTPS</p>



<p>There is nothing better than Let&#8217;s Encrypt to generate certificates for your domain quickly and conveniently.</p>



<p>So, install the packages with the following command</p>



<pre class="wp-block-preformatted">sudo apt install certbot python-certbot-apache</pre>



<p>Now create and add the certificate with the following command</p>



<pre class="wp-block-preformatted">sudo certbot --apache -d your-domain.com</pre>



<p>Follow the instructions and at the end, you will be able to access it using HTTPS</p>



<h3>6.- Install FengOffice on Debian 10</h3>



<p>Now you can access <code>https://your-domain</code> and you will see the following 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/01/2-4-1024x502.png" alt="2.- Welcome screen" class="wp-image-27516" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/2-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Welcome screen</figcaption></figure>



<p>Afterwards, the installer will verify that the whole system meets the requirements.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/3-3-1024x525.png" alt="3.- Environment checks" class="wp-image-27517" srcset="https://www.osradar.com/wp-content/uploads/2021/01/3-3-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/3-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Environment checks</figcaption></figure>



<p>Then you have to type the values of the database we have created as well as the credentials of the new user.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="568" src="https://www.osradar.com/wp-content/uploads/2021/01/4-1-1024x568.png" alt="4.- Database configuration" class="wp-image-27518" srcset="https://www.osradar.com/wp-content/uploads/2021/01/4-1-1024x568.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-300x166.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-768x426.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-696x386.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-1068x593.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/4-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Database configuration</figcaption></figure>



<p>Next, you will see a screen indicating that the installation was successful and then you will have to create the new user by clicking <em>Finish</em>.</p>



<p>Create the new admin user with the credentials you want.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/5-1-1024x525.jpg" alt="5.- Creating the new user" class="wp-image-27519" srcset="https://www.osradar.com/wp-content/uploads/2021/01/5-1-1024x525.jpg 1024w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-300x154.jpg 300w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-768x394.jpg 768w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-696x357.jpg 696w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-1068x547.jpg 1068w, https://www.osradar.com/wp-content/uploads/2021/01/5-1.jpg 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Creating the new user</figcaption></figure>



<p>Then you will see the login screen</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/6-1-1024x525.png" alt="6.- FengOffice login screen" class="wp-image-27520" srcset="https://www.osradar.com/wp-content/uploads/2021/01/6-1-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/6-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- FengOffice login screen</figcaption></figure>



<p>And now yes the administration panel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/7-1-1024x525.png" alt="7.- FengOffice running on Debian 10" class="wp-image-27521" srcset="https://www.osradar.com/wp-content/uploads/2021/01/7-1-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/7-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- FengOffice running on Debian 10</figcaption></figure>



<p>Enjoy it.</p>



<h2>Conclusion</h2>



<p>FengOffice is used by many companies worldwide as a practical solution to collaborative environments. This application is quite good and easy to install as we have noticed today</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-fengoffice-debian-10/">Install FengOffice 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-fengoffice-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Monitoring WiFi with Wavemon</title>
		<link>https://www.osradar.com/monitoring-wifi-with-wavemon/</link>
					<comments>https://www.osradar.com/monitoring-wifi-with-wavemon/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 30 Dec 2019 23:24:00 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[wavemon]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16579</guid>

					<description><![CDATA[<p>Although Linux is a pretty secure and flexible system, the truth is that by default it does not have a tool to monitor our wifi hardware. That is why in this post I will talk about a tool to do it called Wavemon: a wonderfull tool to monitoring wifi. Wavemon is a CLI tool written [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitoring-wifi-with-wavemon/">Monitoring WiFi with Wavemon</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Although Linux is a pretty secure and flexible system, the truth is that by default it does not have a tool to monitor our wifi hardware. <strong>That is why in this post I will talk about a tool to do it called Wavemon: a wonderfull tool to monitoring wifi.<br /></strong></p>
<p><a href="https://github.com/uoaerg/wavemon" target="_blank" rel="noopener noreferrer">Wavemon</a> is a CLI tool written in C and open source that provides information about our wifi hardware. The interesting thing about the tool is that it gives us detailed information about our hardware as well as the active wireless connection.</p>
<p>On the other hand, Wavemon is compatible with all hardware recognized by the Linux kernel. This means that if your wireless device is recognized and works well, you should have no problems with Wavemon.</p>
<h2>Install Wavemon on Linux</h2>
<p>Fortunately Wavemon is available on most Linux distributions through the official repositories. So installation should not be a problem.</p>
<p>If you use Debian, Ubuntu, Linux Mint or any derivative, just use the following command:</p>
<pre>:~$ sudo apt install wavemon</pre>
<figure id="attachment_17102" aria-describedby="caption-attachment-17102" style="width: 975px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17102" src="https://www.osradar.com/wp-content/uploads/2019/12/1-13.png" alt="1.- Install Wavemon on Ubuntu" width="975" height="407" srcset="https://www.osradar.com/wp-content/uploads/2019/12/1-13.png 975w, https://www.osradar.com/wp-content/uploads/2019/12/1-13-300x125.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/1-13-768x321.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/1-13-696x291.png 696w" sizes="(max-width: 975px) 100vw, 975px" /><figcaption id="caption-attachment-17102" class="wp-caption-text">1.- Install Wavemon on Ubuntu</figcaption></figure>
<p>On the contrary, if you use Manjaro, Arch Linux or other derivative, you only have to use pacman.</p>
<pre>:~$ sudo pacman -S wavemon</pre>
<p>If you use CentOS, the <a href="https://www.osradar.com/nable-the-epel-repository-centos-rhel-oracle-linux-8/" target="_blank" rel="noopener noreferrer">EPEL repository</a> must be enabled and then installed.</p>
<p>In the case of fedora, if it is in the repositories and it is installed with the following command</p>
<pre>:~$ sudo dnf install wavemon</pre>
<p>However if you use another distribution, on the <a href="https://github.com/uoaerg/wavemon" target="_blank" rel="noopener noreferrer">project&#8217;s Github site</a>, there are instructions for compiling the program.</p>
<h2>Monitoring WiFi with Wavemon is really easy</h2>
<p>One of the main advantages of Wavemon is the great ease of use. Everything is visible. There are no tricks but everything is there.</p>
<p>Once you install it, you can run it from the terminal with the following command:</p>
<pre>:~$ wavemon</pre>
<figure id="attachment_17104" aria-describedby="caption-attachment-17104" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17104" src="https://www.osradar.com/wp-content/uploads/2019/12/2-12.png" alt="2.- Wavemon allows monitoring wifi easily" width="1366" height="767" srcset="https://www.osradar.com/wp-content/uploads/2019/12/2-12.png 1366w, https://www.osradar.com/wp-content/uploads/2019/12/2-12-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/2-12-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/2-12-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/2-12-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/2-12-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/2-12-748x420.png 748w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-17104" class="wp-caption-text">2.- Wavemon allows monitoring wifi easily</figcaption></figure>
<p>As you can see in the image, there is a lot of useful information, perfectly displayed.</p>
<p>First of all, we have the interface information. There we will find the SSID of the active wifi connection.</p>
<p>We can also see the signal strength and quality. In my case, I am close to the wifi device so the quality is high.</p>
<p>Then, we will see a statistics section where we will see the sent and received packages.</p>
<p>In info we will obtain many more data like the time of connection, the frequency and the channel.</p>
<p>Finally, we will be able to see the mac address of our device as well as the public IP address.</p>
<p>As you can see, all easy and fast.</p>
<p>At the bottom we can access the other screens. If you press F2 or l you will see the following screen:</p>
<figure id="attachment_17105" aria-describedby="caption-attachment-17105" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17105" src="https://www.osradar.com/wp-content/uploads/2019/12/3-13.png" alt="3.-Level histogram" width="1366" height="767" srcset="https://www.osradar.com/wp-content/uploads/2019/12/3-13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/12/3-13-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/3-13-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/3-13-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/3-13-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/3-13-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/3-13-748x420.png 748w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-17105" class="wp-caption-text">3.-Level histogram</figcaption></figure>
<p>There you will see a histogram showing the signal level and strength of the network.</p>
<p>But Wavemon is flexible and has a preference screen:</p>
<figure id="attachment_17106" aria-describedby="caption-attachment-17106" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17106" src="https://www.osradar.com/wp-content/uploads/2019/12/4-10.png" alt="4.- Wavemon preferences screen" width="1366" height="767" srcset="https://www.osradar.com/wp-content/uploads/2019/12/4-10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/12/4-10-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/4-10-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/4-10-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/4-10-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/4-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/4-10-748x420.png 748w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-17106" class="wp-caption-text">4.- Wavemon preferences screen</figcaption></figure>
<p>And that&#8217;s how easy it is to use Wavemon.</p>
<p>If you want more information, you can check the wavemon man page in the terminal:</p>
<pre>:~$ man wavemon</pre>
<p>So, enjoy it.</p>
<p> </p>


<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/monitoring-wifi-with-wavemon/">Monitoring WiFi with Wavemon</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-wifi-with-wavemon/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install and use Atop on OpenSUSE 15.1?</title>
		<link>https://www.osradar.com/install-atop-opensuse-15-1/</link>
					<comments>https://www.osradar.com/install-atop-opensuse-15-1/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 27 Dec 2019 00:12:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[atop]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Leap]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[open suse]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16831</guid>

					<description><![CDATA[<p>Hi, folks. In this opportunity I&#8217;m going to teach you how to install and use Atop on OpenSUSE 15.1. With Atop we will be able to monitor a system in an advanced and fast way. According to the project&#8217;s website, Atop is &#8220;an ASCII full-screen performance monitor for Linux that is capable of reporting the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-atop-opensuse-15-1/">How to install and use Atop on OpenSUSE 15.1?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi, folks. In this opportunity<strong> I&#8217;m going to teach you how to install and use Atop on OpenSUSE 15.1</strong>. With Atop we will be able to monitor a system in an advanced and fast way.</p>
<p>According to the<a href="https://www.atoptool.nl/" target="_blank" rel="noopener noreferrer"> project&#8217;s website</a>, Atop is &#8220;an ASCII full-screen performance monitor for Linux that is capable of reporting the activity of all processes&#8221;.</p>
<p>Likewise, Atop allows you to monitor in real time t<strong>he consumption of memory, CPU, swap and other computer resources</strong>. And using the netatop kernel module you can monitor networks as well.</p>
<p>So, Atop stands out for being light, fast and presenting an easy to manipulate interface. It also has the following features:</p>
<ul>
<li>Resource consumption by all processes.</li>
<li>Utilization of all relevant resources.</li>
<li>Permanent logging of resource utilization.</li>
<li>Highlight critical resources</li>
</ul>
<p>And many more features.</p>
<p>So, let&#8217;s install it on OpenSUSE 15.1.</p>
<h2>Install and use atop on OpenSUSE 15.1</h2>
<p>Atop is located in the OpenSUSE <a href="https://www.osradar.com/tag/monitoring/" target="_blank" rel="noopener noreferrer">monitoring</a> repository which makes it fairly easy to install. But first we must add the repository.</p>
<p>So open a terminal session and run the following command:</p>
<pre>:~$ sudo zypper ar http://download.opensuse.org/repositories/server:/monitoring/openSUSE_Leap_15.1/ monitoring</pre>
<figure id="attachment_16843" aria-describedby="caption-attachment-16843" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16843" src="https://www.osradar.com/wp-content/uploads/2019/12/1-10.png" alt="1.- Adding the monitoring repository on OpenSUSE 15.1" width="1365" height="318" srcset="https://www.osradar.com/wp-content/uploads/2019/12/1-10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/12/1-10-300x70.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/1-10-1024x239.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/1-10-768x179.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/1-10-696x162.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/1-10-1068x249.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-16843" class="wp-caption-text">1.- Adding the monitoring repository on OpenSUSE 15.1</figcaption></figure>
<p>After it is added correctly, it has to be reprioritized so that we don&#8217;t have problems installing it.</p>
<pre>:~$ sudo zypper mr -p 70 monitoring</pre>
<figure id="attachment_16844" aria-describedby="caption-attachment-16844" style="width: 714px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16844" src="https://www.osradar.com/wp-content/uploads/2019/12/2-9.png" alt="2.- Changing the priority of the repository" width="714" height="114" srcset="https://www.osradar.com/wp-content/uploads/2019/12/2-9.png 714w, https://www.osradar.com/wp-content/uploads/2019/12/2-9-300x48.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/2-9-696x111.png 696w" sizes="(max-width: 714px) 100vw, 714px" /><figcaption id="caption-attachment-16844" class="wp-caption-text">2.- Changing the priority of the repository</figcaption></figure>
<p>After that, we will have to refresh all OpenSUSE repositories.</p>
<pre>:~$ sudo zypper refresh</pre>
<figure id="attachment_16845" aria-describedby="caption-attachment-16845" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16845" src="https://www.osradar.com/wp-content/uploads/2019/12/3-10.png" alt="3.- Importing the GPG key" width="1365" height="281" srcset="https://www.osradar.com/wp-content/uploads/2019/12/3-10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/12/3-10-300x62.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/3-10-1024x211.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/3-10-768x158.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/3-10-696x143.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/3-10-1068x220.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-16845" class="wp-caption-text">3.- Importing the GPG key</figcaption></figure>
<p>Remember that the first time you use this repository, it will ask you to accept the GPG key of the repository. To do this, press the a key.</p>
<p>Finally, install atop on OpenSUSE using the following command:</p>
<pre>:~$ sudo zypper in atop</pre>
<figure id="attachment_16846" aria-describedby="caption-attachment-16846" style="width: 1341px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16846" src="https://www.osradar.com/wp-content/uploads/2019/12/4-8.png" alt="4.- Installing atop on OpenSUSE 15.1" width="1341" height="221" srcset="https://www.osradar.com/wp-content/uploads/2019/12/4-8.png 1341w, https://www.osradar.com/wp-content/uploads/2019/12/4-8-300x49.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/4-8-1024x169.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/4-8-768x127.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/4-8-696x115.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/4-8-1068x176.png 1068w" sizes="(max-width: 1341px) 100vw, 1341px" /><figcaption id="caption-attachment-16846" class="wp-caption-text">4.- Installing atop on OpenSUSE 15.1</figcaption></figure>
<p>Now we can use it.</p>
<h2>Basic use of atop on OpenSUSE 15.1</h2>
<p>Remember that the application interface is only for the terminal, so to launch it you just need to use the <code>atop</code> command.</p>
<pre>:~$ atop</pre>
<p>So, this is the default screen.</p>
<figure id="attachment_16847" aria-describedby="caption-attachment-16847" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16847" src="https://www.osradar.com/wp-content/uploads/2019/12/5-8.png" alt="5.- The default screen of atop" width="1365" height="715" srcset="https://www.osradar.com/wp-content/uploads/2019/12/5-8.png 1365w, https://www.osradar.com/wp-content/uploads/2019/12/5-8-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/5-8-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/5-8-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/5-8-696x365.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/5-8-1068x559.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/5-8-802x420.png 802w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-16847" class="wp-caption-text">5.- The default screen of atop</figcaption></figure>
<p>As I said before, atop is very easy to use. You only need to type a key to activate its features or its different views. Of course, which are they? Well, by pressing the <strong>h</strong> key, we will enter the help screen that will show them.</p>
<figure id="attachment_16848" aria-describedby="caption-attachment-16848" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16848" src="https://www.osradar.com/wp-content/uploads/2019/12/6-5.png" alt="6.- Commands list of atop" width="1365" height="708" srcset="https://www.osradar.com/wp-content/uploads/2019/12/6-5.png 1365w, https://www.osradar.com/wp-content/uploads/2019/12/6-5-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/6-5-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/6-5-768x398.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/6-5-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/6-5-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/6-5-810x420.png 810w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-16848" class="wp-caption-text">6.- Commands list of atop</figcaption></figure>
<p>There you will have everything you can do with atop. Everything very simple, for example, I&#8217;m going to try the statistics of memory consumption. To do this I press the <strong>m</strong> key.</p>
<figure id="attachment_16849" aria-describedby="caption-attachment-16849" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16849" src="https://www.osradar.com/wp-content/uploads/2019/12/7-4.png" alt="7.- using atop on OpenSUSE 15.1" width="1365" height="714" srcset="https://www.osradar.com/wp-content/uploads/2019/12/7-4.png 1365w, https://www.osradar.com/wp-content/uploads/2019/12/7-4-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/7-4-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/7-4-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/7-4-696x364.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/7-4-1068x559.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/7-4-803x420.png 803w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-16849" class="wp-caption-text">7.- using atop on OpenSUSE 15.1</figcaption></figure>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>To monitor systems there are many different applications, but atop is consolidated as a fast and stable alternative to do it. It is highly recommended to have it at hand in servers and even in a personal computer.</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></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-atop-opensuse-15-1/">How to install and use Atop on OpenSUSE 15.1?</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-atop-opensuse-15-1/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>TablePlus a modern tool for databases management</title>
		<link>https://www.osradar.com/tableplus-tool-database-management/</link>
					<comments>https://www.osradar.com/tableplus-tool-database-management/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 15 Dec 2019 23:22:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16515</guid>

					<description><![CDATA[<p>Tools to work with databases there are many. However, many of them specialize in certain database handlers, for example, PHPMyAdmin only focuses on MySQL / MariaDB. Today, I will tell you about TablePlus which is presented to us as a modern and native database management tool. I will also show you how to install it [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/tableplus-tool-database-management/">TablePlus a modern tool for databases management</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Tools to work with databases there are many. However, many of them specialize in certain database handlers, for example, PHPMyAdmin only focuses on MySQL / MariaDB. Today, I will tell you about <strong>TablePlus which is presented to us as a modern and native database management tool</strong>.  I will also show you how to install it in Ubuntu 18.04.</p>



<p>TablePlus is a modern intuitive application that is for managing relational and non-relational databases. Its main advantage is that it is compatible with many database management systems including popular, <a rel="noreferrer noopener" aria-label="MySQL (opens in a new tab)" href="https://www.osradar.com/tag/mysql" target="_blank">MySQL</a>, <a href="https://www.osradar.com/tag/mariadb" target="_blank" rel="noreferrer noopener" aria-label="MariaDB (opens in a new tab)">MariaDB</a>, <a href="https://www.osradar.com/tag/postgresql" target="_blank" rel="noreferrer noopener" aria-label="PostgreSQL (opens in a new tab)">PostgreSQL</a> or <a href="https://www.osradar.com/tag/sqlite" target="_blank" rel="noreferrer noopener" aria-label="SQLite (opens in a new tab)">SQLite</a>. But it also supports NoSQL databases such as Apache <a href="https://www.osradar.com/tag/cassandra" target="_blank" rel="noreferrer noopener" aria-label="Cassandra (opens in a new tab)">Cassandra</a> and <a href="https://www.osradar.com/tag/mongodb" target="_blank" rel="noreferrer noopener" aria-label="MongoDB (opens in a new tab)">MongoDB</a>. In addition, the team of developers promises that more will come.</p>



<p>I like the minimalist and modern design of the application that gives a sensation of being an application according to these times.<strong> However, the application is not free and you have to pay to use it.</strong></p>



<p>On the other hand, the application has stable and consolidated versions for <a href="https://www.osradar.com/tag/windows" target="_blank" rel="noreferrer noopener" aria-label="Windows (opens in a new tab)">Windows</a> and macOS <a rel="noreferrer noopener" aria-label="but recently they have published (opens in a new tab)" href="https://tableplus.com/blog/2019/12/tableplus-linux-alpha.html" target="_blank">but recently they have published</a> an Alpha version for Linux. And the best thing is that these alphas are free and we will be able to try them.</p>



<p>So, let&#8217;s take a look.</p>



<h2>Install TablePlus on Ubuntu</h2>



<p>To install it in Ubuntu 18.04, you have to add the application repository. First, you have to add the GPG key to it.</p>



<pre class="wp-block-preformatted">:~$ wget -O - -q http://deb.tableplus.com/apt.tableplus.com.gpg.key | sudo apt-key add - </pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="980" height="132" src="https://www.osradar.com/wp-content/uploads/2019/12/1-5.png" alt="1.- Adding the GPG key for TablePlus" class="wp-image-16520" srcset="https://www.osradar.com/wp-content/uploads/2019/12/1-5.png 980w, https://www.osradar.com/wp-content/uploads/2019/12/1-5-300x40.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/1-5-768x103.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/1-5-696x94.png 696w" sizes="(max-width: 980px) 100vw, 980px" /><figcaption>1.- Adding the GPG key for TablePlus</figcaption></figure>



<p>Then, add the repository by creating a file called <code>tableplus.list</code> in <code>/etc/apt/sources.list.d/</code> and add the following:</p>



<pre class="wp-block-preformatted">:~$ sudo nano /etc/apt/sources.list.d/tableplus.list</pre>



<pre class="wp-block-preformatted">deb [arch=amd64] https://deb.tableplus.com/debian tableplus main</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="900" height="146" src="https://www.osradar.com/wp-content/uploads/2019/12/2-4.png" alt="2.- Adding the TablePlus repository" class="wp-image-16521" srcset="https://www.osradar.com/wp-content/uploads/2019/12/2-4.png 900w, https://www.osradar.com/wp-content/uploads/2019/12/2-4-300x49.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/2-4-768x125.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/2-4-696x113.png 696w" sizes="(max-width: 900px) 100vw, 900px" /><figcaption>2.- Adding the TablePlus repository</figcaption></figure>



<p>Save the changes and close the editor. I use the terminal a lot but you can create the file with another editor like gedit.</p>



<p>After that, refresh the APT cache and finally install Tableplus.</p>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/3-5-1024x502.png" alt="3.- Installing TablePlus the modern tool for databases management" class="wp-image-16522" srcset="https://www.osradar.com/wp-content/uploads/2019/12/3-5-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/3-5-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/3-5-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/3-5-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/3-5-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/3-5-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/3-5-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/3-5-857x420.png 857w, https://www.osradar.com/wp-content/uploads/2019/12/3-5.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Installing TablePlus the modern tool for databases management</figcaption></figure>



<p>Then, you can run it from the main menu.</p>



<h3>A little look to this tool for Database management</h3>



<p>As soon as you open it you will be able to configure a new connection to a database server. There you will have to configure the connection. You will also have the option to test the connection before starting it.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="575" src="https://www.osradar.com/wp-content/uploads/2019/12/4-3-1024x575.png" alt="4.- Configuring a new connection" class="wp-image-16523" srcset="https://www.osradar.com/wp-content/uploads/2019/12/4-3-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/4-3-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/4-3-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/4-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/4-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/4-3-748x420.png 748w, https://www.osradar.com/wp-content/uploads/2019/12/4-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Configuring a new connection</figcaption></figure>



<p>In my case, I have used an instance of MariaDB to test. By default, when you establish the connection, you see the following way:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="575" src="https://www.osradar.com/wp-content/uploads/2019/12/5-3-1024x575.png" alt="5.- TablePlus running" class="wp-image-16524" srcset="https://www.osradar.com/wp-content/uploads/2019/12/5-3-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/5-3-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/5-3-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/5-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/5-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/5-3-748x420.png 748w, https://www.osradar.com/wp-content/uploads/2019/12/5-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- TablePlus running</figcaption></figure>



<p>On the left side, the list of tables and below you can switch between databases. If you select a table, the data will be shown like this:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="575" src="https://www.osradar.com/wp-content/uploads/2019/12/6-3-1024x575.png" alt="6.- Showing the data" class="wp-image-16525" srcset="https://www.osradar.com/wp-content/uploads/2019/12/6-3-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/6-3-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/6-3-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/6-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/6-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/6-3-748x420.png 748w, https://www.osradar.com/wp-content/uploads/2019/12/6-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Showing the data</figcaption></figure>



<p>As we can see, everything is very clean, tidy, modern. One of the characteristics of this client is that everything looks very integrated with the GTK system. I haven&#8217;t tried it with QT.</p>



<p>Thanks to the lower buttons, you will be able to verify the structure of the table very quickly.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="575" src="https://www.osradar.com/wp-content/uploads/2019/12/7-2-1024x575.png" alt="7.- Table structure using TablePlus" class="wp-image-16526" srcset="https://www.osradar.com/wp-content/uploads/2019/12/7-2-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/7-2-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/7-2-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/7-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/7-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/7-2-748x420.png 748w, https://www.osradar.com/wp-content/uploads/2019/12/7-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Table structure using TablePlus</figcaption></figure>



<p>Also, you can limit the number of results you get.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="575" src="https://www.osradar.com/wp-content/uploads/2019/12/8-1-1024x575.png" alt="8.- Set limit to data" class="wp-image-16527" srcset="https://www.osradar.com/wp-content/uploads/2019/12/8-1-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/8-1-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/8-1-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/8-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/8-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/8-1-748x420.png 748w, https://www.osradar.com/wp-content/uploads/2019/12/8-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- Set limit to data</figcaption></figure>



<p>So this is a very small look at this application.</p>



<p>Remember it&#8217;s an alpha and the developers say there will be weekly updates so don&#8217;t forget to update your equipment.</p>



<p>Also, keep in mind that the application will gradually evolve but it is a good start. It has been fast, efficient and easy to use all this with a pretty nice interface.</p>



<p>For more information, I recommend you visit the <a href="https://tableplus.com/" target="_blank" rel="noreferrer noopener" aria-label="application website (opens in a new tab)">application website</a>.</p>



<p>So, that is it. Do not forget to share.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/tableplus-tool-database-management/">TablePlus a modern tool for databases management</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/tableplus-tool-database-management/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Zabbix on Debian 10</title>
		<link>https://www.osradar.com/install-zabbix-on-debian-10/</link>
					<comments>https://www.osradar.com/install-zabbix-on-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 04 Aug 2019 22:22:24 +0000</pubDate>
				<category><![CDATA[Linux]]></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[monnitoring]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[zabbix]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12865</guid>

					<description><![CDATA[<p>As we already know Debian 10 is an operating system used on servers. These servers are capable of hosting very important applications for a network like Zabbix. So, in this post, you will learn how to install Zabbix on Debian 10. The tutorial will be step by step, so you will not have problems doing [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-zabbix-on-debian-10/">Install Zabbix 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>As we already know Debian 10 is an operating system used on servers. These servers are capable of hosting very important applications for a network like Zabbix. So, in this post, you will learn how to install Zabbix on Debian 10. The tutorial will be step by step, so you will not have problems doing it.</p>
<h2>What is Zabbix?</h2>
<p><a href="https://www.zabbix.com/">Zabbix</a> is a powerful tool for network monitoring. It is open-source and uses database handlers to process the data collected from your analyses.</p>
<p>There are too many features that make Zabbix a necessary tool in a network because with it the sysadmin can have detailed information about what happens in it. In addition, you can have real-time monitoring with their due reports.</p>
<h2>Install Zabbix on Debian 10</h2>
<p>The procedure for installing Zabbix is quite simple. On the other hand, we will work on the terminal installing and preparing the installation of Zabbix. Then, you will have to complete the process using the web browser.</p>
<p>In addition, all post will use the root user. To be the root user, open the terminal and run:</p>
<pre>:~$ su</pre>
<p>So, let us start.</p>
<h3>1) Install LAMP Stack on Debian 10</h3>
<p>Zabbix has a very friendly web interface to obtain the monitoring results. In this sense, as it is a web application, it is required to have installed LAMP on Debian 10.</p>
<p>So, you can read <a href="https://www.osradar.com/install-lamp-on-debian-10/">How to install LAMP on Debian 10?</a></p>
<p>Besides that, you have to install these PHP modules with this command:</p>
<pre>:~# apt install php php php-mysql php-curl php-json php-cgi php-xml php-mbstring php-bcmath</pre>
<p>So, we can continue.</p>
<h3>2) Create the Zabbix database and the MariaDB user</h3>
<p>Zabbix requires a database manager. But it also requires a database. Creating the database is simple, but it is recommended to create a user dedicated to it.</p>
<p>Enter the <a href="https://www.osradar.com/tag/mariadb/">MariaDB</a> console with the following command:</p>
<pre>:~# mysql -u root -p</pre>
<p>Then, create a new database and the new user.</p>
<pre>&gt; CREATE DATABASE zabbixdb;
&gt; GRANT ALL ON zabbixdb.* TO 'zabbixuser'@'localhost' IDENTIFIED BY 'zabbixpss';
&gt; FLUSH PRIVILEGES;
&gt; exit;</pre>
<p><figure id="attachment_12879" aria-describedby="caption-attachment-12879" style="width: 765px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12879" src="https://www.osradar.com/wp-content/uploads/2019/07/1-13.jpeg" alt="1.- Creating new database for Zabbix" width="765" height="354" srcset="https://www.osradar.com/wp-content/uploads/2019/07/1-13.jpeg 765w, https://www.osradar.com/wp-content/uploads/2019/07/1-13-300x139.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/07/1-13-696x322.jpeg 696w" sizes="(max-width: 765px) 100vw, 765px" /><figcaption id="caption-attachment-12879" class="wp-caption-text">1.- Creating a new database for Zabbix</figcaption></figure></p>
<p>That is all for MariaDB.</p>
<h3>3) Add the Zabbix repository for Debian 10</h3>
<p>A great advantage that Zabbix gives us is that it has a repository for Debian 10. So, all this makes the installation process even easier.</p>
<p>To add the repository, just download the DEB file provided by the project and install it.</p>
<pre>:~# wget -c http://repo.zabbix.com/zabbix/4.0/debian/pool/main/z/zabbix-release/zabbix-release_4.0-2%2Bbuster_all.deb</pre>
<p>Then, install it.</p>
<pre>:~# dpkg -i zabbix-release_4.3-1+buster_all.deb</pre>
<h3>4) Install Zabbix on Debian 10 (I)</h3>
<p>After the repository has been successfully added, it is necessary to update APT.</p>
<pre>:~# apt update</pre>
<p>Next, we can install the packages without problems with the following command:</p>
<pre>:~# apt install zabbix-server-mysql zabbix-agent zabbix-frontend-php</pre>
<p><figure id="attachment_12881" aria-describedby="caption-attachment-12881" style="width: 1121px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12881" src="https://www.osradar.com/wp-content/uploads/2019/07/3-7.jpeg" alt="3.- Install Zabbix on Debian 10" width="1121" height="242" srcset="https://www.osradar.com/wp-content/uploads/2019/07/3-7.jpeg 1121w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-300x65.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-768x166.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-1024x221.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-696x150.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-1068x231.jpeg 1068w" sizes="(max-width: 1121px) 100vw, 1121px" /><figcaption id="caption-attachment-12881" class="wp-caption-text">2.- Install Zabbix on Debian 10</figcaption></figure></p>
<p>Once Zabbix is installed, you need to start the default database that comes with the installation. The process is very simple, just use this command:</p>
<pre>:~# zcat /usr/share/doc/zabbix-server-mysql/create.sql.gz | mysql -u zabbixuser -p zabbixdb</pre>
<p>In order to make Zabbix configured correctly with MariaDB, it is necessary to change some parameters in its configuration.</p>
<p>To do this, edit the file <code>/etc/zabbix/zabbix_server.conf</code></p>
<pre>:~# nano /etc/zabbix/zabbix_server.conf</pre>
<p>Then, modify the following parameters:</p>
<pre>DBHost
DBName
DBUser
DBPassword</pre>
<p>Of course, set the MariaDB parameters that you have configured.</p>
<p>Next, save the changes and close the file.</p>
<p>Finally, restart the services.</p>
<pre>:~# systemctl restart apache2
:~# systemctl restart mariadb
:~# systemctl restart zabbix-server</pre>
<h3>5) Install Zabbix on Debian 10 (II)</h3>
<p>Now you have to complete the installation using the web browser. Open it and go to your server<code> http://server-ip/zabbix</code> and you will see the following:</p>
<p><figure id="attachment_12882" aria-describedby="caption-attachment-12882" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12882" src="https://www.osradar.com/wp-content/uploads/2019/07/4-9.png" alt="4.- Zabbix front end page" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/4-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12882" class="wp-caption-text">4.- Zabbix front end page</figcaption></figure></p>
<p>Next, the wizard will check for the prerequisites.</p>
<p><figure id="attachment_12883" aria-describedby="caption-attachment-12883" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12883" src="https://www.osradar.com/wp-content/uploads/2019/07/5-11.png" alt="5.- Check for the prerequistes" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/5-11.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12883" class="wp-caption-text">5.- Check for the prerequisites</figcaption></figure></p>
<p>Now, you have to configure the DB connection.</p>
<p><figure id="attachment_12884" aria-describedby="caption-attachment-12884" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12884" src="https://www.osradar.com/wp-content/uploads/2019/07/6-6.png" alt="6.- DB connection on Zabbix" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/6-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12884" class="wp-caption-text">6.- DB connection on Zabbix</figcaption></figure></p>
<p>Next, the server details.</p>
<p><figure id="attachment_12885" aria-describedby="caption-attachment-12885" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12885" src="https://www.osradar.com/wp-content/uploads/2019/07/7-6.png" alt="7.- Zabbix on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/7-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12885" class="wp-caption-text">7.- Zabbix on Debian 10</figcaption></figure></p>
<p>Now, the installation summary.</p>
<p><figure id="attachment_12886" aria-describedby="caption-attachment-12886" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12886" src="https://www.osradar.com/wp-content/uploads/2019/07/8-4.png" alt="8.- Pre-installation summary" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/8-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12886" class="wp-caption-text">8.- Pre-installation summary</figcaption></figure></p>
<p>If everything was OK, you will see this.</p>
<p><figure id="attachment_12887" aria-describedby="caption-attachment-12887" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12887" src="https://www.osradar.com/wp-content/uploads/2019/07/9-3.png" alt="9.- Zabbix is successfully installed on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/9-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12887" class="wp-caption-text">9.- Zabbix is successfully installed on Debian 10</figcaption></figure></p>
<p>Then you can log in. The default user is <em>admin </em> and the password is <em>zabbix</em>. After that, you will see the dashboard.</p>
<p><figure id="attachment_12888" aria-describedby="caption-attachment-12888" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12888" src="https://www.osradar.com/wp-content/uploads/2019/07/10-3.png" alt="10.- Zabbix running on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/10-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12888" class="wp-caption-text">10.- Zabbix running on Debian 10</figcaption></figure></p>
<h2>Conclusion</h2>
<p>Zabbix is one of those applications that you have to have on a server to control the entire network. especially when there are many nodes and it is necessary to know what is the performance of it. In this post, you have learned how to install it in Debian 10, Buster.</p>
<p>Please share this post with your friends and join <a href="https://t.me/osradar">our Telegram channel</a>.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-zabbix-on-debian-10/">Install Zabbix 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-zabbix-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Ajenti Control Panel on Ubuntu 18.04 and Linux Mint 19</title>
		<link>https://www.osradar.com/install-ajenti-control-panel-on-ubuntu-18-04-and-linux-mint-19/</link>
					<comments>https://www.osradar.com/install-ajenti-control-panel-on-ubuntu-18-04-and-linux-mint-19/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 09 Feb 2019 12:22:57 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[ajenti]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=10601</guid>

					<description><![CDATA[<p>Many systems need a unique interface to be able to manage them. However, when we talk about servers, we find that they do not have a graphical interface for security reasons. In addition, not having a graphical interface on the server makes it better manage the resources of it devoting more to services and applications. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-ajenti-control-panel-on-ubuntu-18-04-and-linux-mint-19/">Install Ajenti Control Panel on Ubuntu 18.04 and Linux Mint 19</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 systems need a unique interface to be able to manage them. However, when we talk about servers, we find that they do not have a graphical interface for security reasons. In addition, not having a graphical interface on the server makes it better manage the resources of it devoting more to services and applications. On the other hand, it is much simpler to manage all the processes and information of a server using a graphical interface. So, that is why today I will show you how to install Ajenti in Ubuntu 18.04.</p>
<p><a href="http://ajenti.org/" rel="noopener">Ajenti</a> is a system administration panel compatible with many of the Linux distributions that exist. It is written in <a href="https://www.osradar.com/get-the-latest-python-on-linux/" rel="noopener">Python</a> and requires very few resources. So, it is a great tool if we want to <a href="https://www.osradar.com/using-gotop-a-graphical-system-monitor/" rel="noopener">monitor</a> the status and services of our system with a nice graphical interface, responsive and very functional. Of course, it is open source, under the <a href="https://opensource.org/licenses/BSD-3-Clause" rel="noopener">BSD</a> license which makes its source code be studied by those who want.</p>
<p>On the other hand, the application has a very friendly front-end created with Angular.js. This makes it compatible with most current browsers.</p>
<p>So, let us install Ajenti on Ubuntu 18.04 or Linux Mint 19.</p>
<h2>1. Upgrade the system</h2>
<p>It is always a good idea to update your system to receive the latest security updates. With this, you will have a more robust system and ready for action.</p>
<pre class="">:~$ sudo apt update &amp;&amp; sudo apt upgrade</pre>
<p><figure id="attachment_10642" aria-describedby="caption-attachment-10642" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10642" src="https://www.osradar.com/wp-content/uploads/2019/02/1-6.png" alt="1.- Upgrade the system" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/1-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/1-6-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/1-6-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/1-6-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/1-6-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/1-6-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/1-6-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10642" class="wp-caption-text">1.- Upgrade the system</figcaption></figure></p>
<p>&nbsp;</p>
<p>Now, with the updated system, it is possible to continue with the installation without problems.</p>
<h2>2.- Install required packages and add the external repository</h2>
<p>Before installing Ajenti in Ubuntu it is necessary to install two necessary packages to do it. The first one is wget that will help us to download a file to add the repository. So, let us do it.</p>
<pre class="">:~$ sudo apt install wget</pre>
<p>The other package we must install as a dependency is python-imaging.</p>
<pre class="">:~$ wget http://security.ubuntu.com/ubuntu/pool/universe/p/pillow/python-imaging_4.1.1-3build2_all.deb
:~$ sudo dpkg -i python-imaging_4.1.1-3build2_all.deb</pre>
<p><figure id="attachment_10643" aria-describedby="caption-attachment-10643" style="width: 1344px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10643" src="https://www.osradar.com/wp-content/uploads/2019/02/2-6.png" alt="2.- Download the required package" width="1344" height="244" srcset="https://www.osradar.com/wp-content/uploads/2019/02/2-6.png 1344w, https://www.osradar.com/wp-content/uploads/2019/02/2-6-300x54.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/2-6-768x139.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/2-6-1024x186.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/2-6-696x126.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/2-6-1068x194.png 1068w" sizes="(max-width: 1344px) 100vw, 1344px" /><figcaption id="caption-attachment-10643" class="wp-caption-text">2.- Download the required package</figcaption></figure></p>
<p><figure id="attachment_10644" aria-describedby="caption-attachment-10644" style="width: 804px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10644" src="https://www.osradar.com/wp-content/uploads/2019/02/3-6.png" alt="3.- Install python-imaging" width="804" height="198" srcset="https://www.osradar.com/wp-content/uploads/2019/02/3-6.png 804w, https://www.osradar.com/wp-content/uploads/2019/02/3-6-300x74.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/3-6-768x189.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/3-6-696x171.png 696w" sizes="(max-width: 804px) 100vw, 804px" /><figcaption id="caption-attachment-10644" class="wp-caption-text">3.- Install python-imaging</figcaption></figure></p>
<p>After that, it is necessary to add the GPG key from the Ajenti repository to further improve package security and integrity.</p>
<pre class="">:~$ wget http://repo.ajenti.org/debian/key -O- | sudo apt-key add -</pre>
<p>Then, run the following command to add the Ajenti repository to the system repository list.</p>
<pre class="">:~$ echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" | sudo tee /etc/apt/sources.list.d/ajenti.list</pre>
<p><figure id="attachment_10645" aria-describedby="caption-attachment-10645" style="width: 1351px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10645" src="https://www.osradar.com/wp-content/uploads/2019/02/4-5.png" alt="4.- Adding the repository" width="1351" height="358" srcset="https://www.osradar.com/wp-content/uploads/2019/02/4-5.png 1351w, https://www.osradar.com/wp-content/uploads/2019/02/4-5-300x79.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/4-5-768x204.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/4-5-1024x271.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/4-5-696x184.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/4-5-1068x283.png 1068w" sizes="(max-width: 1351px) 100vw, 1351px" /><figcaption id="caption-attachment-10645" class="wp-caption-text">4.- Adding the repository</figcaption></figure></p>
<p>Finally, install Ajenti.</p>
<pre class="">:~$ sudo apt update
:~$ sudo apt install ajenti</pre>
<p><figure id="attachment_10646" aria-describedby="caption-attachment-10646" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10646" src="https://www.osradar.com/wp-content/uploads/2019/02/5-6.png" alt="5.- Install ajenti on Ubuntu 18.04" width="1366" height="444" srcset="https://www.osradar.com/wp-content/uploads/2019/02/5-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/5-6-300x98.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/5-6-768x250.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/5-6-1024x333.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/5-6-696x226.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/5-6-1068x347.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/5-6-1292x420.png 1292w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10646" class="wp-caption-text">5.- Install ajenti on Ubuntu 18.04</figcaption></figure></p>
<p>After that, you have to enable and start the service. You can also check the service status. To do it, run these commands.</p>
<pre class="">:~$ sudo systemctl enable ajenti
:~$ sudo systemctl start ajenti
:~$ sudo systemctl status ajenti</pre>
<p><figure id="attachment_10647" aria-describedby="caption-attachment-10647" style="width: 1212px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10647" src="https://www.osradar.com/wp-content/uploads/2019/02/6-5.png" alt="6.- Check the service status" width="1212" height="503" srcset="https://www.osradar.com/wp-content/uploads/2019/02/6-5.png 1212w, https://www.osradar.com/wp-content/uploads/2019/02/6-5-300x125.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/6-5-768x319.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/6-5-1024x425.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/6-5-696x289.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/6-5-1068x443.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/6-5-1012x420.png 1012w" sizes="(max-width: 1212px) 100vw, 1212px" /><figcaption id="caption-attachment-10647" class="wp-caption-text">6.- Check the service status</figcaption></figure></p>
<p>Ajenti runs through the port <code>8000</code>. So, if you are using a Firewall, remember to open that port.</p>
<p>So, you can open the web browser and go to <code>http://SERVER_IP:8000</code>.</p>
<p><figure id="attachment_10648" aria-describedby="caption-attachment-10648" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10648" src="https://www.osradar.com/wp-content/uploads/2019/02/7-5.png" alt="7.- Ajenti log in" width="1354" height="381" srcset="https://www.osradar.com/wp-content/uploads/2019/02/7-5.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/7-5-300x84.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/7-5-768x216.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/7-5-1024x288.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/7-5-696x196.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/7-5-1068x301.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10648" class="wp-caption-text">7.- Ajenti log in</figcaption></figure></p>
<h2>3. Install Ajenti V Plugin</h2>
<p>Ajenti V plugin is a set of plugins that are installed to Ajenti and increase its power. Thanks to this you will be able to manage <a href="https://www.osradar.com/install-mysql-8-0-on-fedora-29-28-centos-rhel-7-6-6-10/" rel="noopener">MySQL</a> or <a href="https://www.osradar.com/tag/apache" rel="noopener">Apache</a> and it is very useful. To do so, execute the following command:</p>
<pre class="">:~$ sudo apt install ajenti-v ajenti-v-nginx ajenti-v-mysql ajenti-v-php7.2-fpm php7.2-mysql</pre>
<p><figure id="attachment_10649" aria-describedby="caption-attachment-10649" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10649" src="https://www.osradar.com/wp-content/uploads/2019/02/8-6.png" alt="8.- Install the Ajenti V plugin" width="1366" height="446" srcset="https://www.osradar.com/wp-content/uploads/2019/02/8-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/8-6-300x98.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/8-6-768x251.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/8-6-1024x334.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/8-6-696x227.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/8-6-1068x349.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/8-6-1286x420.png 1286w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10649" class="wp-caption-text">8.- Install the Ajenti V plugin</figcaption></figure></p>
<p>So, restart Ajenti.</p>
<pre class="">:~$ sudo systemctl restart ajenti</pre>
<p>And go back to the web browser to log in. The user is <strong>root</strong> and the password is <strong>admin</strong>.</p>
<p><figure id="attachment_10650" aria-describedby="caption-attachment-10650" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10650" src="https://www.osradar.com/wp-content/uploads/2019/02/9-6.png" alt="9.- Credentials" width="1354" height="381" srcset="https://www.osradar.com/wp-content/uploads/2019/02/9-6.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/9-6-300x84.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/9-6-768x216.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/9-6-1024x288.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/9-6-696x196.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/9-6-1068x301.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10650" class="wp-caption-text">9.- Credentials</figcaption></figure></p>
<p>Now, you will see this screen. In it, you have the main info system.</p>
<p><figure id="attachment_10651" aria-describedby="caption-attachment-10651" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10651" src="https://www.osradar.com/wp-content/uploads/2019/02/10-6.png" alt="10.- Main screen" width="1354" height="670" srcset="https://www.osradar.com/wp-content/uploads/2019/02/10-6.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/10-6-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/10-6-768x380.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/10-6-1024x507.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/10-6-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/02/10-6-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/10-6-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/10-6-849x420.png 849w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10651" class="wp-caption-text">10.- Main screen</figcaption></figure></p>
<p>After that, you can also see the plugins section.</p>
<p><figure id="attachment_10652" aria-describedby="caption-attachment-10652" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10652" src="https://www.osradar.com/wp-content/uploads/2019/02/11-3.png" alt="11.- Plugins" width="1354" height="670" srcset="https://www.osradar.com/wp-content/uploads/2019/02/11-3.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/11-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/11-3-768x380.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/11-3-1024x507.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/11-3-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/02/11-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/11-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/11-3-849x420.png 849w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10652" class="wp-caption-text">11.- Plugins</figcaption></figure></p>
<p>You also have a utility that will allow you to use a small program of notes in the application.</p>
<p><figure id="attachment_10653" aria-describedby="caption-attachment-10653" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10653" src="https://www.osradar.com/wp-content/uploads/2019/02/12-3.png" alt="12.- Notes" width="1354" height="670" srcset="https://www.osradar.com/wp-content/uploads/2019/02/12-3.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/12-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/12-3-768x380.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/12-3-1024x507.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/12-3-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/02/12-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/12-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/12-3-849x420.png 849w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10653" class="wp-caption-text">12.- Notes</figcaption></figure></p>
<p>So, you can also manage a MySQL instance.</p>
<p><figure id="attachment_10654" aria-describedby="caption-attachment-10654" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10654" src="https://www.osradar.com/wp-content/uploads/2019/02/13-3.png" alt="13.- MySQL window" width="1354" height="670" srcset="https://www.osradar.com/wp-content/uploads/2019/02/13-3.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/13-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/13-3-768x380.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/13-3-1024x507.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/13-3-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/02/13-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/13-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/13-3-849x420.png 849w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10654" class="wp-caption-text">13.- MySQL window</figcaption></figure></p>
<p>Or you can manage the Firewall.</p>
<p><figure id="attachment_10655" aria-describedby="caption-attachment-10655" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10655" src="https://www.osradar.com/wp-content/uploads/2019/02/14-4.png" alt="14.- Firewall section" width="1354" height="670" srcset="https://www.osradar.com/wp-content/uploads/2019/02/14-4.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/14-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/14-4-768x380.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/14-4-1024x507.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/14-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/02/14-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/14-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/14-4-849x420.png 849w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10655" class="wp-caption-text">14.- Firewall section</figcaption></figure></p>
<p>There is also a File manager utility.</p>
<p><figure id="attachment_10656" aria-describedby="caption-attachment-10656" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10656" src="https://www.osradar.com/wp-content/uploads/2019/02/15-4.png" alt="15.- File manager" width="1354" height="670" srcset="https://www.osradar.com/wp-content/uploads/2019/02/15-4.png 1354w, https://www.osradar.com/wp-content/uploads/2019/02/15-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/15-4-768x380.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/15-4-1024x507.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/15-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/02/15-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/15-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/15-4-849x420.png 849w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-10656" class="wp-caption-text">15.- File manager</figcaption></figure></p>
<p>So, that&#8217;s it. Enjoy Ajenti.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-ajenti-control-panel-on-ubuntu-18-04-and-linux-mint-19/">Install Ajenti Control Panel on Ubuntu 18.04 and Linux Mint 19</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-ajenti-control-panel-on-ubuntu-18-04-and-linux-mint-19/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
