<?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>rhel 7 Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/rhel-7/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 24 Jan 2019 09:56:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>Install and Configure SquirrelMail in CentOS 7</title>
		<link>https://www.osradar.com/install-and-configure-squirrelmail-in-centos-7/</link>
					<comments>https://www.osradar.com/install-and-configure-squirrelmail-in-centos-7/#comments</comments>
		
		<dc:creator><![CDATA[Muhammad Nabeel]]></dc:creator>
		<pubDate>Sun, 20 Jan 2019 20:02:57 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[centos 7]]></category>
		<category><![CDATA[rhel 7]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=9552</guid>

					<description><![CDATA[<p>SquirrelMail is an opensource webmail package written in PHP. It includes built-in PHP support for the IMAP and SMTP protocols . It has very few requirements and very easy to install and configure. In this guide you will learn how to install and configure SquirrelMail step by step in Centos 7 and RHEL 7. Step [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-and-configure-squirrelmail-in-centos-7/">Install and Configure SquirrelMail in CentOS 7</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>SquirrelMail</strong> is an opensource webmail package written in PHP. It includes built-in PHP support for the IMAP and SMTP protocols . It has very few requirements and very easy to install and configure.</p>
<p>In this guide you will learn how to install and configure SquirrelMail step by step in Centos 7 and RHEL 7.</p>
<h1>Step 1: First of all disable SELINUX using below command</h1>
<p>this is not the best choice to disable the firewall because of security purposes, but we are doing this locally. in your case you allow the traffic vie the firewall-cmd rules.</p>
<pre class=""># vi /etc/selinux/config

</pre>
<p>set SELINUX=disabled</p>
<p>save changes to file and quite</p>
<p><img loading="lazy" class="alignnone wp-image-9558" src="https://www.osradar.com/wp-content/uploads/2019/01/1-7-300x110.jpg" alt="" width="687" height="252" srcset="https://www.osradar.com/wp-content/uploads/2019/01/1-7-300x110.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/1-7-768x283.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/1-7.jpg 913w" sizes="(max-width: 687px) 100vw, 687px" /></p>
<p>and reboot the server using below command</p>
<pre class=""># reboot</pre>
<h1>Step 2: Install and Configure Postfix</h1>
<p>You must <strong>install Epel Repository</strong> using below command</p>
<pre class=""># yum install epel-release -y</pre>
<p>Now install Postfix</p>
<pre class=""># yum install postfix -y</pre>
<p><img loading="lazy" class="alignnone wp-image-9560" src="https://www.osradar.com/wp-content/uploads/2019/01/2-6-300x99.jpg" alt="" width="682" height="225" srcset="https://www.osradar.com/wp-content/uploads/2019/01/2-6-300x99.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/2-6-768x255.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/2-6-1024x339.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/01/2-6.jpg 1032w" sizes="(max-width: 682px) 100vw, 682px" /></p>
<p>Now make following changes to posfix file using below command at the end.</p>
<pre class=""># vi /etc/postfix/main.cf</pre>
<pre class="lang:vim decode:true ">## Enter your hostname
myhostname = osradar.localhost.local

## Enter your domain name
mydomain = osradar.localhost.local

inet_interfaces = all
myorigin = $mydomain

##set your IP range
mynetworks = 192.168.130.138/24, 127.0.0.0/8

## set your mail direcotry
home_mailbox = Maildir/

## Now Go to line no 164 add $domain at the end
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain</pre>
<p><img loading="lazy" class="alignnone wp-image-9561" src="https://www.osradar.com/wp-content/uploads/2019/01/3-6-300x77.jpg" alt="" width="686" height="176" srcset="https://www.osradar.com/wp-content/uploads/2019/01/3-6-300x77.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/3-6-768x196.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/3-6.jpg 853w" sizes="(max-width: 686px) 100vw, 686px" /></p>
<p>save changes to file and quite</p>
<p>Restart Postfix</p>
<pre class=""># systemctl restart postfix

# systemctl enable postfix</pre>
<h1>Step 3: Install and Configure Dovecot</h1>
<pre class=""># yum install dovecot

# systemctl start dovecot

# systemctl enable dovecot
</pre>
<p>Now modify below files one by one</p>
<p>make following changes at the end of file <strong>/etc/dovecot/dovecot.conf</strong></p>
<pre class=""># vi /etc/dovecot/dovecot.conf</pre>
<p>protocols = imap pop3 lmtp</p>
<p><img loading="lazy" class="alignnone wp-image-9565" src="https://www.osradar.com/wp-content/uploads/2019/01/4-3-300x54.jpg" alt="" width="689" height="124" srcset="https://www.osradar.com/wp-content/uploads/2019/01/4-3-300x54.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/4-3-768x139.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/4-3.jpg 857w" sizes="(max-width: 689px) 100vw, 689px" /></p>
<p>make following changes at the end of file <strong>/etc/dovecot/conf.d/10-mail.conf</strong></p>
<pre class=""># vi /etc/dovecot/conf.d/10-mail.conf</pre>
<p>mail_location = maildir:~/Maildir</p>
<p><img loading="lazy" class="alignnone wp-image-9566" src="https://www.osradar.com/wp-content/uploads/2019/01/5-5-300x53.jpg" alt="" width="685" height="121" srcset="https://www.osradar.com/wp-content/uploads/2019/01/5-5-300x53.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/5-5-768x136.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/5-5.jpg 857w" sizes="(max-width: 685px) 100vw, 685px" /></p>
<p>make following changes at the end of file <strong>/etc/dovecot/conf.d/10-auth.conf</strong></p>
<pre><strong># vi /etc/dovecot/conf.d/10-auth.conf</strong></pre>
<p>disable_plaintext_auth = yes<br />
auth_mechanisms = plain login</p>
<p><img loading="lazy" class="alignnone wp-image-9567" src="https://www.osradar.com/wp-content/uploads/2019/01/6-2-300x65.jpg" alt="" width="683" height="148" srcset="https://www.osradar.com/wp-content/uploads/2019/01/6-2-300x65.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/6-2-768x168.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/6-2.jpg 912w" sizes="(max-width: 683px) 100vw, 683px" /></p>
<p>make following changes to file <strong>/etc/dovecot/conf.d/10-master.conf</strong></p>
<pre class=""># vi /etc/dovecot/conf.d/10-master.conf</pre>
<p>unix_listener auth-userdb {<br />
#mode = 0600<br />
user = postfix ## uncomment line 91 and enter postfix<br />
group = postfix ## uncomment line 92 and enter postfix</p>
<p><img loading="lazy" class="alignnone wp-image-9568" src="https://www.osradar.com/wp-content/uploads/2019/01/7-1-300x42.jpg" alt="" width="686" height="96" srcset="https://www.osradar.com/wp-content/uploads/2019/01/7-1-300x42.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/7-1-768x108.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/7-1.jpg 890w" sizes="(max-width: 686px) 100vw, 686px" /></p>
<p>Now restart Dovecot</p>
<pre class=""># systemctl restart dovecot

# systemctl enable dovecot</pre>
<h1>Step 4: Install and Configure Squirrelmail</h1>
<p>First install and start apache service</p>
<pre class=""># yum install httpd -y

# systemctl start httpd

# systemctl enable httpd</pre>
<p>Now install Squirrelmail</p>
<pre class=""># yum install squirrelmail -y</pre>
<p><img loading="lazy" class="alignnone wp-image-9570" src="https://www.osradar.com/wp-content/uploads/2019/01/8-2-300x95.jpg" alt="" width="685" height="217" srcset="https://www.osradar.com/wp-content/uploads/2019/01/8-2-300x95.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/8-2-768x242.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/8-2.jpg 846w" sizes="(max-width: 685px) 100vw, 685px" /></p>
<p>Now go to squirrelmail folder and configure it according to your server</p>
<pre class=""># cd /usr/share/squirrelmail/config/

# ./conf.pl</pre>
<p>After changes press S to save settings and press Q to exit.</p>
<p><img loading="lazy" class="alignnone wp-image-9571" src="https://www.osradar.com/wp-content/uploads/2019/01/9-4-300x161.jpg" alt="" width="680" height="365" srcset="https://www.osradar.com/wp-content/uploads/2019/01/9-4-300x161.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/9-4-768x413.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/9-4-780x420.jpg 780w, https://www.osradar.com/wp-content/uploads/2019/01/9-4.jpg 905w" sizes="(max-width: 680px) 100vw, 680px" /></p>
<p>Now add following lines at the end of <strong>httpd.conf</strong> file.</p>
<h5><strong>Note: If these lines are already added at the end of file SKIP this step.</strong></h5>
<pre class=""># vi /etc/httpd/conf/httpd.conf</pre>
<p>Alias /webmail /usr/share/squirrelmail<br />
&lt;Directory /usr/share/squirrelmail&gt;<br />
Options Indexes FollowSymLinks<br />
RewriteEngine On<br />
AllowOverride All<br />
DirectoryIndex index.php<br />
Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;</p>
<p>save changes and quite</p>
<p><img loading="lazy" class="alignnone wp-image-9573" src="https://www.osradar.com/wp-content/uploads/2019/01/10-1-300x90.jpg" alt="" width="683" height="205" srcset="https://www.osradar.com/wp-content/uploads/2019/01/10-1-300x90.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/10-1-768x232.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/10-1.jpg 842w" sizes="(max-width: 683px) 100vw, 683px" /></p>
<p>then restart Apache and dovecot service</p>
<pre class=""># systemctl restart httpd

# systemctl restart dovecot</pre>
<h1>Step 5: Create User and Access Webmail</h1>
<pre class=""># adduser osradar

# passwd osradar</pre>
<p>Finally access Webmail</p>
<p><strong>http://server-ip/webmail</strong></p>
<p>OR</p>
<p><strong>http://yourdomainname/webmail</strong></p>
<p><img loading="lazy" class="alignnone wp-image-9575" src="https://www.osradar.com/wp-content/uploads/2019/01/11-300x127.jpg" alt="" width="683" height="289" srcset="https://www.osradar.com/wp-content/uploads/2019/01/11-300x127.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/11-768x325.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/11.jpg 989w" sizes="(max-width: 683px) 100vw, 683px" /></p>
<p><img loading="lazy" class="alignnone wp-image-9576" src="https://www.osradar.com/wp-content/uploads/2019/01/12-300x117.jpg" alt="" width="682" height="266" srcset="https://www.osradar.com/wp-content/uploads/2019/01/12-300x117.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/01/12-768x299.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/01/12.jpg 994w" sizes="(max-width: 682px) 100vw, 682px" /></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-and-configure-squirrelmail-in-centos-7/">Install and Configure SquirrelMail in CentOS 7</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-and-configure-squirrelmail-in-centos-7/feed/</wfw:commentRss>
			<slash:comments>3</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>
