<?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>tools Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/tools/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 30 Jun 2021 16:51:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install the netstat command on Linux?</title>
		<link>https://www.osradar.com/how-to-install-the-netstat-command-on-linux/</link>
					<comments>https://www.osradar.com/how-to-install-the-netstat-command-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 03 Jul 2021 04:50:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[alma linux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[rockylinux]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30911</guid>

					<description><![CDATA[<p>Hello, friends. In this post, we will show you how to install the Netstat command with which we can quickly monitor our network information. The post will be approached from the terminal and covering most Linux distributions or at least the most popular ones. Netstat is a tool that we can use through the command [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-netstat-command-on-linux/">How to install the netstat command on Linux?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-line-data">Hello, friends. In this post, we will show you how to install the Netstat command with which we can quickly monitor our network information. The post will be approached from the terminal and covering most Linux distributions or at least the most popular ones.</p>



<p class="has-line-data"><strong><a href="http://netstat.net/" target="_blank" rel="noreferrer noopener">Netstat </a>is a tool that we can use through the command line</strong>. It allows us to <strong>monitor networks and also to troubleshoot certain problems that may arise</strong>. Also, it is widely used to identify the TCP connections that are active on the machine on which the command is executed.</p>



<p class="has-line-data">All this, we emit an output screen where we can visualize the network information or even export it through the use of commands.</p>



<p class="has-line-data"><strong>This tool is quite useful for the more technical Linux users</strong> because it allows us to quickly analyze and detect possible problems that are happening in our network. Even more, to make an analysis on it.</p>



<p class="has-line-data">Despite being so popular, it is not included in most Linux distributions and that is why in this post, we will help you how to install it.</p>



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



<h2 class="code-line"><a id="Install_the_Netstat_on_Linux_command_12"></a>Install the Netstat on Linux command</h2>



<p class="has-line-data">As we said, being such a popular tool, it is hard to believe that it is not included in the existing Linux distributions.</p>



<p class="has-line-data">The solution to this is to install via official repositories, the <code>net-tools</code> package in order to add the command but also other important tools.</p>



<p class="has-line-data">So, in the case of Debian, Ubuntu, Linux Mint, ElementaryOS, and any distribution based on any of these, just open the terminal and execute</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt install net-tools</pre>



<p class="has-line-data">In case you are using, Fedora 34, RockyLinux, AlmaLinux OS, RHEL 8, CentOS 8, Oracle Linux 8, or any distribution based on these.</p>



<pre class="wp-block-preformatted">sudo dnf install net-tools</pre>



<p class="has-line-data">But, if you are using older versions such as RHEL 7, CentOS 7, Oracle Linux 7, or any of their derivatives, then you will need to run</p>



<pre class="wp-block-preformatted">sudo yum install net-tools</pre>



<p class="has-line-data">A very popular distribution among Linux users is Arch Linux. It also has some derivatives such as Manjaro. For these distributions or any derivative of them, just run:</p>



<pre class="wp-block-preformatted">sudo pacman -S netstat-nat</pre>



<p class="has-line-data">As we all know, one of our favorite distributions is OpenSUSE, so we can’t leave it out.</p>



<p class="has-line-data">So, to install it on OpenSUSE</p>



<pre class="wp-block-preformatted">sudo zypper in net-tools</pre>



<p class="has-line-data">This way we will be able to use it from the terminal without problems.</p>



<h2 class="code-line"><a id="Using_the_Netstat_command_43"></a>Using the Netstat command</h2>



<p class="has-line-data">It is normal to use the command directly on the terminal. And there it will show much of the default information of the active network interface.</p>



<p class="has-line-data">Another common use is to run it together with some other options, for example:</p>



<pre class="wp-block-preformatted">netstat -tulpn</pre>



<p class="has-line-data">For more complex use of this command, we have prepared a post on the use of Netstat where you can find use cases.</p>



<p class="has-line-data"><a href="https://www.osradar.com/monitor-network-with-netstat-command-in-linux/" target="_blank" rel="noreferrer noopener">Monitor Network with netstat command in Linux</a></p>



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



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



<p class="has-line-data">These types of commands can be useful in our work where many tools are required to help with network control. Although there are more specialized and larger tools, it is also true that sometimes we just need a little help.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-netstat-command-on-linux/">How to install the netstat command on Linux?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-the-netstat-command-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to List users in Linux?</title>
		<link>https://www.osradar.com/how-to-list-users-in-linux/</link>
					<comments>https://www.osradar.com/how-to-list-users-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 15 Jun 2021 00:11:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30468</guid>

					<description><![CDATA[<p>Hello friends. Normally when we are in the presence of a Linux server or computer at some point we will need to know how to list users. This is either for administrative or informative purposes but it becomes necessary. So, in this post, you will learn how to do it using the terminal quickly and [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-list-users-in-linux/">How to List users in Linux?</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. Normally when we are in the presence of a Linux server or computer at some point we will need to know how to list users. This is either for administrative or informative purposes but it becomes necessary. So, in this post, you will learn how to do it using the terminal quickly and easily.</p>



<p>I think you already know but there are commands to create a user, delete a user, list registered users, but at work needs always arise. And if you need to know which are the users of the system? What is that command?</p>



<p>Well, there are several commands, and each one has its own way of doing the job and you can even combine them to get better results.</p>



<p>Let&#8217;s go for it.</p>



<h2>How to list users in Linux</h2>



<h3>Commands that use the /etc/passwd file</h3>



<p>In the <code>/etc/passwd</code> file you can find information about the system users. However, it is not as readable as you would like it to be, it is a good option.</p>



<p>Open a terminal and run the following command</p>



<pre class="wp-block-preformatted">cat /etc/passwd</pre>



<p>And you will get a screen output similar to this.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="692" height="218" src="https://www.osradar.com/wp-content/uploads/2021/06/1-6.png" alt="1.- Cat command" class="wp-image-30591" srcset="https://www.osradar.com/wp-content/uploads/2021/06/1-6.png 692w, https://www.osradar.com/wp-content/uploads/2021/06/1-6-300x95.png 300w" sizes="(max-width: 692px) 100vw, 692px" /><figcaption>1.- Cat command</figcaption></figure>



<p>The first thing you may notice is that there are many users but most of them are system users required to perform many operations that have to do with the operation of the system.</p>



<p>The second thing is that the information is separated by columns where different fields are shown such as Username, encrypted password, UID, GID, and other information.</p>



<p>If you want to know only the users, you can filter the on-screen output of the <code>cat</code> command with the help of the <code>cut</code> command.</p>



<pre class="wp-block-preformatted">cat /etc/passwd | cut -d: -f1</pre>



<p>This way only the users will be displayed without the rest of the information.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="850" height="271" src="https://www.osradar.com/wp-content/uploads/2021/06/2-4.png" alt="2.- List users in Linux" class="wp-image-30592" srcset="https://www.osradar.com/wp-content/uploads/2021/06/2-4.png 850w, https://www.osradar.com/wp-content/uploads/2021/06/2-4-300x96.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/2-4-768x245.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/2-4-696x222.png 696w" sizes="(max-width: 850px) 100vw, 850px" /><figcaption>2.- List users in Linux</figcaption></figure>



<p>The same result can be obtained with the command <code>awk</code>.</p>



<pre class="wp-block-preformatted">cat /etc/passwd | awk -F: '{print $1}'</pre>



<p>This way we will be able to list the system users.</p>



<h3>List users in Linux with compgen</h3>



<p>Although the above commands are easy to use, they are not so easy to memorize. Especially when you have to share them with others.</p>



<p>That is why there is the command <code><a href="https://www.unix.com/man-page/centos/1/compgen/" target="_blank" rel="noreferrer noopener">compgen</a></code> with which we can simply get all the users of the system.</p>



<p>To do this, just run</p>



<pre class="wp-block-preformatted">compgen -u</pre>



<p>And in this simple way, we will be able to have all the users of the system.</p>



<h3>Bonus: List the users connected to the system</h3>



<p>On the other hand, it is convenient on many occasions to know which are the users that are connected in real-time with the system. To do this you only have to run</p>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="549" height="115" src="https://www.osradar.com/wp-content/uploads/2021/06/3-2.png" alt="3.- Users connected to the system" class="wp-image-30593" srcset="https://www.osradar.com/wp-content/uploads/2021/06/3-2.png 549w, https://www.osradar.com/wp-content/uploads/2021/06/3-2-300x63.png 300w" sizes="(max-width: 549px) 100vw, 549px" /><figcaption>3.- Users connected to the system</figcaption></figure>



<p>And you will be able to list the users that are using the system at this moment.</p>



<h2>Conclusion</h2>



<p>A terminal is a tool in which many professionals make their working life and that is full of tricks to take full advantage of it. In this post, you have learned how to list users in Linux quickly and easily.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-list-users-in-linux/">How to List users in Linux?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-list-users-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Find files in Linux?</title>
		<link>https://www.osradar.com/how-to-find-files-linux/</link>
					<comments>https://www.osradar.com/how-to-find-files-linux/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 14 Jun 2021 00:16:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30544</guid>

					<description><![CDATA[<p>Hello friends. Many users, newcomers to Linux, are curious to use the terminal and it is always good to give them support. But not only them, but other users even being veterans, need to know how to use commands to streamline their tasks. Well, in this post we will teach you How to find files [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-find-files-linux/">How to Find files in Linux?</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. Many users, newcomers to Linux, are curious to use the terminal and it is always good to give them support. But not only them, but other users even being veterans, need to know how to use commands to streamline their tasks. Well, in this post we will teach you How to find files in Linux using the terminal.</p>



<p>The <code>find</code> command is a command that searches for files and folders, from the command line, in a directory tree. It is used by many users who work in the terminal and can help even the most veteran users of the system.</p>



<p>So, let’s show you some examples of how to use the command to find files in any Linux distribution.</p>



<h2 id="how-to-find-files-in-linux"><a href="#how-to-find-files-in-linux" name="how-to-find-files-in-linux"></a>How to find files in Linux</h2>



<p>The <code>find</code> command is part of the <a href="https://www.gnu.org/software/coreutils/" target="_blank" rel="noreferrer noopener">GNU Utils</a> so it is available in any Linux distribution you can think of. So like any command, it has a basic syntax which is as follows</p>



<pre class="wp-block-preformatted">find [path] [parameters] [values] [values]</pre>



<p>From what we can see, it is simple to use and now we will show some examples</p>



<ul><li><strong>Find a file of which we know the name and extension:</strong></li></ul>



<pre class="wp-block-preformatted">find / -name name.txt </pre>



<p>Replace <code>name</code> with the name of the file. In this case, a file named <code>name.txt</code> will be searched for in the whole system.</p>



<ul><li><strong>Search for files in a particular location.</strong></li></ul>



<pre class="wp-block-preformatted">find /home/angelo/ -name name.txt</pre>



<ul><li><strong>Doing case-insensitive searches</strong></li></ul>



<p>When searching by filename it is common to not remember whether it is upper or lower case. To do this, you can follow the following structure</p>



<pre class="wp-block-preformatted">find /home/angelo -iname name name.txt</pre>



<p>Remember that you can modify the names and parameters to fit your criteria.</p>



<ul><li><strong>Search for directories or folders</strong></li></ul>



<p>To search for directories we must use the <code>type d</code> parameter, it is as simple as this.</p>



<pre class="wp-block-preformatted">find / -type d -name documents</pre>



<p>This will search for all folders named <code>documents</code> in the whole system. Also, you can change the search directory.</p>



<ul><li><strong>Search files by extension</strong></li></ul>



<p>In this case, it is also useful to know how to search for files by extension. In this case, the option that will help us is <code>type f</code>.</p>



<pre class="wp-block-preformatted">find / -type f -name *.sh</pre>



<p>Thus, in the above example, all files with the extension <code>.sh</code> in the system will be searched.</p>



<h3 id="other-examples-of-the-find-command"><a href="#other-examples-of-the-find-command" name="other-examples-of-the-find-command"></a>Other examples of the find command</h3>



<p>It is also useful to know how to search for files by permissions, to do this use the <code>perm</code> parameter and the permission you want to search for.</p>



<pre class="wp-block-preformatted">find / -type f -perm 0775</pre>



<p>or even, permissions different from the specified one</p>



<pre class="wp-block-preformatted">find / -type f ! -perm 775</pre>



<ul><li><strong>Search for empty files or folders</strong></li></ul>



<p>In this case, we can easily do it with these two commands</p>



<pre class="wp-block-preformatted">find / -type f -empty
find / -type d -empty</pre>



<p>The first one works for files and the second one for directories or folders.</p>



<ul><li><strong>Find files according to their modification date</strong></li></ul>



<p>For many sysadmins this can be very useful because we can perform a search according to the time it was modified.</p>



<pre class="wp-block-preformatted">find / -type f -mtime +21</pre>



<p>In this case, all files that are older than 21 days since their last modification will be searched.</p>



<ul><li><strong>Search files according to their size</strong></li></ul>



<p>Also, with the <code>size</code> option we can further filter our search. For example, we can search for files that weigh more than 10Mb.</p>



<pre class="wp-block-preformatted">find / -type f -size +10M</pre>



<p>That is to say, with this we can be more effective.</p>



<p>So, enjoy it.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-find-files-linux/">How to Find files in Linux?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-find-files-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Some Backup Tools on Linux</title>
		<link>https://www.osradar.com/some-backup-tools-on-linux/</link>
					<comments>https://www.osradar.com/some-backup-tools-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 18 May 2021 09:17:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30049</guid>

					<description><![CDATA[<p>The process of making a backup is something that can save your entire professional life. It is always advisable to do it frequently to avoid data loss either on a server or on your personal computer. So, in this post, I show you some backup tools in Linux. They are mainly oriented for a desktop [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/some-backup-tools-on-linux/">Some Backup Tools on Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The process of making a backup is something that can save your entire professional life. It is always advisable to do it frequently to avoid data loss either on a server or on your personal computer. So, in this post, I show you some backup tools in Linux. They are mainly oriented for a desktop user.</p>
<p>As a brief introduction, we will say that some of these tools are focused on Ubuntu but also support other distributions. So, let’s get started.</p>
<h2 id="linux-backup-tools"><a href="#linux-backup-tools" name="linux-backup-tools"></a>Linux Backup Tools</h2>
<h3 id="back-in-time"><a href="#back-in-time" name="back-in-time"></a>Back In Time</h3>
<p><a href="https://github.com/bit-team/backintime" target="_blank" rel="noopener">Back In Time</a> is a simple backup tool for Linux, inspired by “flyback project”. It provides a command-line client ‘backintime’ and a Qt5 GUI ‘backintime-qt’ both written in Python3.</p>
<p>It is very easy to use because you only need to specify 3 things:</p>
<ul>
<li>Where to save snapshots</li>
<li>What folders to backup</li>
<li>Backup frequency (manual, every hour, every hour, every day, every month)</li>
</ul>
<p>The installation is mainly focused on Ubuntu and derivatives like Linux Mint. It has versions for Plasma and GNOME that we can install by adding the PPA of the application.</p>
<pre><code data-origin="&lt;pre&gt;&lt;code&gt;sudo add-apt-repository ppa:bit-team/stable
sudo apt-get update
sudo apt-get install backintime-qt4
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;">sudo add-apt-repository ppa:bit-team/stable
sudo apt-get update
sudo apt-get install backintime-qt4
</code></pre>
<p>Then, we can start it from the main menu of the system.</p>
<p>Also, on the Github page, you can see the instructions to compile the program on another distribution and even generate DEB packages.</p>
<h3 id="grsync"><a href="#grsync" name="grsync"></a>Grsync</h3>
<p><a href="https://www.osradar.com/use-rsync-to-set-up-remote-disaster-recovery-backup-system/" target="_blank" rel="noopener">Rsync</a> is a CLi tool that is used by many to perform simple backups. However, the fact that you have to use the console, as well as many of the options can make it not ideal for everyone.</p>
<p>This is why <a href="http://www.opbyte.it/grsync/" target="_blank" rel="noopener">Grsync</a> was born to provide a graphical interface to this command. Although it provides support for the more advanced features of <code>rsync</code>, it does allow you to backup your folders quickly.</p>
<p>Sample uses of grsync include: synchronize a music collection with removable devices, backup personal files to a networked drive, replication of a partition to another one, mirroring of files, etc.</p>
<p>To install it on your favorite distribution you have to do it from the default package manager.</p>
<p>So, on Debian, Ubuntu, and derivatives you just need to run</p>
<pre><code data-origin="&lt;pre&gt;&lt;code&gt;sudo apt update
sudo apt install grsync
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;">sudo apt update
sudo apt install grsync
</code></pre>
<p>In the case of Fedora</p>
<pre><code data-origin="&lt;pre&gt;&lt;code&gt;sudo dnf install grsync
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;">sudo dnf install grsync
</code></pre>
<p>Or for Arch Linux based distributions</p>
<pre><code data-origin="&lt;pre&gt;&lt;code&gt;sudo pacman -S grsync
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;">sudo pacman -S grsync
</code></pre>
<p>Then, start it from the main menu.</p>
<h3 id="luckybackup"><a href="#luckybackup" name="luckybackup"></a>LuckyBackup</h3>
<p>This is another tool that uses <code>rsync</code> as a backend for backups. But unlike Grsync, it is a more complete and reliable application.</p>
<p>It is simple to use, fast (transfers over only changes made and not all data), safe (keeps your data safe by checking all declared directories before proceeding in any data manipulation ), reliable, and fully customizable.</p>
<p>With <a href="http://luckybackup.sourceforge.net/" target="_blank" rel="noopener">LuckyBackup</a> you can set which folders to back up and which not to back up. This increases operation times. It also includes a task scheduler so you can forget about backing up all the time. It even supports remote connections.</p>
<p>To install it on Debian and Ubuntu-based distributions just run</p>
<pre><code data-origin="&lt;pre&gt;&lt;code&gt;sudo apt update
sudo apt install luckybackup
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;">sudo apt update
sudo apt install luckybackup
</code></pre>
<p>In the case of Fedora, you have to run</p>
<pre><code data-origin="&lt;pre&gt;&lt;code&gt;sudo dnf install luckybackup
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;">sudo dnf install luckybackup
</code></pre>
<p>This way you only have to run it from the main menu.</p>
<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>
<p>These applications allow you to make backups in a fast and easy way so you don’t lose data in case of an unforeseen event. Each of them has its advantages and ease of use, now it’s your turn to use them.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/some-backup-tools-on-linux/">Some Backup Tools on Linux</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/some-backup-tools-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Convert a PDF to images on Linux</title>
		<link>https://www.osradar.com/convert-pdf-images-linux/</link>
					<comments>https://www.osradar.com/convert-pdf-images-linux/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 05 May 2021 23:21:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=29846</guid>

					<description><![CDATA[<p>Hello, friends. In this short but useful post, you will learn how to convert PDF to images on Linux. While this may seem complicated at first glance, the reality is that it is not. So let’s get to it. The process of converting PDF to images is simple because we will do it using the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/convert-pdf-images-linux/">Convert a PDF to images on Linux</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 short but useful post, you will learn how to convert PDF to images on Linux. While this may seem complicated at first glance, the reality is that it is not. So let’s get to it.</p>



<p>The process of converting PDF to images is simple because we will do it using the <code>pdftoppm</code> tool that is run through the terminal.</p>



<p>According to the <a href="https://linux.die.net/man/1/pdftoppm"><code>pdftoppm</code> man page</a>:</p>



<blockquote class="wp-block-quote"><p>Pdftoppm converts Portable Document Format (PDF) files to color image files in Portable Pixmap (PPM) format, grayscale image files in Portable Graymap (PGM) format, or monochrome image files in Portable Bitmap (PBM) format.</p></blockquote>



<p>However, it can also be used to generate PNG or JPEG files.</p>



<h2 id="the-pdftoppm-command"><a href="#the-pdftoppm-command" name="the-pdftoppm-command"></a>The pdftoppm command</h2>



<p>This command is generally not installed by default on all Linux distributions. So we have to install it before using it.</p>



<p>So, for Debian and Ubuntu-based distributions, install the tool with the following command</p>



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



<p>For CentOS, AlmaLinux, RockyLinux, and Fedora, you can install it using:</p>



<pre class="wp-block-preformatted">sudo dnf install poppler-utils</pre>



<p>And for Arch Linux based distributions, you can run it with:</p>



<pre class="wp-block-preformatted">sudo pacman -S poppler</pre>



<p>The use of the command is quite simple and has the following syntax:</p>



<pre class="wp-block-preformatted">pdftoppm [options] [PDF-FILE] [Output] [PDF-FILE] [PDF-FILE] [Output]</pre>



<p>Also, like any command, you have options that modify the behavior of the command. Some of these options are:</p>



<ul><li>-f number: Specifies the first page to convert</li><li>-l number: Specifies the last page to convert.</li><li>-r number: Specifies the X and Y resolution, in DPI. The default is 150 DPI.</li><li>-rx number: Specifies the X resolution, in DPI. The default is 150 DPI.</li><li>-ry number: Specifies the Y resolution, in DPI. The default is 150 DPI.</li><li>-scale-to number: Scales each page to fit in scale-to*scale-to pixel box.</li><li>-scale-to-x number: Scales each page horizontally to fit in scale-to-x pixels.</li><li>-scale-to-y number: Scales each page vertically to fit in scale-to-y pixels.</li><li>-x number: Specifies the x-coordinate of the crop area top left corner</li><li>-y number: Specifies the y-coordinate of the crop area top left corner</li></ul>



<h2 id="convert-pdf-to-images"><a href="#convert-pdf-to-images" name="convert-pdf-to-images"></a>Convert PDF to Images</h2>



<p>For this post, I have a PDF called <code>sample.pdf</code> with a large number of pages.</p>



<pre class="wp-block-preformatted">ls
sample.pdf</pre>



<p>If you want a JPEG file to be generated for each of the pages, you can use the following command:</p>



<pre class="wp-block-preformatted">pdftoppm -jpeg sample.pdf exmple.jpeg</pre>



<p>In this case, an image will be generated for each page and in this screenshot, you can see it better.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="254" src="https://www.osradar.com/wp-content/uploads/2021/05/1-3-1024x254.png" alt="1.- PDF to images on Linux" class="wp-image-29887" srcset="https://www.osradar.com/wp-content/uploads/2021/05/1-3-1024x254.png 1024w, https://www.osradar.com/wp-content/uploads/2021/05/1-3-300x74.png 300w, https://www.osradar.com/wp-content/uploads/2021/05/1-3-768x190.png 768w, https://www.osradar.com/wp-content/uploads/2021/05/1-3-696x172.png 696w, https://www.osradar.com/wp-content/uploads/2021/05/1-3-1068x265.png 1068w, https://www.osradar.com/wp-content/uploads/2021/05/1-3.png 1364w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- PDF to images on Linux</figcaption></figure>



<p>Also, you can define a range of pages to generate the images with the options <code>-f</code> and <code>-l</code> which define the first and the last page. For example:</p>



<pre class="wp-block-preformatted">pdftoppm -jpeg -f 2 -l 4 sample.pdf file.jpeg</pre>



<p>In this case, only images of pages 2, 3, and 4 are generated.</p>



<p>As you can see the process is very simple and useful.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/convert-pdf-images-linux/">Convert a PDF to images on Linux</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/convert-pdf-images-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the latest version of Vim on Ubuntu 20.04 / Debian 10?</title>
		<link>https://www.osradar.com/install-latest-version-vim/</link>
					<comments>https://www.osradar.com/install-latest-version-vim/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 01 May 2021 02:46:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[latest version]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vim]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28564</guid>

					<description><![CDATA[<p>Hello, friends. Vim is an application quite used by many, but it is not so easy to have the latest stable version in our system. However, today I will help you with that. After reading this post, you will learn how to install the latest version of Vim on Ubuntu 20.04 / Debian 10. According [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-latest-version-vim/">How to install the latest version of Vim on Ubuntu 20.04 / Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. Vim is an application quite used by many, but it is not so easy to have the latest stable version in our system. However, today I will help you with that. After reading this post, you will learn how to install the latest version of Vim on Ubuntu 20.04 / Debian 10.</p>



<p>According to the <a href="https://www.vim.org/" target="_blank" rel="noreferrer noopener">project website</a>:</p>



<blockquote class="wp-block-quote"><p>Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient. It is included as “vi” with most UNIX systems and with Apple OS X.</p></blockquote>



<p>Vim is rock stable and is continuously being developed to become even better. Among its features are:</p>



<ul><li>Persistent, multi-level undo tree.</li><li>Extensive plugin system.</li><li>Support for hundreds of programming languages and file formats</li><li>Powerful search and replace</li><li>Integrates with many tools</li></ul>



<p>So we can say that Vim is an improved version of the mythical text editor Vi. This makes it very popular among sysadmin and even developers.</p>



<h2 id="install-the-latest-version-of-vim"><a href="#install-the-latest-version-of-vim" name="install-the-latest-version-of-vim"></a>Install the Latest version of Vim</h2>



<p>The best way to get the latest version of Vim is to compile it from the source code. It is lightweight, does not have many dependencies, and is more secure. So this is the way we will do it.</p>



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



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



<p>With the system upgrade, we can then install the <code>build-essential</code> package which contains the package compilation tools.</p>



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



<p>Then create a folder where the compiler package will be. I have chosen this path:</p>



<pre class="wp-block-preformatted">mkdir -p /home/angelo/vim</pre>



<p>But you can change it to whatever you want.</p>



<p>Then, download the packages needed to perform the compilation:</p>



<pre class="wp-block-preformatted">sudo apt install ncurses-dev unzip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'libncurses-dev' instead of 'ncurses-dev'
The following additional packages will be installed:
  libc-dev-bin libc6-dev linux-libc-dev
Suggested packages:
  glibc-doc manpages-dev ncurses-doc zip
Recommended packages:
  manpages-dev
The following NEW packages will be installed:
  libc-dev-bin libc6-dev libncurses-dev linux-libc-dev unzip
0 upgraded, 5 newly installed, 0 to remove and 36 not upgraded.
Need to get 4,902 kB of archives.
After this operation, 28.0 MB of additional disk space will be used.
Do you want to continue? [Y/n]</pre>



<p>After that, download the Vim source code using the <code>wget</code> command.</p>



<pre class="wp-block-preformatted">wget https://github.com/vim/vim/archive/master.zip
--2021-02-15 17:54:39--  https://github.com/vim/vim/archive/master.zip
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/vim/vim/zip/master [following]
--2021-02-15 17:54:39--  https://codeload.github.com/vim/vim/zip/master
Resolving codeload.github.com (codeload.github.com)... 140.82.121.9
Connecting to codeload.github.com (codeload.github.com)|140.82.121.9|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘master.zip’

master.zip                                     [              &lt;=&gt;                                                                     ]  16.13M  5.85MB/s    in 2.8s    

2021-02-15 17:54:42 (5.85 MB/s) - ‘master.zip’ saved [16910770]
</pre>



<p>Now decompress it using the command <code>unzip</code></p>



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



<p>Access the <code>src</code> folder inside the generated folder</p>



<pre class="wp-block-preformatted">cd vim-master/src</pre>



<p>And start the compilation configuration taking as the path the folder we have created.</p>



<pre class="wp-block-preformatted">./configure --prefix=/home/angelo/vim</pre>



<p>My recommendation, always when compiling a package from source code, <strong>I do it in a location that does not require root privileges</strong> and that I can manage. This way if <strong>we want to uninstall it, we would only delete the folder where the compilation was configured.</strong></p>



<p>Create the package:</p>



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



<p>And finally, do the installation:</p>



<pre class="wp-block-preformatted">make install</pre>



<p>To test the results, you can access the <code>bin</code> folder that has been created in the package creation path.</p>



<pre class="wp-block-preformatted">cd /home/angelo/vim/bin</pre>



<p>There you will find the freshly compiled binary that you can start using. For example, I will show the compiled version.</p>



<pre class="wp-block-preformatted">./vim --version
VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Apr 26 2021 23:50:58)
 Included patches: 1-2814
 Compiled by angelo@osradar
 Huge version without GUI.  Features included (+) or not (-):</pre>



<p>Output:</p>



<p>And that is it. Enjoy the latest version of Vim.</p>



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



<p>Having the latest stable version of a program gives us access to improvements and new features as well as bug fixes. Today I have shown you how to get the latest version of Vim quickly and easily.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-latest-version-vim/">How to install the latest version of Vim on Ubuntu 20.04 / Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-latest-version-vim/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Munin on Debian 10</title>
		<link>https://www.osradar.com/install-munin-debian-10/</link>
					<comments>https://www.osradar.com/install-munin-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 08 Feb 2021 03:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[munin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28326</guid>

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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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

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

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

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

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

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

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



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



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



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



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



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



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



<p>So, Munin is working but you need to add nodes.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-munin-debian-10/">Install Munin on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-munin-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the latest version of nano on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-latest-version-nano-ubuntu/</link>
					<comments>https://www.osradar.com/install-latest-version-nano-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 17 Dec 2020 05:15:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[nano]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=26833</guid>

					<description><![CDATA[<p>Hello, friends. In recent days I was talking to some colleagues and out of the blue the subject of nano came up. This text editor is present by default in Ubuntu and we use it a lot but we never used its last version. Well, in this post, you will learn how to install the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-latest-version-nano-ubuntu/">How to install the latest version of nano on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. In recent days I was talking to some colleagues and out of the blue the subject of nano came up. This text editor is present by default in Ubuntu and we use it a lot but we never used its last version. Well, in this post, you will learn how to install the latest version of nano on Ubuntu 20.04</p>



<p>Well, quickly we can say that <a href="https://www.nano-editor.org/" target="_blank" rel="noreferrer noopener">nano</a> is a text editor in the terminal. It stands out for its ease of use and speed. With this editor, we can open and modify text files and settings from the terminal. All this without sacrificing resources and comfortably.</p>



<p>Besides basic text editing, nano offers features like undo/redo, syntax coloring, interactive search-and-replace, auto-indentation, line numbers, word completion, file locking, backup files, and internationalization support</p>



<p>As we may suspect, nano is open source and is included in almost all Linux distributions that exist. But for a strange reason, we never can use the latest version and that nano has very active development.</p>



<p>So, the possibility we have is to compile it manually but there is another simpler method if we use homebrew.</p>



<h2>Install the latest version of nano on Ubuntu 20.04</h2>



<p>The process of having the latest version of nano in Ubuntu 20.04 easily and simply is thanks to Homebrew.</p>



<p>We have talked about Homebrew and we think it is a fabulous tool that allows you to install applications quickly and easily as Hugo.</p>



<p>Well, nano is also available to be installed using this tool and the best thing is that we can have the latest stable version.</p>



<p>So, first install Homebrew</p>



<p><a href="https://www.osradar.com/install-homebrew-ubuntu-20-04-debian-10/" target="_blank" rel="noreferrer noopener">How to install Homebrew on Ubuntu 20.04?</a></p>



<p>Once Homebrew is perfectly configured we can continue.</p>



<p>Check the current version of nano with the following command:</p>



<pre class="wp-block-preformatted">nano --version
GNU nano, version 4.8
  (C) 1999-2011, 2013-2020 Free Software Foundation, Inc.
  (C) 2014-2020 the contributors to nano
  Email: nano@nano-editor.org    Web: https://nano-editor.org/
  Compiled options: --disable-libmagic --enable-utf8</pre>



<p>As you can see, the version is a little old, so don&#8217;t have problems, uninstall it.</p>



<pre class="wp-block-preformatted">sudo apt autoremove nano</pre>



<p>And now install the latest version of nano</p>



<pre class="wp-block-preformatted">brew install nano</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="913" height="706" src="https://www.osradar.com/wp-content/uploads/2020/12/1-6.png" alt="1.- Install nano on Ubuntu 20.04" class="wp-image-26839" srcset="https://www.osradar.com/wp-content/uploads/2020/12/1-6.png 913w, https://www.osradar.com/wp-content/uploads/2020/12/1-6-300x232.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/1-6-768x594.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/1-6-696x538.png 696w" sizes="(max-width: 913px) 100vw, 913px" /><figcaption>1.- Install nano on Ubuntu 20.04</figcaption></figure>



<p>And at the end, check the installed version</p>



<pre class="wp-block-preformatted">nano --version</pre>



<p>Now create a test file</p>



<pre class="wp-block-preformatted">nano text.txt</pre>



<p>And add some text</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="939" height="157" src="https://www.osradar.com/wp-content/uploads/2020/12/2-5.png" alt="2.- the latest version of nano on Ubuntu 20.04" class="wp-image-26838" srcset="https://www.osradar.com/wp-content/uploads/2020/12/2-5.png 939w, https://www.osradar.com/wp-content/uploads/2020/12/2-5-300x50.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/2-5-768x128.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/2-5-696x116.png 696w" sizes="(max-width: 939px) 100vw, 939px" /><figcaption>2.- the latest version of nano on Ubuntu 20.04</figcaption></figure>



<p>You now have the latest version of nano on your system. Something simpler than it seems and that can be useful at any time.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-latest-version-nano-ubuntu/">How to install the latest version of nano on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-latest-version-nano-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Nu Shell on Ubuntu 20.04</title>
		<link>https://www.osradar.com/install-nu-shell-ubuntu/</link>
					<comments>https://www.osradar.com/install-nu-shell-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 11 Oct 2020 22:27:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[nu shell]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=15887</guid>

					<description><![CDATA[<p>If there is one thing we can reproach Linux every time it is the lack of variety in the programs. Every day there are more and better that cover all areas of computer science. It also includes terminal emulators. Today, we will tell you about a new one called Nu shell. This terminal for Linux [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nu-shell-ubuntu/">Install Nu Shell on Ubuntu 20.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If there is one thing we can reproach Linux every time it is the lack of variety in the programs. Every day there are more and better that cover all areas of computer science. It also includes terminal emulators. <strong>Today, we will tell you about a new one called Nu shell.</strong> This terminal for Linux is also fast and with important improvements.</p>
<h2>Nu shell?</h2>
<p>Let&#8217;s start with the basics. What is Nu Shell? Well, <strong>Nu shell is a new terminal, released under the MIT license and created in Rust with a different paradigm than others</strong>. According to its official documentation the goal of this project is &#8220;to take the Unix philosophy of shells, where pipes connect simple commands together, and bring it to the modern style of development&#8221;.</p>
<p>So, we can say with these objectives that Nu Shell intends to modernize the output of some commands in the terminal. Adapting them to situations less complex to understand and ideal for developers or sysadmin.</p>
<h2>Install it on Ubuntu 20.04</h2>
<p>Nu Shell is created in Rust. For tango we can use the Rust package manager called cargo. However, obviously the first step is to install Rust on Linux.</p>
<p><a href="https://www.osradar.com/install-rust-programming-language-ubuntu-debian/" target="_blank" rel="noopener noreferrer">How to install Rust on Ubuntu 20.04 / Debian 10?</a></p>
<p>Then, you have to install some dependencies. If you use Debian, Ubuntu or one of their dervidas, just use this command:</p>
<pre>:~$ sudo apt install pkg-config libssl-dev libxcb-composite0-dev libx11-dev</pre>
<p>And then, if we can start the installation.</p>
<pre>:~$ cargo install nu --all-features</pre>
<p><figure id="attachment_16070" aria-describedby="caption-attachment-16070" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-16070 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/1-20.png" alt="1.- Installing Nu Shell on Ubuntu 20.04" width="1365" height="717" srcset="https://www.osradar.com/wp-content/uploads/2019/11/1-20.png 1365w, https://www.osradar.com/wp-content/uploads/2019/11/1-20-300x158.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/1-20-1024x538.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/1-20-768x403.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/1-20-696x366.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/1-20-1068x561.png 1068w, https://www.osradar.com/wp-content/uploads/2019/11/1-20-800x420.png 800w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-16070" class="wp-caption-text">1.- Installing Nu Shell on Ubuntu 20.04</figcaption></figure></p>
<p>And we wait for the process to end.</p>
<h2>Using Nu Shell</h2>
<p>The first thing to say is that the official documentation of the project is quite good. And we will use it for some illustrative examples.</p>
<p>To start the program just use the following command:</p>
<pre>:~$ nu</pre>
<p><figure id="attachment_16071" aria-describedby="caption-attachment-16071" style="width: 998px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16071" src="https://www.osradar.com/wp-content/uploads/2019/11/2-19.png" alt="2.- Launch Nu Shell" width="998" height="174" srcset="https://www.osradar.com/wp-content/uploads/2019/11/2-19.png 998w, https://www.osradar.com/wp-content/uploads/2019/11/2-19-300x52.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/2-19-768x134.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/2-19-696x121.png 696w" sizes="(max-width: 998px) 100vw, 998px" /><figcaption id="caption-attachment-16071" class="wp-caption-text">2.- Launch Nu Shell</figcaption></figure></p>
<p>And to exit the application, just run <strong>exit</strong>.</p>
<p>To see a sample of the potential of the application, let&#8217;s use the command <strong>ls</strong> in any directory. Remember that the command ls shows the files in a directory.</p>
<p><figure id="attachment_16072" aria-describedby="caption-attachment-16072" style="width: 781px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16072" src="https://www.osradar.com/wp-content/uploads/2019/11/3-18.png" alt="3.- Using Nu Shell - The ls command" width="781" height="321" srcset="https://www.osradar.com/wp-content/uploads/2019/11/3-18.png 781w, https://www.osradar.com/wp-content/uploads/2019/11/3-18-300x123.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/3-18-768x316.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/3-18-696x286.png 696w" sizes="(max-width: 781px) 100vw, 781px" /><figcaption id="caption-attachment-16072" class="wp-caption-text">3.- Using Nu Shell &#8211; The ls command</figcaption></figure></p>
<p>As we can see that is the content of the carptea Music of my system. But what stands out is the way in which the command is presented to us, different from the typical Linux terminal.</p>
<p>Easily and quickly we can have information about the files in a folder. But the strength of the application are the pipes and the filters. <strong>What if we want to show only the folders?</strong></p>
<p>I will go back to my personal folder and from there I will illustrate the example.</p>
<p>Just, run:</p>
<pre>:~$ ls | where type == Directory</pre>
<p><figure id="attachment_16073" aria-describedby="caption-attachment-16073" style="width: 979px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16073" src="https://www.osradar.com/wp-content/uploads/2019/11/4-14.png" alt="4.- Using filters on the terminal" width="979" height="703" srcset="https://www.osradar.com/wp-content/uploads/2019/11/4-14.png 979w, https://www.osradar.com/wp-content/uploads/2019/11/4-14-300x215.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/4-14-768x551.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/4-14-696x500.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/4-14-585x420.png 585w" sizes="(max-width: 979px) 100vw, 979px" /><figcaption id="caption-attachment-16073" class="wp-caption-text">4.- Using filters on the terminal</figcaption></figure></p>
<p>And that&#8217;s how fast and easy we can use the <strong>ls</strong> command.</p>
<p>Let&#8217;s see what the <strong>date</strong> command looks like.</p>
<p><figure id="attachment_16074" aria-describedby="caption-attachment-16074" style="width: 609px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16074" src="https://www.osradar.com/wp-content/uploads/2019/11/5-10.png" alt="5.- The date command" width="609" height="200" srcset="https://www.osradar.com/wp-content/uploads/2019/11/5-10.png 609w, https://www.osradar.com/wp-content/uploads/2019/11/5-10-300x99.png 300w" sizes="(max-width: 609px) 100vw, 609px" /><figcaption id="caption-attachment-16074" class="wp-caption-text">5.- The date command</figcaption></figure></p>
<p>If you use a lot of Linux, you will know that the ps command lists the active processes of our computer.</p>
<p><figure id="attachment_16075" aria-describedby="caption-attachment-16075" style="width: 1006px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-16075" src="https://www.osradar.com/wp-content/uploads/2019/11/6-4.png" alt="6.- The ps command " width="1006" height="638" srcset="https://www.osradar.com/wp-content/uploads/2019/11/6-4.png 1006w, https://www.osradar.com/wp-content/uploads/2019/11/6-4-300x190.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/6-4-768x487.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/6-4-696x441.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/6-4-662x420.png 662w" sizes="(max-width: 1006px) 100vw, 1006px" /><figcaption id="caption-attachment-16075" class="wp-caption-text">6.- The ps command</figcaption></figure></p>
<p>Of course there are many more utilities that are available in the official project documentation.</p>
<p>Over time they will improve and incorporate others. In addition to polishing others.</p>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>Nu shell is profiled as a revolutionary terminal that wants to adapt the shell to today&#8217;s needs without many problems. If you are sysadmin or work a lot with the terminal thank applications like this.</p>
<p>It still has a long way to go but thanks to the official documentation it is possible to get a lot out of it.</p>
<p>One last detail that I forgot to mention is that the application has autocomplete that makes the job even easier.</p>
<p><a href="https://book.nushell.sh/" target="_blank" rel="noopener noreferrer">The Nu Shell official documentation</a></p>
<p><a href="https://github.com/nushell/nushell" target="_blank" rel="noopener noreferrer">GitHub site.</a></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nu-shell-ubuntu/">Install Nu Shell on Ubuntu 20.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-nu-shell-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to recover deleted messages from WhatsApp</title>
		<link>https://www.osradar.com/how-to-recover-deleted-messages-from-whatsapp/</link>
					<comments>https://www.osradar.com/how-to-recover-deleted-messages-from-whatsapp/#respond</comments>
		
		<dc:creator><![CDATA[vazquez]]></dc:creator>
		<pubDate>Thu, 13 Aug 2020 14:41:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[WhatsApp]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=22578</guid>

					<description><![CDATA[<p>Greetings folks, since a few years ago WhatsApp has included a function to delete messages that have already been sent. A very useful function but sometimes when you want to read those deleted messages written by your family and friends. In this post, we will show you how to recover these deleted messages from WhatsApp. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-recover-deleted-messages-from-whatsapp/">How to recover deleted messages from WhatsApp</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Greetings folks, since a few years ago WhatsApp has included a function to delete messages that have already been sent. A very useful function but sometimes when you want to read those deleted messages written by your family and friends. In this post, we will show you how to recover these deleted messages from WhatsApp.</p>



<p>To <a href="https://www.osradar.com/how-to-recover-files-deleted-with-windows-file-recovery/" target="_blank" aria-label="undefined (opens in a new tab)" rel="noreferrer noopener">recover </a>deleted messages you will need an app called WAMR. This app is capable of reading messages from your notifications and creating a backup of messages based on your notification history. When the app detects that a message has been deleted it will immediately show you a notification.</p>



<p>Besides, this app allows you to recover media files that have been deleted, such as photos, videos, voice notes, audio, animated gifs, and stickers. Also includes a function to download Statuses.</p>



<h2>Installing WAMR</h2>



<p>To download and install WARM you can do it directly from the Google Play store, following the link below:</p>



<p><a aria-label="undefined (opens in a new tab)" href="https://play.google.com/store/apps/details?id=com.drilens.wamr&amp;hl=en" target="_blank" rel="noreferrer noopener">WAMR &#8211; Recover deleted messages &amp; status download</a></p>



<h2>First step</h2>



<p>Open the app, the app will show you a disclaimer. Then accept <em>The Terms &amp; Conditions</em> and <em>The Privacy Policy</em>.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa1-473x1024.jpg" alt="Disclaimer deleted messages " data-id="22624" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa1.jpg" data-link="https://www.osradar.com/?attachment_id=22624" class="wp-image-22624" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa1-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa1-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa1-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa1-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa1-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa1-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa1-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa1.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Disclaimer</figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa2-473x1024.jpg" alt="Welcome deleted messages " data-id="22625" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa2.jpg" data-link="https://www.osradar.com/?attachment_id=22625" class="wp-image-22625" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa2-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa2-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa2-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa2-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa2-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa2-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa2-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa2.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Welcome</figcaption></figure></li></ul></figure>



<h2>Second step</h2>



<p>The app will request you to select which applications you want to monitor, select the ones you want (the service is only available for some of them)</p>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/Wa3-473x1024.jpg" alt="Select Apps deleted messages " class="wp-image-22626" width="355" height="768" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa3-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa3-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa3-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa3-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa3-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa3-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa3-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa3.jpg 1080w" sizes="(max-width: 355px) 100vw, 355px" /><figcaption>Selecting Apps</figcaption></figure>



<h2>Third step</h2>



<p>Finally, the app will request you to enable some permissions.<br>In the first one, you will press the <em>Enable </em>button. After that, you will redirect to the <em>Autostart </em>settings, then you will grant the permissions to <em>WAMR</em>.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa4-473x1024.jpg" alt="Permission Screen" data-id="22627" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa4.jpg" data-link="https://www.osradar.com/?attachment_id=22627" class="wp-image-22627" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa4-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa4-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa4-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa4-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa4-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa4-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa4-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa4.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Permission Screen</figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa51-473x1024.jpg" alt="Autostart" data-id="22629" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa51.jpg" data-link="https://www.osradar.com/?attachment_id=22629" class="wp-image-22629" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa51-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa51-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa51-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa51-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa51-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa51-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa51-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa51.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Autostart Settings</figcaption></figure></li></ul></figure>



<p>Now go back to the permission screen and go to the second permission option and press <em>Enable</em>, then the application will ask you for permission to access the internal storage of your device; you have to press the <em>Allow </em>button.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa6-473x1024.jpg" alt="Permission Screen" data-id="22630" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa6.jpg" data-link="https://www.osradar.com/?attachment_id=22630" class="wp-image-22630" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa6-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa6-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa6-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa6-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa6-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa6-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa6-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa6.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Permission Screen</figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa7-473x1024.jpg" alt="Allow" data-id="22631" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa7.jpg" data-link="https://www.osradar.com/?attachment_id=22631" class="wp-image-22631" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa7-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa7-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa7-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa7-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa7-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa7-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa7-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa7.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Allow</figcaption></figure></li></ul></figure>



<p>Again go back to the permission screen press <em>Enable </em>on the third permission option. After that, you will redirect to the <em>Notification access settings</em>, then you will grant the permissions to <em>WAMR</em>.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa8-473x1024.jpg" alt="Permission Screen" data-id="22632" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa8.jpg" data-link="https://www.osradar.com/?attachment_id=22632" class="wp-image-22632" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa8-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa8-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa8-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa8-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa8-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa8-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa8-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa8.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Permission Screen</figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-473x1024.jpg" alt="Notification Access" data-id="22642" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561.jpg" data-link="https://www.osradar.com/?attachment_id=22642" class="wp-image-22642" srcset="https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2119561.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Notification Access</figcaption></figure></li></ul></figure>



<h2>Final Result</h2>



<p>After you finish the initial setup you will see the notification history plus two tabs, one for deleted media and the other one for downloading statuses. And that&#8217;s it, you can start enjoying the benefits of this app now.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-473x1024.jpg" alt="Notification History" data-id="22643" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481.jpg" data-link="https://www.osradar.com/?attachment_id=22643" class="wp-image-22643" srcset="https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/IMG_20200811_2138481.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Notification History</figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa11-473x1024.jpg" alt="Deleted Media Messages" data-id="22635" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa11.jpg" data-link="https://www.osradar.com/?attachment_id=22635" class="wp-image-22635" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa11-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa11-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa11-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa11-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa11-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa11-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa11-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa11.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Deleted Media Messages</figcaption></figure></li></ul></figure>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-473x1024.jpg" alt="Download Status" data-id="22638" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1.jpg" data-link="https://www.osradar.com/?attachment_id=22638" class="wp-image-22638" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa12-1.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Download Status</figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Wa14-473x1024.jpg" alt="Test deleted messages " data-id="22637" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Wa14.jpg" data-link="https://www.osradar.com/?attachment_id=22637" class="wp-image-22637" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Wa14-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Wa14-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Wa14-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Wa14-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Wa14-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Wa14-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Wa14-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Wa14.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">Test </figcaption></figure></li></ul></figure>



<h2>Conclusion</h2>



<p>The WAMR app is an incredible tool that can be useful to us. Now when someone sends you a message that has already been deleted you won&#8217;t be left in the dark again. in addition to being able to download statuses without problems. We hope to bring you even more tools to get the maximum benefit from your devices. Thank you for reading.</p>



<p>So, share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-recover-deleted-messages-from-whatsapp/">How to recover deleted messages from WhatsApp</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-recover-deleted-messages-from-whatsapp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
