<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>linux distro Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/linux-distro/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 27 Nov 2020 14:01:52 +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 enable local port forwarding using Ubuntu 20.04 and ssh</title>
		<link>https://www.osradar.com/how-to-enable-local-port-forwarding-using-ubuntu-20-04-and-ssh/</link>
					<comments>https://www.osradar.com/how-to-enable-local-port-forwarding-using-ubuntu-20-04-and-ssh/#respond</comments>
		
		<dc:creator><![CDATA[rajneesh]]></dc:creator>
		<pubDate>Sat, 28 Nov 2020 00:31:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=25769</guid>

					<description><![CDATA[<p>SSH, a very popular tool found almost with every IT guy. Commonly, when we talk about the insecure network for data, ssh is the tool that is most trustworthy. To protect data against attacks local port forwarding can help, the ssh protocol uses encryption to secure connections. Almost all of the ssh tools, come as [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-enable-local-port-forwarding-using-ubuntu-20-04-and-ssh/">How to enable local port forwarding using Ubuntu 20.04 and ssh</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.ssh.com/">SSH</a>, a very popular tool found almost with every IT guy. Commonly, when we talk about the insecure network for data, ssh is the tool that is most trustworthy. To protect data against attacks local port forwarding can help, the ssh protocol uses encryption to secure connections. Almost all of the ssh tools, come as free. <a href="https://www.osradar.com/best-ssh-clients-for-windows-operating-system/">Putty</a> can be an example. </p>



<p><strong>What all we require to make ssh run.</strong></p>



<ul><li>Here, in our scenario, we gonna use Ubuntu 20.04 as OS.</li><li>Open TCP port 22 on firewall, if required. </li><li>Create local users. </li><li>Control user access with directory server-PAM, or manually in /etc/sshd/sshd_config</li></ul>



<h2>Install SSH Services</h2>



<p>Lets install application first.</p>



<pre class="wp-block-preformatted">#apt-get update</pre>



<p>Install required package.</p>



<pre class="wp-block-preformatted">#apt install openssh-server</pre>



<p>Check what is the IP address of ssh server.</p>



<pre class="wp-block-preformatted"># ip a | grep inet </pre>



<p>SSH server IP is 192.168.1.62</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="885" height="301" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-44.png" alt="" class="wp-image-25878" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-44.png 885w, https://www.osradar.com/wp-content/uploads/2020/11/image-44-300x102.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-44-768x261.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/image-44-696x237.png 696w" sizes="(max-width: 885px) 100vw, 885px" /></figure>



<p>Check service status.</p>



<pre class="wp-block-preformatted"># systemctl status ssh</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="890" height="406" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-39.png" alt="Check ssh service status." class="wp-image-25827" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-39.png 890w, https://www.osradar.com/wp-content/uploads/2020/11/image-39-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-39-768x350.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/image-39-696x318.png 696w" sizes="(max-width: 890px) 100vw, 890px" /><figcaption>Check ssh service status.</figcaption></figure>



<h3><strong>Local port forwarding</strong> with ssh server.</h3>



<p>A tunnel can be created with SSH to forward a port on another server. SSH can be used to provide the proxy, which can be used to send web traffic. </p>



<p>Let&#8217;s see how to use ssh to protect the network by using port forwarding. </p>



<h2><strong>Scenario: </strong>&#8211; </h2>



<p>Here we have,</p>



<ul><li>A web server- <strong>192.168.1.161</strong> installed with ssh service as well.</li><li>An SSH server- <strong>192.168.1.62</strong></li><li>Localhost &#8211; <strong>192.168.1.268</strong>, where local port forwarding required to configure, installed with ssh service.   </li></ul>



<p>As described, in the illustrated diagram below, a local host machine wants to connect with the web server over the internet. A firewall is protecting that webserver. But for a web server, problem is that all communication taking place is in plain text. A secure tunnel protected with ssh can resolve the security issue here and we can establish secure communication with any remote user.  We will establish a secure ssh tunnel between ssh server sitting next to the web server and all our communication from localhost will be via <strong>ssh</strong>. </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="770" height="342" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-41.png" alt="Illustration to represent the local port forwarding " class="wp-image-25841" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-41.png 770w, https://www.osradar.com/wp-content/uploads/2020/11/image-41-300x133.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-41-768x341.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/image-41-696x309.png 696w" sizes="(max-width: 770px) 100vw, 770px" /><figcaption>Illustration to represent the local port forwarding </figcaption></figure>



<p>   To run our test lets install webservices on 192.168.1.161</p>



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



<pre class="wp-block-preformatted"># apt-install apache2</pre>



<p>Check if service are running or not, on webserver. </p>



<pre class="wp-block-preformatted">#systemctl status apache2</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="758" height="302" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-42.png" alt="check apache service status" class="wp-image-25842" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-42.png 758w, https://www.osradar.com/wp-content/uploads/2020/11/image-42-300x120.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-42-696x277.png 696w" sizes="(max-width: 758px) 100vw, 758px" /><figcaption>check apache service status</figcaption></figure>



<p><em><strong>Note: Refer previous steps, for how-to install ssh. </strong></em></p>



<h3>Enable local port forwarding</h3>



<p>On server 192.168.1.161 let&#8217;s have a look at the webserver status, working fine.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="547" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-43-1024x547.png" alt="browse webserver and check status " class="wp-image-25877" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-43-1024x547.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/image-43-300x160.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-43-768x410.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/image-43-696x371.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/image-43-1068x570.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/image-43.png 1156w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>browse webserver and check status </figcaption></figure>



<p>Let&#8217;s Login to our local host machine i.e. 192.168.1.268 to establish a secure ssh tunnel. </p>



<pre class="wp-block-preformatted"># ssh -L 9090:192.168.1.161:80 ubnt@192.168.1.62</pre>



<p>Where <strong>-L</strong> is the localhost machine we are logged in. 9090 any free port we can use, 192.168.1.161:80 is the address of HTTP server, 192.168.1.62 is ssh server with which localhost will establish a tunnel.  </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="864" height="285" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-45.png" alt="ssh port forwarding explained" class="wp-image-25881" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-45.png 864w, https://www.osradar.com/wp-content/uploads/2020/11/image-45-300x99.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-45-768x253.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/image-45-696x230.png 696w" sizes="(max-width: 864px) 100vw, 864px" /><figcaption>ssh port forwarding explained</figcaption></figure>



<p>Now, we will see that webserver is available on localhost magically. Have a look:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="734" height="604" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-46.png" alt="webserver status after port forwarding with ssh" class="wp-image-25882" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-46.png 734w, https://www.osradar.com/wp-content/uploads/2020/11/image-46-300x247.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-46-696x573.png 696w" sizes="(max-width: 734px) 100vw, 734px" /><figcaption>webserver status after port forwarding with ssh</figcaption></figure>



<p>Even if we disconnect ssh session, port forwarding will be still effective. </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="642" height="361" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-47.png" alt="Port forwarding working after exit from ssh remote server." class="wp-image-25883" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-47.png 642w, https://www.osradar.com/wp-content/uploads/2020/11/image-47-300x169.png 300w" sizes="(max-width: 642px) 100vw, 642px" /><figcaption>Port forwarding working after exit from ssh remote server.</figcaption></figure>



<p>Lets close that tunnel, get ssh process id.</p>



<pre class="wp-block-preformatted">ps -x | grep ssh
<code>864 ? Ss 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups</code>
5131 pts/0 S+ 0:00 grep --color=auto ssh</pre>



<p>Kill ssh process</p>



<pre class="wp-block-preformatted">pkill -9 5319   </pre>



<p>Is service up now ? No, its not!</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="963" height="527" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/11/image-48.png" alt="local port forwarding service disabled." class="wp-image-25885" srcset="https://www.osradar.com/wp-content/uploads/2020/11/image-48.png 963w, https://www.osradar.com/wp-content/uploads/2020/11/image-48-300x164.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/image-48-768x420.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/image-48-696x381.png 696w" sizes="(max-width: 963px) 100vw, 963px" /><figcaption>local port forwarding service disabled.</figcaption></figure>



<h3><strong>Conclusion:</strong></h3>



<p>SSH enable a secure tunneling, which help to protect webservices and enable local host to access as if they are installed locally. SSH tunnel can be stopped or stopped as and when required.</p>



<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-enable-local-port-forwarding-using-ubuntu-20-04-and-ssh/">How to enable local port forwarding using Ubuntu 20.04 and ssh</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-enable-local-port-forwarding-using-ubuntu-20-04-and-ssh/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Elementary 5.1 available</title>
		<link>https://www.osradar.com/elementary-os-51-available/</link>
					<comments>https://www.osradar.com/elementary-os-51-available/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 05 Dec 2019 22:45:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[Distribution]]></category>
		<category><![CDATA[Elementary]]></category>
		<category><![CDATA[elementary os]]></category>
		<category><![CDATA[hera]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16239</guid>

					<description><![CDATA[<p>With a lot of new features comes a new version of Elementary OS. A distribution based on Ubuntu that involves a redesign of the way we saw Linux on the desktop. So, Elementary 5.1 is available and today we will tell you about it. after 1 year of continuous and tireless work, the Elementary OS [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/elementary-os-51-available/">Elementary 5.1 available</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>With a lot of new features comes a new version of Elementary OS. A distribution based on Ubuntu that involves a redesign of the way we saw Linux on the desktop. So, Elementary 5.1 is available and today we will tell you about it.</p>



<p>after 1 year of continuous and tireless work, the Elementary OS development team has released a new version. Recently Elementary OS 5.1 has been released with the key name &#8220;Heda&#8221;.</p>



<p>This version has important new features and further consolidates the distribution that had earned a reputation for instability. Well, today we&#8217;ll show you what some of those new features are.</p>



<h2>Elementary 5.1 Features</h2>



<p>The first thing to say is that the distribution is more stable than ever. <strong>Since this version is based on Ubuntu 18.04.3</strong> with all the work behind it. That is to say, many bugs in the Ubuntu base have already been fixed. Besides this, since this version of Ubuntu is based, <strong>the graphical stack and the kernel have been updated. </strong></p>



<p>On the other hand, <strong>the Flatpak bet increases because they have managed to integrate it with the AppCenter</strong>. At least in an initial way but quite well achieved. And although they always recommend installing applications from the AppCenter, thanks to Sideload you can learn more about the implications of installing Flatpak applications. <strong>Also, the AppCenter is much faster now and its performance is better.</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="800" height="471" src="https://www.osradar.com/wp-content/uploads/2019/12/1.png" alt="1.- AppCenter" class="wp-image-16240" srcset="https://www.osradar.com/wp-content/uploads/2019/12/1.png 800w, https://www.osradar.com/wp-content/uploads/2019/12/1-300x177.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/1-768x452.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/1-696x410.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/1-713x420.png 713w" sizes="(max-width: 800px) 100vw, 800px" /><figcaption>1.- AppCenter</figcaption></figure>



<p>Another element to keep in mind is that this new version of Elementary OS improves <strong>Greeter and Onboarding</strong>. Greeter is the name given to the login and lock screen in Elementary OS. Textually citing the development team:</p>



<blockquote class="wp-block-quote"><p>&#8220;The newly redesigned login and lockscreen greeter looks sharper, works better, and fixes many reported issues with the previous greeter including focus issues, HiDPI issues, and better localization&#8221;</p></blockquote>



<figure class="wp-block-image size-large"><img loading="lazy" width="800" height="450" src="https://www.osradar.com/wp-content/uploads/2019/12/2.jpg" alt="2.- Elementary OS 5.1 greeter" class="wp-image-16241" srcset="https://www.osradar.com/wp-content/uploads/2019/12/2.jpg 800w, https://www.osradar.com/wp-content/uploads/2019/12/2-300x169.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/2-768x432.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/2-696x392.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/2-747x420.jpg 747w" sizes="(max-width: 800px) 100vw, 800px" /><figcaption>2.- Elementary OS 5.1 greeter</figcaption></figure>



<p>And in the case of Onboarding, it has now been improved to be more than just a welcome assistant. <strong>In fact, every time an important novelty arrives at Elementary OS, it will be shown using Onboarding</strong>. Something very interesting for newbies.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="427" src="https://www.osradar.com/wp-content/uploads/2019/12/3-1024x427.png" alt="3.- Onboarding" class="wp-image-16242" srcset="https://www.osradar.com/wp-content/uploads/2019/12/3-1024x427.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/3-300x125.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/3-768x320.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/3-696x290.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/3-1068x446.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/3-1007x420.png 1007w, https://www.osradar.com/wp-content/uploads/2019/12/3.png 1160w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Onboarding</figcaption></figure>



<p>There are many more improvements concerning the performance and use of distribution. For example, support for HiDPI and Accessibility options is improved.<strong> </strong></p>



<h2>Where to Download Elementary and Conclusion</h2>



<p>Of course, you need to download the Elementary OS <a href="https://www.osradar.com/how-to-make-a-bootable-usb-flash-drive/" target="_blank" rel="noreferrer noopener" aria-label="ISO (opens in a new tab)">ISO</a> to install and enjoy it on your PC. If you would like to do so, please visit the<a href="https://elementary.io/" target="_blank" rel="noreferrer noopener" aria-label=" project website (opens in a new tab)"> project website</a> and set up an amount of money you would like to collaborate with. In case you choose 0 you can do it for free always recommending <a href="https://www.osradar.com/3-applications-to-download-torrents-in-linux/" target="_blank" rel="noreferrer noopener" aria-label="Torrent (opens in a new tab)">Torrent</a> to not saturate the servers.</p>



<p>Finally, it must be said that Elementary OS 5.1 is a distribution designed for the novice. It is quite innovative and brings freshness to the Linux world. Let&#8217;s hope it&#8217;s a success and we&#8217;ll keep an eye on it. </p>



<p>If you want more information about this release, it&#8217;s best to read the <a href="https://blog.elementary.io/introducing-elementary-os-5-1-hera/" target="_blank" rel="noreferrer noopener" aria-label="release notes.  (opens in a new tab)">release notes. </a></p>



<p>Note: All images were taken from the release notes.</p>



<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/elementary-os-51-available/">Elementary 5.1 available</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/elementary-os-51-available/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Top Lightweight Linux Distros of 2019</title>
		<link>https://www.osradar.com/top-lightweight-linux-distros-of-2019/</link>
					<comments>https://www.osradar.com/top-lightweight-linux-distros-of-2019/#comments</comments>
		
		<dc:creator><![CDATA[osradar_editor]]></dc:creator>
		<pubDate>Sat, 15 Dec 2018 08:00:23 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[best linux distros]]></category>
		<category><![CDATA[lightweight linux distro]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[linux distro 2019]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=8412</guid>

					<description><![CDATA[<p>Well, we’ve reached almost the end of the year 2018! It’s been a pretty hot year with tons of Linux distro releases and updates. The industry had a hard time fighting against the Spectre and Meltdown along with a ton of ups and downs. Linux systems are always some of the lightest weight operating systems [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/top-lightweight-linux-distros-of-2019/">Top Lightweight Linux Distros of 2019</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Well, we’ve reached almost the end of the year 2018! It’s been a pretty hot year with tons of Linux distro releases and updates. The industry had a hard time fighting against the Spectre and Meltdown along with a ton of ups and downs.</p>
<p>Linux systems are always some of the lightest weight operating systems available. With less RAM and processor power, you can enjoy the same performance as you would on some of the most powerful systems. Of course, for heavier workloads, you need enough hardware resource that will be able to handle the load.</p>
<p>Today, let’s check out some of the lightest weight Linux distros to check out in the year 2019!</p>
<h1>Lightweight Linux distros</h1>
<ul>
<li>
<h3>Arch Linux</h3>
</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-8414 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-1.jpg" alt="" width="950" height="594" srcset="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-1.jpg 950w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-1-300x188.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-1-768x480.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-1-672x420.jpg 672w" sizes="(max-width: 950px) 100vw, 950px" /></p>
<p>It may surprise a lot of you but Arch Linux is one of the lightest weight Linux distros available in the world of Linux. The classic Arch Linux is a difficult choice for new users, of course. However, there are a number of other Arch-based, user-friendly distros like <a href="https://www.osradar.com/install-manjaro-linux-on-virtualbox/">Manjaro Linux</a> and <a href="https://www.osradar.com/how-to-install-antergos/">Antergos</a>.</p>
<p>All of them offers very easy-to-use environments along with support for popular desktop environments like GNOME, KDE Plasma, and Xfce etc.</p>
<ul>
<li>
<h3><a href="https://lubuntu.net/">Lubuntu</a></h3>
</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-8417 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-2.jpg" alt="" width="1920" height="1080" srcset="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-2.jpg 1920w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-2-300x169.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-2-768x432.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-2-1024x576.jpg 1024w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-2-1068x601.jpg 1068w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-2-747x420.jpg 747w" sizes="(max-width: 1920px) 100vw, 1920px" /></p>
<p>The list wouldn’t be complete if there was no Ubuntu system. Ubuntu, by far, is one of the most commonly used Linux systems because of its simplicity and user-friendliness. In the case of Lubuntu, it takes the step further and makes it way more suitable becoming another lightest weight distro.</p>
<p>“L” in the name Lubuntu originally was “lightweight”. Lubuntu comes up with <a href="https://lxde.org/">LXDE</a> – a super lightweight desktop environment that’s less hardware hungry and overall, more power efficient than the more popular ones.</p>
<p>I love Lubuntu as it runs without any problem on even the oldest machines of the dinosaur period!</p>
<ul>
<li>
<h3><a href="https://www.linuxliteos.com/">Linux Lite</a></h3>
</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-8416 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3.jpg" alt="" width="1238" height="880" srcset="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3.jpg 1238w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3-300x213.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3-768x546.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3-1024x728.jpg 1024w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3-1068x759.jpg 1068w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-3-591x420.jpg 591w" sizes="(max-width: 1238px) 100vw, 1238px" /></p>
<p>Just like the name suggests, it’s a real “light” distro to pick up. The interesting part is, its interface is custom designed to match with Windows XP. If you are a Windows guy/gal and planning to switch to Linux, then don’t forget to check it out!</p>
<p>With the system, you get all the essential tools like VLC Media Player, Netflix, and LibreOffice etc. Another interesting feature is zRAM. This tool, by default, compresses the data in the memory for a faster overall performance.</p>
<p>The distro is specially designed for older machines. You can easily multi-boot Linux Lite with your existing OS, letting you get used to the new environment while still working with your older one.</p>
<ul>
<li>
<h3><a href="https://linuxmint.com/">Linux Mint</a></h3>
</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-8415 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-4.jpg" alt="" width="1920" height="1080" srcset="https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-4.jpg 1920w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-4-300x169.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-4-768x432.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-4-1024x576.jpg 1024w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-4-1068x601.jpg 1068w, https://www.osradar.com/wp-content/uploads/2018/12/2019-dist-4-747x420.jpg 747w" sizes="(max-width: 1920px) 100vw, 1920px" /></p>
<p>It’s another strongly recommended Linux distro for new Linux users as it’s designed for simplicity. It uses Ubuntu at its core, so you’re also assured of almost all the popular apps available.</p>
<p>The interface of Linux Mint is also highly compatible with Windows users. It also comes up with all the essentials pre-installed. Ubuntu has officially ditched support for the 32-bit platform but Linux Mint still offers 32-bit system and software.</p>
<p>Feel free to share your thoughts and suggestions!</p>
<p>Enjoy!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/top-lightweight-linux-distros-of-2019/">Top Lightweight Linux Distros of 2019</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/top-lightweight-linux-distros-of-2019/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Newest Linux Updates – Debian 9.4, Fedora 28 Beta</title>
		<link>https://www.osradar.com/newest-linux-updates-debian-9-4-fedora-28-beta/</link>
					<comments>https://www.osradar.com/newest-linux-updates-debian-9-4-fedora-28-beta/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Tue, 13 Mar 2018 10:23:18 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux distro]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=2147</guid>

					<description><![CDATA[<p>In the world of Linux, there are lots of things always ongoing. Following the lifecycle, each product gets updated every now and then. In this series, 2 of the mainstream Linux distros – Debian and Fedora – released the latest version to the public. The latest version of Debian is v9.4 and Fedora released the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/newest-linux-updates-debian-9-4-fedora-28-beta/">Newest Linux Updates – Debian 9.4, Fedora 28 Beta</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In the world of Linux, there are lots of things always ongoing. Following the lifecycle, each product gets updated every now and then. In this series, 2 of the mainstream Linux distros – Debian and Fedora – released the latest version to the public. The latest version of Debian is v9.4 and Fedora released the v28 Beta.</p>
<h3>Debian</h3>
<p><img loading="lazy" class="wp-image-2149 size-full aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/debian-9.4.png" alt="" width="662" height="326" srcset="https://www.osradar.com/wp-content/uploads/2018/03/debian-9.4.png 662w, https://www.osradar.com/wp-content/uploads/2018/03/debian-9.4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/debian-9.4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2018/03/debian-9.4-533x261.png 533w" sizes="(max-width: 662px) 100vw, 662px" /></p>
<p>Debian is one of the most popular Linux systems available. Ubuntu and other major distros are based on Debian. It’s quite a popular choice for having a big group of community and support behind it.</p>
<p>The latest release of Debian 9.4 was released on March 10, 2018. According to Debian’s official statement, this isn’t a major released. Instead, it includes a lot of updated software packages and other system tweaks + fixes. You don’t have to delete your Debian 9 installation media. Instead, you can simply update your system to the latest version.</p>
<p>The latest installation images are updated everywhere. You can <a href="https://www.debian.org/CD/http-ftp/">download Debian 9.4 ISO</a>. The <a href="https://www.debian.org/News/2018/20180310">entire changelog of Debian 9.4 can be found here</a>.</p>
<p>If you’re a Debian user, you don’t have to completely re-install the OS. Run the following commands and you’re good to go!</p>
<h3>Fedora</h3>
<p><img loading="lazy" class="wp-image-2148 size-full aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/fedora.png" alt="" width="1200" height="626" srcset="https://www.osradar.com/wp-content/uploads/2018/03/fedora.png 1200w, https://www.osradar.com/wp-content/uploads/2018/03/fedora-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/fedora-768x401.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/fedora-1024x534.png 1024w, https://www.osradar.com/wp-content/uploads/2018/03/fedora-696x363.png 696w, https://www.osradar.com/wp-content/uploads/2018/03/fedora-1068x557.png 1068w, https://www.osradar.com/wp-content/uploads/2018/03/fedora-805x420.png 805w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p>Fedora is another awesome and powerful Linux distribution. The power of stability and performance makes Fedora a really good choice for both personal and professional usage. Fedora 28 is currently in beta stage and will follow the following time schedule of release –</p>
<table>
<tbody>
<tr>
<td width="312">6 February, 2018</td>
<td width="312"><a href="https://fedoraproject.org/wiki/ReleaseEngineering/StringFreezePolicy">Software String Freeze</a></td>
</tr>
<tr>
<td width="312">6 March, 2018</td>
<td width="312">Beta freeze</td>
</tr>
<tr>
<td width="312">27 March, 2018</td>
<td width="312">release of Beta version</td>
</tr>
<tr>
<td width="312">17 April, 2018</td>
<td width="312">Final freeze</td>
</tr>
<tr>
<td width="312">1 May, 2018</td>
<td width="312">Release of Fedora 28 final</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Here’re all the new features in Fedora 28.</p>
<ul>
<li>Better battery life on laptops – several power management tweaks</li>
<li>Improved &amp; easier installation process, like Ubuntu</li>
<li>Better support for VirtualBox, one of the best solution for virtual machine</li>
<li>More supplemental wallpapers</li>
</ul>
<p>Here’s a big list of other <a href="https://fedoraproject.org/wiki/Releases/28/ChangeSet">proposed and implemented features for Fedora 28</a>.</p>
<p>If you&#8217;re looking for other Linux distros to try out, we have <a href="https://www.osradar.com/top-10-linux-distros/">the best Linux distros of 2018</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/newest-linux-updates-debian-9-4-fedora-28-beta/">Newest Linux Updates – Debian 9.4, Fedora 28 Beta</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/newest-linux-updates-debian-9-4-fedora-28-beta/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Endless OS – User-friendly Distro</title>
		<link>https://www.osradar.com/endless-os-user-friendly-distro/</link>
					<comments>https://www.osradar.com/endless-os-user-friendly-distro/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Fri, 23 Feb 2018 10:00:47 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[best linux distro]]></category>
		<category><![CDATA[endless]]></category>
		<category><![CDATA[endless os]]></category>
		<category><![CDATA[linux distro]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=1966</guid>

					<description><![CDATA[<p>Linux distros are always a fun and great way to keep the user experience fresh and full of joy. Moreover, trying out new ones will ensure the greater possibility to find out the perfect and most suitable one for oneself. Today, let’s take a look at the user-friendly Linux distro – Endless OS. At the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/endless-os-user-friendly-distro/">Endless OS – User-friendly Distro</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Linux distros are always a fun and great way to keep the user experience fresh and full of joy. Moreover, trying out new ones will ensure the greater possibility to find out the perfect and most suitable one for oneself. Today, let’s take a look at the user-friendly Linux distro – Endless OS.</p>
<p>At the first look, the OS will feel like Android. The desktop environment is a custom design from GNOME 3 and it’s highly optimized for a user-friendly experience. It’s entirely designed to be very simple and easy-to-install. <a href="https://endlessos.com/">Get Endless OS</a>.</p>
<h3>The base of Endless</h3>
<p>Endless OS is built from Debian, one of the most popular choices. However, Endless OS devs also mentioned that it’s not the same thing as being based on Debian Linux. The distro uses OSTree/libostree combined with Flatpak that manages the base system and other apps. Debian &amp; Debian-based distros use .deb packages for the system and apps. OSTree isn’t a package manager in this sense. Instead, it’s a system used for performing atomic upgrades of complete file system trees.</p>
<p>The goal of Endless OS is to create a global platform for digital literacy. The usage, simplicity, and others make it very suitable for new Linux users as it eliminates the barrier for them.</p>
<h3>Interface</h3>
<p><img loading="lazy" class="size-full wp-image-1969 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/02/endless-os-interface.jpg" alt="" width="800" height="500" srcset="https://www.osradar.com/wp-content/uploads/2018/02/endless-os-interface.jpg 800w, https://www.osradar.com/wp-content/uploads/2018/02/endless-os-interface-300x188.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/02/endless-os-interface-768x480.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/02/endless-os-interface-696x435.jpg 696w, https://www.osradar.com/wp-content/uploads/2018/02/endless-os-interface-672x420.jpg 672w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>For any PC user, the interface is quite simple to understand. The far left button on the taskbar doesn’t act like the main menu button. Instead, it’s used to show up the desktop. The general layout and functionality resemble Android experience very well. In addition to Android, there’s a taskbar at the bottom. If basic Android is familiar to you, you’ll have no difficulty in mastering this Linux distro. The learning curve is very simple. However, don’t confuse yourself – it’s not an Android emulator,</p>
<p>The App Center contains 2 different categories – “Installed Apps” and “Available Programs”. It’s more like the “Play Store” in Android. You can get new apps and update the existing apps very easily. There’s a search bar on the home screen, very simple and powerful that can be used to search on both offline and online.</p>
<p>Endless OS is mostly a one-size-fits-all configuration. That’s why there are very simple customization settings available throughout the system. For example, the customizable options include power, mouse/touchpad, background etc.</p>
<h3>Endless versions</h3>
<p>There’re 2 options available for Endless OS – Basic and Full. Users might get confused, but both are relatively the same. The Basic version is a lightweight edition of the installation package. It comes up with a very few pre-installed apps and suitable to run from an 8GB USB flash drive. The Full version is a rather heavy package, containing around 100+ apps pre-installed on the system. This takes up to 16GB of disk space to download, and 32GB minimum free disk space to install.</p>
<p>The hardware support, like any other Linux distros, is very good. NVIDIA users will have a slight advantage as it uses the driver developed by NVIDIA instead of running the open-source graphics driver.</p>
<p>Endless OS keeps itself up-to-date as long as internet connection is available. That saves up a lot of works for new users. For example, Ubuntu requires that you run the “sudo apt-get” commands frequently to keep all the apps updated. In this case, Endless OS is a life saver.</p>
<p>Interested in Endless OS? <a href="https://endlessos.com/">Get Endless OS now</a>! If you don’t wish to switch your OS, at least, give it a try. Are you looking for a challenging Linux distro? You can try out Arch Linux – a very challenging one. Less terrifying editions of Arch are also available, such as <a href="https://www.osradar.com/arch-anywhere-is-dead-long-live-anarchy/">Anarchy Linux</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/endless-os-user-friendly-distro/">Endless OS – User-friendly Distro</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/endless-os-user-friendly-distro/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Q4OS – Linux Made Easy for Windows Users</title>
		<link>https://www.osradar.com/q4os-linux-made-easy-windows-users/</link>
					<comments>https://www.osradar.com/q4os-linux-made-easy-windows-users/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Tue, 20 Feb 2018 04:42:53 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[best linux distro]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[windows linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=1943</guid>

					<description><![CDATA[<p>Linux is one of the best operating systems in the world. The system is lightweight, fast and resource efficient, ensuring compatibility with almost all the hardware and software. However, Linux is always a terrible experience for Windows users (except the brave &#38; intelligent ones), especially when they jump from Windows for the first time. For [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/q4os-linux-made-easy-windows-users/">Q4OS – Linux Made Easy for Windows Users</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Linux is one of the best operating systems in the world. The system is lightweight, fast and resource efficient, ensuring compatibility with almost all the hardware and software. However, Linux is always a terrible experience for Windows users (except the brave &amp; intelligent ones), especially when they jump from Windows for the first time. For them, a new Linux distro is available – Q4OS. The interface is designed especially for the Windows users who are going to use Linux for the first time.</p>
<p>But keep in mind that the primary target of Q4OS isn’t the casual/general users. With the powerful system interface (highly modified <a href="https://www.trinitydesktop.org/">Trinity Desktop</a>) quite similar to Windows XP/7, their target is the businesses/enterprises that are looking for an alternative to Windows while having the same interface and power. As you know, Windows XP, 7, 8 &amp; 8.1 is obsolete now. Microsoft discontinued the mainstream support for these OS, which means they’re obsolete and will be supported via Extended Support program (not Windows XP). Businesses adapted to those operating systems and Q4OS targets to be the dominant part there.</p>
<p>However, this shouldn’t (and must not) prevent general users from having the feeling of this powerful and beautiful distro. <a href="https://q4os.org/">Get Q4OS today!</a></p>
<h3>Features</h3>
<p>The first and most important feature of Q4OS is the interface. In a word, it’s splendid. As a Windows user, I must admit – it’s very assuring. The system complexity of Linux is huge, and switching from Windows isn’t as easy as it sounds.</p>
<p>Now, the Linux features. Q4OS is based on Debian, the same base as Ubuntu. Ubuntu is one of the most popular Linux distros, ensuring that almost all the popular software is available without any trouble. Moreover, all the popular commands are usable.</p>
<p>The built-in software packages are pretty much everything you need for your everyday life, but those are relatively old version. To stay safe, you must update all the software. Here’s the list of installed major programs.</p>
<ul>
<li>LibreOffice</li>
<li>Thunderbird</li>
<li>Firefox</li>
<li>VLC</li>
<li>Google Chrome</li>
<li>Shotwell</li>
<li>Konqeror</li>
<li>Synaptic</li>
</ul>
<h3>Security</h3>
<p>If you’re an experienced Linux user, prepare to get shocked. It’s a bit disappointing to see such a critical issue. When you install any software from the package manager (Synaptic Package Manager), it asks for the root password. But when running any command with “sudo”, for example, “sudo apt-get install firefox”, it won’t ask for the password!</p>
<p>In the attempt to make Q4OS more like Windows, the developers made this modification. Moreover, Windows users are more likely to install software from the GUI tool instead of the command line. That doesn’t make sense. If you’re interested in Q4OS or using it now, please fix this issue (or feature?) now. I also recommend taking a backup of the file before making the modification.</p>
<ul>
<li>Open the file from the following directory path – /etc/sudoers.d/30_q4os_apt</li>
<li>Comment out these lines from the file:</li>
</ul>
<pre class="lang:default decode:true">%sudo    ALL = NOPASSWD: /usr/bin/apt-get *

%sudo    ALL = NOPASSWD: /usr/bin/apt-key *

%sudo    ALL = NOPASSWD: /usr/bin/dpkg *</pre>
<ul>
<li>Save the file.</li>
</ul>
<p>Now, the “sudo” from the terminal will ask for a password.</p>
<p>It’s a nice Linux distro in my opinion and I believe that others will find it very interesting. Whether you’re a Windows user or a master Linux user, don’t forget to try out Q4OS.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/q4os-linux-made-easy-windows-users/">Q4OS – Linux Made Easy for Windows Users</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/q4os-linux-made-easy-windows-users/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Namib Linux – A New &#038; Easier Approach towards Arch</title>
		<link>https://www.osradar.com/namib-linux-new-easier-approach-towards-arch/</link>
					<comments>https://www.osradar.com/namib-linux-new-easier-approach-towards-arch/#comments</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Thu, 15 Feb 2018 05:59:39 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[namib]]></category>
		<category><![CDATA[namib linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=1914</guid>

					<description><![CDATA[<p>There are many Linux distros all around the internet. Most definitely, Arch Linux has always been one of the hardest ones to use, even for mediocre users. For making Arch a popular choice like Debian, the community is working hard to make it easier. In this attempt, Namib Linux has made Arch a lot easier. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/namib-linux-new-easier-approach-towards-arch/">Namib Linux – A New &#038; Easier Approach towards Arch</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>There are many Linux distros all around the internet. Most definitely, Arch Linux has always been one of the hardest ones to use, even for mediocre users. For making Arch a popular choice like Debian, the community is working hard to make it easier. In this attempt, Namib Linux has made Arch a lot easier.</p>
<p>Namib Linux is a Linux distro based on the Arch Linux. It’s relatively new to the distro world, with the latest release (v17.11) in the last year. However, this has already proved its worth by compensating the delay with blazing performance and simpler system. <a href="https://namib.meerkat.tk/download/">Get Namib Linux now!</a></p>
<p>Namib Linux is developed and maintained by Meerkat Software based in Tokelau, New Zealand. This distro is currently available in two languages – English and French. More locale is supported, but you have to add them manually through the “Namib Settings Manager”.</p>
<p><figure id="attachment_1918" aria-describedby="caption-attachment-1918" style="width: 794px" class="wp-caption aligncenter"><img loading="lazy" class="wp-image-1918 size-full" src="https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager.png" alt="" width="794" height="596" srcset="https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager.png 794w, https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager-300x225.png 300w, https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager-768x576.png 768w, https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager-696x522.png 696w, https://www.osradar.com/wp-content/uploads/2018/02/namib-locale-manager-560x420.png 560w" sizes="(max-width: 794px) 100vw, 794px" /><figcaption id="caption-attachment-1918" class="wp-caption-text">Namib Locale Manager</figcaption></figure></p>
<h3>Features</h3>
<p>The features of Namib Linux are numerous. Here’re some of the core and important features.</p>
<ul>
<li>Rolling Update – Rolling update was never a widespread practice for Linux distros. However, Namib Linux follows rolling updates, ensuring that the system is always up-to-date without re-installing the complete operating system. This saves up a lot of time and effort for everyone.</li>
<li>Interface – Namib Linux comes up with a very simple user interface. It’s highly customizable, flexible and of course, user-friendly. It doesn’t matter whether you’re new to Linux or an experienced user, you’ll never feel like a fish out of water. Namib Linux uses MATE desktop environment, pretty similar to Windows 7 interface.</li>
<li>Installation – Arch Linux has always been one of the notorious distros for the installation process. Even mediocre users would become puzzled while installation. However, Namib Linux has simply transformed the entire process. With soothing GUI and easy-to-understand instructions, it has removed the stress for good. The installation is optimized for newbies. Take a look at the two different screenshots of original Arch Linux and Namib Linux.</li>
</ul>
<p><figure id="attachment_1916" aria-describedby="caption-attachment-1916" style="width: 765px" class="wp-caption aligncenter"><img loading="lazy" class="wp-image-1916 size-full" src="https://www.osradar.com/wp-content/uploads/2018/02/arch-linux-installation.png" alt="" width="765" height="412" srcset="https://www.osradar.com/wp-content/uploads/2018/02/arch-linux-installation.png 765w, https://www.osradar.com/wp-content/uploads/2018/02/arch-linux-installation-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/02/arch-linux-installation-696x375.png 696w" sizes="(max-width: 765px) 100vw, 765px" /><figcaption id="caption-attachment-1916" class="wp-caption-text">Arch Linux Installation Screen</figcaption></figure></p>
<p><figure id="attachment_1917" aria-describedby="caption-attachment-1917" style="width: 1920px" class="wp-caption aligncenter"><img loading="lazy" class="wp-image-1917 size-full" src="https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen.png" alt="" width="1920" height="1080" srcset="https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen.png 1920w, https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen-696x392.png 696w, https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen-1068x601.png 1068w, https://www.osradar.com/wp-content/uploads/2018/02/namib-linux-installation-sreen-747x420.png 747w" sizes="(max-width: 1920px) 100vw, 1920px" /><figcaption id="caption-attachment-1917" class="wp-caption-text">Namib Linux Installation Screen</figcaption></figure></p>
<ul>
<li>Performance – Namib Linux gets the most out of the hardware to ensure the best possible performance. The ISO is ~1.5GB, somewhat lightweight, to be honest. However, like any other Linux distro, it consumes very less hardware resource and runs smooth. It’s highly flexible &amp; resource efficient.</li>
<li>Software – Arch Linux is generally designed to provide the core only; users have to install each and every other software manually. But Namib Linux changes this approach. It comes up with a good collection of built-in programs to make your life easier. It includes LibreOffice suite, GIMP, Eye of MATE Image Viewer etc.</li>
<li>Compatibility – Hardware is a big issue when your PC is obsolete. Namib Linux comes up with a very good collection of hardware drivers, ensuring the most portability. You can even create a live USB and use it on any hardware!</li>
</ul>
<h3>Why use Arch?</h3>
<p>It’s a good question and many Linux users (including me) ask this. Arch Linux is from a better Linux OS family line. Unfortunately, due to its rough and tough environment, it didn’t gain much popularity. However, Arch is getting more and more user-friendly and available for every type of users, thanks to the efforts of the community.</p>
<p>Namib Linux definitely eases Arch’s complexity. With default software and other tweaks, it’s not so distinguishable than any other Linux distro. If you’re an Arch fan or willing to try Arch for a while, take a look at Namib Linux. Trust me, you won’t be disappointed.</p>
<p>Arch is trying to reach more people, and there’s another nice Arch-based distro – Anarchy Linux. <a href="https://www.osradar.com/arch-anywhere-is-dead-long-live-anarchy/">Have a look at Anarchy Linux</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/namib-linux-new-easier-approach-towards-arch/">Namib Linux – A New &#038; Easier Approach towards Arch</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/namib-linux-new-easier-approach-towards-arch/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Arch Anywhere is Dead – Long Live Anarchy</title>
		<link>https://www.osradar.com/arch-anywhere-is-dead-long-live-anarchy/</link>
					<comments>https://www.osradar.com/arch-anywhere-is-dead-long-live-anarchy/#comments</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Sun, 11 Feb 2018 07:10:42 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[anarchy linux]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[arch linux distro]]></category>
		<category><![CDATA[linux distro]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=1882</guid>

					<description><![CDATA[<p>Arch Linux is one of the mainstream Linux distros of the world. To make it widely popular among the community, Arch Anywhere was launched. Arch Anywhere was a distribution that got down from the crown when there was a trademark infringement. Now, it’s completely rebranded to Anarchy Linux. If you’ve been an Arch user or [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/arch-anywhere-is-dead-long-live-anarchy/">Arch Anywhere is Dead – Long Live Anarchy</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Arch Linux is one of the mainstream Linux distros of the world. To make it widely popular among the community, Arch Anywhere was launched. Arch Anywhere was a distribution that got down from the crown when there was a trademark infringement. Now, it’s completely rebranded to Anarchy Linux. If you’ve been an Arch user or looking for having the best Arch Linux experience, Anarchy Linux is the best choice.</p>
<p>This distro is exceptional what it sets out and what it achieves. If you had the fear of Arch Linux, put your fear aside and get a grab on the Anarchy Linux. It’s a bitter truth that Arch Linux isn’t for the faint of heart. It’s very scary for new Linux users, even to some intermediate users. The installation of it alone is scary enough. Here, distros like Anarchy come in to help out general users with a user-friendly environment.</p>
<h3>Installation</h3>
<p>The installation process of Arch Linux is very challenging. However, Anarchy isn’t that much of a difficulty, but not an easy one either. Comparing to other mainstream Linux distros like Ubuntu, Linux Mint, openSUSE etc., Anarchy Linux installation takes a good focus and understanding.</p>
<p>The default installer uses the Xfce4 graphical interface but doesn’t make thing easy for others. You have to have an experience and understanding to go through the text-based installer. For example, the very first step of installer asks you to update the list of mirror servers. Many experienced users will stumble a bit, let alone the newbies.</p>
<p><img loading="lazy" class="size-full wp-image-1884 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1.jpg" alt="" width="794" height="546" srcset="https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1.jpg 794w, https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1-300x206.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1-768x528.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1-218x150.jpg 218w, https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1-696x479.jpg 696w, https://www.osradar.com/wp-content/uploads/2018/02/anarchy-linux-installation-1-611x420.jpg 611w" sizes="(max-width: 794px) 100vw, 794px" /></p>
<p>Let’s go a bit deeper. Select “Download &amp; Rank New Mirrors”, tab down to “OK” and hit Enter. You can choose the nearest mirror to your location and it’s done. The next few screens are normal and simple (language, time zone, keyboard layout etc.).</p>
<p>The next part is overwhelming for many Arch users. Anarchy Linux comes up with an option to “Auto Partition Drive”.</p>
<p><img loading="lazy" class="size-full wp-image-1885 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux.jpg" alt="" width="797" height="552" srcset="https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux.jpg 797w, https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux-300x208.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux-768x532.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux-218x150.jpg 218w, https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux-696x482.jpg 696w, https://www.osradar.com/wp-content/uploads/2018/02/auto-partition-anarchy-linux-606x420.jpg 606w" sizes="(max-width: 797px) 100vw, 797px" /></p>
<p>Here, I’m choosing the “Auto Partition Drive” option. Next option will allow you to choose the drive to install the OS. If you have only one drive, it’s just a matter to hit Enter. Otherwise, select the drive, choose the file system (ext2/3/4, xfs, btrfs etc.), tab down to OK, hit Enter. Then, you can choose whether you want the SWAP space. If you want to have (recommended to have), specify the size (recommended 2GB minimum). The choice between GPT and MBR is available as well.</p>
<h3>Installation types</h3>
<p>Now, you’ll have to choose the desired installation of Anarchy Linux. 5 options are available here:</p>
<ul>
<li>Anarchy-Desktop</li>
<li>Anarchy-Desktop-LTS</li>
<li>Anarchy-Server</li>
<li>Anarchy-Server-LTS</li>
<li>Anarchy-Advanced</li>
</ul>
<p>The LTS stands for Long Term Support. If you’re a general user, use the Anarchy-Desktop (the default choice).</p>
<p><img loading="lazy" class="size-full wp-image-1886 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy.jpg" alt="" width="801" height="551" srcset="https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy.jpg 801w, https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy-300x206.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy-768x528.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy-218x150.jpg 218w, https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy-696x479.jpg 696w, https://www.osradar.com/wp-content/uploads/2018/02/software-installation-screen-anarchy-611x420.jpg 611w" sizes="(max-width: 801px) 100vw, 801px" /></p>
<p>The installation will also guide to install various software packages to install. Don’t worry; if you miss anything, you can install it later.</p>
<p>There’re two desktop environments I like – GNOME and Budgie. Although the home interface doesn’t look so distinct, the “Apps” page surely looks different.</p>
<p><img loading="lazy" class="size-full wp-image-1887 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/02/gnome-and-budgie-desktop.jpg" alt="" width="800" height="337" srcset="https://www.osradar.com/wp-content/uploads/2018/02/gnome-and-budgie-desktop.jpg 800w, https://www.osradar.com/wp-content/uploads/2018/02/gnome-and-budgie-desktop-300x126.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/02/gnome-and-budgie-desktop-768x324.jpg 768w, https://www.osradar.com/wp-content/uploads/2018/02/gnome-and-budgie-desktop-696x293.jpg 696w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Here, GNOME is on the left and Budgie on the right.</p>
<h3>Why use Arch Linux without the “Arch”?</h3>
<p>It’s a nice question but revealing. Arch Linux, being optimized for an advanced user, promotes the feeling of “elitism”, like Gentoo. However, the complexity of Arch is below Gentoo. Anarchy Linux, making everything as simpler as possible, targets to reach more users. If you’re looking for something not that challenging, Anarchy is your right choice. It’s well-maintained, extremely stable and most of all, based on a highly regarded Linux arch.</p>
<p>If Anarchy doesn’t ring the bell of your heart, don’t worry. We have listed <a href="https://www.osradar.com/top-10-linux-distros/">the best Linux distros of 2018.</a> Choose what you love the most!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/arch-anywhere-is-dead-long-live-anarchy/">Arch Anywhere is Dead – Long Live Anarchy</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/arch-anywhere-is-dead-long-live-anarchy/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>SolydXK – A New Distro for Your Collection</title>
		<link>https://www.osradar.com/solydxk-new-distro-collection/</link>
					<comments>https://www.osradar.com/solydxk-new-distro-collection/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Sat, 27 Jan 2018 15:31:39 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[best linux]]></category>
		<category><![CDATA[best linux distro]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[solydk]]></category>
		<category><![CDATA[solydx]]></category>
		<category><![CDATA[SolydXK]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=1610</guid>

					<description><![CDATA[<p>For a Linux user, every new distro is a whole new experience. For normal to advanced users, SolydXK is a great opportunity to use the most out of the computer. SolydXK is a distro based on Debian, the core of Ubuntu. It’s highly like that you’re using Ubuntu or other Ubuntu flavors. As SolydXK is [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/solydxk-new-distro-collection/">SolydXK – A New Distro for Your Collection</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>For a Linux user, every new distro is a whole new experience. For normal to advanced users, SolydXK is a great opportunity to use the most out of the computer. SolydXK is a distro based on Debian, the core of Ubuntu. It’s highly like that you’re using Ubuntu or other Ubuntu flavors. As SolydXK is based on Debian, you’ll feel nothing different with the functionalities and features different than Ubuntu. SolydXK also provides optimized Raspberry Pi version.</p>
<h3>The history</h3>
<p>SolydXK’s history goes back to another popular Linux distro – Linux Mint. The KDE and Debian edition was most favorite of the key developer, Arjen Balfoort. It was his expectation of two of these flavors blended into one. As it didn’t happen officially, Balfoort decided to make his own distribution.</p>
<p>This gave the birth of “The unofficial LMDE Xfce”. With the help of the community, the Xfce version was derived. When the unofficial editions were not becoming official, Arjen Balfoort decided to put these 2 great distros on their own feet.</p>
<h3>Features</h3>
<p>Since the initial release of SolydXK in 2013, it’s always been pretty amazing. SolydXK comes in 2 different environments – KDE and XFCE. That’s where the name comes in – SolydX with XFCE desktop and SolydK with KDE Plasma desktop. Both of them are pretty awesome and nice looking. However, due to the simplicity of XFCE, I’m mostly attracted to SolydX edition. KDE is a nice one but their recent changes to the system &amp; organization force me a lot of work.</p>
<p>Another thing I like about Xfce is the lightweight environment. Everything is organized in a neat &amp; clean way.</p>
<p><img loading="lazy" class="size-full wp-image-1616 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/01/solydx-screenshot.png" alt="" width="800" height="450" srcset="https://www.osradar.com/wp-content/uploads/2018/01/solydx-screenshot.png 800w, https://www.osradar.com/wp-content/uploads/2018/01/solydx-screenshot-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/01/solydx-screenshot-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/01/solydx-screenshot-696x392.png 696w, https://www.osradar.com/wp-content/uploads/2018/01/solydx-screenshot-747x420.png 747w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Unless you’re an experienced KDE user or willing to put time on re-arranging everything, KDE is better left alone.</p>
<p><img loading="lazy" class="size-full wp-image-1617 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/01/solydk.jpg" alt="" width="680" height="425" srcset="https://www.osradar.com/wp-content/uploads/2018/01/solydk.jpg 680w, https://www.osradar.com/wp-content/uploads/2018/01/solydk-300x188.jpg 300w, https://www.osradar.com/wp-content/uploads/2018/01/solydk-672x420.jpg 672w" sizes="(max-width: 680px) 100vw, 680px" /></p>
<p>Keeping the system up-to-date is a most important feature of every Linux distro. The most important feature SolydXK provides is the rolling update system. It’s not a common feature of other Linux distros except a few ones. It saves a lot of time-consuming procedures for performing manual updates. Moreover, when a major update is released, you don’t have to re-install the entire OS – everything is right on the spot.</p>
<h3>Things not inside</h3>
<p>SolydXK ships with the minimum programs installed like a browser (Firefox), multimedia support (VLC) and office suite (LibreOffice). The sparse selection of apps is only bare necessities. It’s more a convenience than a drawback.</p>
<p>If you need any toolkit or program, you can simply install it through the Software Manager. Another important thing is, you need to update all your packages to the latest version. The default installation of Firefox is 52, where Firefox 58 is released. It’s just a simple process – nothing big of a deal, right?</p>
<p>Security is, nowadays, an important factor for everyone. Especially the Meltdown and Spectre has shaken the world. The latest update of SolydXK contains the kernel patch for the flaw. For rolling update system, you don’t have to manually update or download the entire OS from scratch.</p>
<h3>The bottom line</h3>
<p>Personally, I love the SolydXK. Those who love stability, a well-designed &amp; well-managed Linux distro, SolydXK is their perfect choice. Currently, I’m sticking with SolydX, the Xfce edition. The KDE edition seems a bit uninviting but if you have the time to spare, it’s worth it with the tons of graphic embellishments.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/solydxk-new-distro-collection/">SolydXK – A New Distro for Your Collection</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/solydxk-new-distro-collection/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>RHEL 7.5 Beta is Out – New Features &#038; Expectations</title>
		<link>https://www.osradar.com/rhel-7-5-beta-new-features-expectations/</link>
					<comments>https://www.osradar.com/rhel-7-5-beta-new-features-expectations/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Sat, 27 Jan 2018 15:21:07 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[rhel 7]]></category>
		<category><![CDATA[rhel beta]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=1612</guid>

					<description><![CDATA[<p>Red Hat Enterprise Linux (RHEL) is, most definitely, the best Linux distro for the enterprise sector. At present, Red Hat released the 7.5 Beta very recently. Major features An interesting feature is Wayland support. Wayland is intended as a better and simpler replacement for the widely used X server that’s responsible for the visual interface [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/rhel-7-5-beta-new-features-expectations/">RHEL 7.5 Beta is Out – New Features &#038; Expectations</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Red Hat Enterprise Linux (RHEL) is, most definitely, the best Linux distro for the enterprise sector. At present, Red Hat released the 7.5 Beta very recently.</p>
<h3>Major features</h3>
<p>An interesting feature is Wayland support. Wayland is intended as a better and simpler replacement for the widely used X server that’s responsible for the visual interface of Linux. This new replacement is targeting simplicity, easier to develop and maintain. It’s written in C and we can expect that GNOME &amp; KDE, 2 mainstream desktop environment will be ported to it. In RHEL 7.5, Wayland support in GNOME is present as the tech preview. It’s confirmed by the 7.5 <a href="https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7-beta/html/7.5_release_notes/technology_previews_desktop">release notes</a>.</p>
<p>With this implementation, we’re expecting that Red Hat Enterprise Linux 8.0 will offer a GNOME Wayland session by default. However, it’s not too surprising as RHEL is providing the support with several latest releases. The GNOME Wayland experience is continuing further refining but yet to prove as very solid. Red Hat also wishes for supporting Mutter EGLStreams code for NVIDIA Linux driver support.</p>
<p>Alongside other updates, Red Hat Linux Enterprise (RHEL) comes up with initial Heterogeneous Memory Management (HMM) support in the kernel. You can enable the feature with “<em>experimental_hmm=enable</em>”. RHEL 7.5 beta implements “kexec” system call and its fast reboot capability, KASLR address space layout randomization is also in the form of tech review.g</p>
<h3>Additional features</h3>
<p>Other key features include –</p>
<ul>
<li>Security improvements – more securely unlocking Network Bound Disk Encrypted devices during boot.</li>
<li>Integrated Red Hat Ansible DevOps Automation with OpenSCAP – easier to automate compliance issue remediation. Admins can reliably and efficiently scale policies across servers and clouds.</li>
<li>Compliance improvements with PTP (Precision Time Protocol) and NTP (Network Time Protocol).</li>
<li>Easier-to-use admin console <a href="http://cockpit-project.org/">Cockpit</a> – easier system management covering almost everything.</li>
<li>Ability to auto-generate a “know-good” bootable snapshot. This feature allows faster recovery and rollback after patching.</li>
<li>VDO (Virtual Data Optimizer) to reduce data redundancy through inline compression and deduplication. According to Red Hat, VDO can increase effective capacity by up to 6 times.</li>
</ul>
<p>These awesome features are in testing phase but expected to come out with the next stable release. The codes are refining and evolving. Feel free to check out the <a href="https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7-beta/html/7.5_release_notes/technology_previews_desktop">beta</a>. You can <a href="https://access.redhat.com/downloads">download Red Hat Enterprise Linux here</a>. If you’re looking for a personal &amp; powerful Linux distros, check out our <a href="https://www.osradar.com/top-10-linux-distros/">top 10 Linux distros</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/rhel-7-5-beta-new-features-expectations/">RHEL 7.5 Beta is Out – New Features &#038; Expectations</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/rhel-7-5-beta-new-features-expectations/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
