<?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>Mel K, Author at Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/author/mohamed/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sun, 08 Mar 2020 21:37:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How To Install KVM on CentOS 8</title>
		<link>https://www.osradar.com/how-to-install-kvm-on-centos-8/</link>
					<comments>https://www.osradar.com/how-to-install-kvm-on-centos-8/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Sun, 08 Mar 2020 21:37:10 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18919</guid>

					<description><![CDATA[<p>in this tutorial you will find how to install KVM on Centos 8 which actually used to create virtual environment via Linux OS. This guide will cover the full installation of KVM hyper-visor on CentOS 8. KVM (Kernel-based Virtual Machine) is a full virtualization solution for Linux Systems running with virtualization extensions Intel VT or [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-kvm-on-centos-8/">How To Install KVM on CentOS 8</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 this tutorial you will find how to install KVM on Centos 8 which actually used to create virtual environment via Linux OS. This guide will cover the full installation of KVM hyper-visor on CentOS 8. KVM (Kernel-based Virtual Machine) is a full virtualization solution for Linux Systems running with virtualization extensions Intel VT or AMD-V</p>



<p>Kernel-based Virtual Machine consists of a loadable kernel module,<code>.ko</code>,&nbsp;that provides the core virtualization infrastructure and a processor specific module,for intel kvm-intel.ko or for AMD kvm-amd.ko.</p>



<h2><strong> Making sure your host CPU has Intel VT or AMD-V Virtualization extensions </strong></h2>



<p> we need to verify your CPU support for Intel VT or AMD-V Virtualization extensions. In some systems virtualization is disabled by BIOS and you may need to enable it according to your server and your system. some old servers don&#8217;t support virtualization technology so make sure from your vendor that system you are getting is having virtualization option or not to check your system is capable and enabled in BIOS for virtual environment run below command, and the output will be as per below Screen Shoot</p>



<pre class="wp-block-preformatted"> lscpu | grep Virtualization</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="514" height="58" src="https://www.osradar.com/wp-content/uploads/2020/03/VirtualBox_centos_06_03_2020_13_03_05.png" alt="" class="wp-image-18927" srcset="https://www.osradar.com/wp-content/uploads/2020/03/VirtualBox_centos_06_03_2020_13_03_05.png 514w, https://www.osradar.com/wp-content/uploads/2020/03/VirtualBox_centos_06_03_2020_13_03_05-300x34.png 300w" sizes="(max-width: 514px) 100vw, 514px" /></figure>



<p>Preparing your system to install KVM you need to update your freshly installed system or if it was not update for doing this you need to have root access</p>



<pre class="wp-block-preformatted">Sudo Su
//Enter your password
sudo yum update</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="673" height="185" src="https://www.osradar.com/wp-content/uploads/2020/03/sudo-su.png" alt="" class="wp-image-18932" srcset="https://www.osradar.com/wp-content/uploads/2020/03/sudo-su.png 673w, https://www.osradar.com/wp-content/uploads/2020/03/sudo-su-300x82.png 300w" sizes="(max-width: 673px) 100vw, 673px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" width="722" height="192" src="https://www.osradar.com/wp-content/uploads/2020/03/sudo-update.png" alt="" class="wp-image-18933" srcset="https://www.osradar.com/wp-content/uploads/2020/03/sudo-update.png 722w, https://www.osradar.com/wp-content/uploads/2020/03/sudo-update-300x80.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/sudo-update-696x185.png 696w" sizes="(max-width: 722px) 100vw, 722px" /></figure>



<pre class="wp-block-preformatted"> sudo&nbsp;dnf -y install&nbsp;virt-top libguestfs-tools </pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="685" height="29" src="https://www.osradar.com/wp-content/uploads/2020/03/VirtualBox_centos_07_03_2020_10_26_17.png" alt="" class="wp-image-18958" srcset="https://www.osradar.com/wp-content/uploads/2020/03/VirtualBox_centos_07_03_2020_10_26_17.png 685w, https://www.osradar.com/wp-content/uploads/2020/03/VirtualBox_centos_07_03_2020_10_26_17-300x13.png 300w" sizes="(max-width: 685px) 100vw, 685px" /></figure>



<p>Enabale and start the service as per below</p>



<pre class="wp-block-preformatted">sudo&nbsp;systemctl enable --now libvirtd </pre>



<p>if you are using desktop GUI of your centos you can install virtual manager too as per below</p>



<pre class="wp-block-preformatted"> sudo yum -y install&nbsp;virt-manager </pre>



<p>Type and search for Virtual in your centos 8 search box as per below screen</p>



<p>click on virtual machine from this GUI you may create new virtual machine as per your requirement </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="800" height="600" src="https://www.osradar.com/wp-content/uploads/2020/03/virtuall.png" alt="" class="wp-image-18962" srcset="https://www.osradar.com/wp-content/uploads/2020/03/virtuall.png 800w, https://www.osradar.com/wp-content/uploads/2020/03/virtuall-300x225.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/virtuall-768x576.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/virtuall-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/03/virtuall-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2020/03/virtuall-696x522.png 696w, https://www.osradar.com/wp-content/uploads/2020/03/virtuall-560x420.png 560w" sizes="(max-width: 800px) 100vw, 800px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" width="800" height="600" src="https://www.osradar.com/wp-content/uploads/2020/03/virtual1.png" alt="" class="wp-image-18963" srcset="https://www.osradar.com/wp-content/uploads/2020/03/virtual1.png 800w, https://www.osradar.com/wp-content/uploads/2020/03/virtual1-300x225.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/virtual1-768x576.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/virtual1-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/03/virtual1-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2020/03/virtual1-696x522.png 696w, https://www.osradar.com/wp-content/uploads/2020/03/virtual1-560x420.png 560w" sizes="(max-width: 800px) 100vw, 800px" /></figure>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-kvm-on-centos-8/">How To Install KVM on CentOS 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-kvm-on-centos-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Squid Proxy allow access to some specific websites and deny all via webmin GUI</title>
		<link>https://www.osradar.com/squid-proxy-allow-access-to-some-specific-websites-and-deny-all-via-webmin-gui/</link>
					<comments>https://www.osradar.com/squid-proxy-allow-access-to-some-specific-websites-and-deny-all-via-webmin-gui/#comments</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Fri, 06 Mar 2020 15:50:33 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18834</guid>

					<description><![CDATA[<p>By default when you first install Squid Proxy you will find no any internet access is allowed to your clients. To allow allow specific web sites via squid Proxy webmin gui below are the steps first we will allow all websites to grant access to every thing via proxy as per below screen shoot you [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/squid-proxy-allow-access-to-some-specific-websites-and-deny-all-via-webmin-gui/">Squid Proxy allow access to some specific websites and deny all via webmin GUI</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>By default when you first install Squid Proxy you will find no any internet access is allowed to your clients. To allow allow specific web sites via squid Proxy webmin gui below are the steps first we will allow all websites to grant access to every thing via proxy as per below screen shoot you don&#8217;t had access to any website and blocked </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="336" src="https://www.osradar.com/wp-content/uploads/2020/03/accessdenied-msn-1-1024x336.png" alt="" class="wp-image-18837" srcset="https://www.osradar.com/wp-content/uploads/2020/03/accessdenied-msn-1-1024x336.png 1024w, https://www.osradar.com/wp-content/uploads/2020/03/accessdenied-msn-1-300x98.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/accessdenied-msn-1-768x252.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/accessdenied-msn-1-696x228.png 696w, https://www.osradar.com/wp-content/uploads/2020/03/accessdenied-msn-1-1068x350.png 1068w, https://www.osradar.com/wp-content/uploads/2020/03/accessdenied-msn-1.png 1082w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li> Allow all websites login to your webmin GUI web based portal on the left pane click on servers here you will find squid proxy click on squid proxy you will find screen as per below image </li><li>Click in access control Circle red</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="852" height="442" src="https://www.osradar.com/wp-content/uploads/2020/03/acl-screen.png" alt="" class="wp-image-18861" srcset="https://www.osradar.com/wp-content/uploads/2020/03/acl-screen.png 852w, https://www.osradar.com/wp-content/uploads/2020/03/acl-screen-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/acl-screen-768x398.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/acl-screen-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2020/03/acl-screen-810x420.png 810w" sizes="(max-width: 852px) 100vw, 852px" /></figure>



<ul><li>once you click access control you will find option access control list and below screen</li><li>Select webserver Reg Exp from drop down menu</li><li>click on create new ACL</li><li>It will forward you to create access control list to be allowed for websites</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="390" height="191" src="https://www.osradar.com/wp-content/uploads/2020/03/webserver-exp.png" alt="" class="wp-image-18843" srcset="https://www.osradar.com/wp-content/uploads/2020/03/webserver-exp.png 390w, https://www.osradar.com/wp-content/uploads/2020/03/webserver-exp-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/webserver-exp-324x160.png 324w" sizes="(max-width: 390px) 100vw, 390px" /></figure>



<ul><li>as per screen below Please name your ACL in my case i Put MSN_allow Please note there should not be any space between name you may use _ instead of space</li><li>In browser Regexp field Please enter the web address www.msn.com</li><li>Please note don&#8217;t put http:// or https:// </li><li>your address must ends till .com  or .org or .pk other webpages addresses are not required once you put web address it will allow all the web site</li><li>you can have more than one web address per line each address should be in separate line</li><li>Click on Save button</li><li>Click on return to ACL</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="891" height="384" src="https://www.osradar.com/wp-content/uploads/2020/03/browser-ex.png" alt="" class="wp-image-18856" srcset="https://www.osradar.com/wp-content/uploads/2020/03/browser-ex.png 891w, https://www.osradar.com/wp-content/uploads/2020/03/browser-ex-300x129.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/browser-ex-768x331.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/browser-ex-696x300.png 696w" sizes="(max-width: 891px) 100vw, 891px" /></figure>



<ul><li>As per below screen click on second option Proxy restriction</li><li> click on add proxy  restriction from bottom above to delete button</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="579" src="https://www.osradar.com/wp-content/uploads/2020/03/moveup-1024x579.png" alt="" class="wp-image-18839" srcset="https://www.osradar.com/wp-content/uploads/2020/03/moveup-1024x579.png 1024w, https://www.osradar.com/wp-content/uploads/2020/03/moveup-300x170.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/moveup-768x434.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/moveup-696x394.png 696w, https://www.osradar.com/wp-content/uploads/2020/03/moveup-1068x604.png 1068w, https://www.osradar.com/wp-content/uploads/2020/03/moveup-743x420.png 743w, https://www.osradar.com/wp-content/uploads/2020/03/moveup.png 1070w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>select allow then select MSN_Allow</li><li>Click Save</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="489" src="https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction-1024x489.png" alt="" class="wp-image-18838" srcset="https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction-1024x489.png 1024w, https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction-300x143.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction-768x366.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction-696x332.png 696w, https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction-1068x510.png 1068w, https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction-880x420.png 880w, https://www.osradar.com/wp-content/uploads/2020/03/addproxyrestriction.png 1073w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>You will find MSN Allow at last</li><li>for any firewall Rule the first come first serves and rest ignored so if msn_allow is at the end it will will not work because deny all is above to when squid reach at deny all it will ignore below options to allow</li><li>For this you have to move it up with arrows for up and down once you click up arrow it will move it to one position up if you want to move up more then press up arrow again until your settings and no any deny for www.msn.com as i moved it up to forth number </li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="858" height="412" src="https://www.osradar.com/wp-content/uploads/2020/03/moveup2.png" alt="" class="wp-image-18840" srcset="https://www.osradar.com/wp-content/uploads/2020/03/moveup2.png 858w, https://www.osradar.com/wp-content/uploads/2020/03/moveup2-300x144.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/moveup2-768x369.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/moveup2-696x334.png 696w" sizes="(max-width: 858px) 100vw, 858px" /></figure>



<ul><li>after doing above steps come back to squid first page by clicking on return index button </li><li>click on apply configuration </li><li>check your website is allowed now</li><li>if you want to deny www.msn.com do the same steps but instead of clicking allow select deny as mentioned above and move it to right position </li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="786" height="554" src="https://www.osradar.com/wp-content/uploads/2020/03/webmin.png" alt="" class="wp-image-18842" srcset="https://www.osradar.com/wp-content/uploads/2020/03/webmin.png 786w, https://www.osradar.com/wp-content/uploads/2020/03/webmin-300x211.png 300w, https://www.osradar.com/wp-content/uploads/2020/03/webmin-768x541.png 768w, https://www.osradar.com/wp-content/uploads/2020/03/webmin-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2020/03/webmin-696x491.png 696w, https://www.osradar.com/wp-content/uploads/2020/03/webmin-596x420.png 596w" sizes="(max-width: 786px) 100vw, 786px" /></figure>



<ul><li>Here is your web access is allowed for msn.com</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="380" src="https://www.osradar.com/wp-content/uploads/2020/03/msnallowed-1024x380.jpg" alt="" class="wp-image-18871" srcset="https://www.osradar.com/wp-content/uploads/2020/03/msnallowed-1024x380.jpg 1024w, https://www.osradar.com/wp-content/uploads/2020/03/msnallowed-300x111.jpg 300w, https://www.osradar.com/wp-content/uploads/2020/03/msnallowed-768x285.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/03/msnallowed-696x259.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/03/msnallowed-1068x397.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/03/msnallowed-1131x420.jpg 1131w, https://www.osradar.com/wp-content/uploads/2020/03/msnallowed.jpg 1330w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
<p>The post <a rel="nofollow" href="https://www.osradar.com/squid-proxy-allow-access-to-some-specific-websites-and-deny-all-via-webmin-gui/">Squid Proxy allow access to some specific websites and deny all via webmin GUI</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/squid-proxy-allow-access-to-some-specific-websites-and-deny-all-via-webmin-gui/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Configuring Network fail-over Redundancy with MikroTik&#8217;s Router OS</title>
		<link>https://www.osradar.com/configuring-network-fail-over-redundancy-with-mikrotiks-router-os/</link>
					<comments>https://www.osradar.com/configuring-network-fail-over-redundancy-with-mikrotiks-router-os/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Mon, 02 Mar 2020 15:20:09 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18664</guid>

					<description><![CDATA[<p>Router OS is the operating system of Router BOARD It can also be installed on a PC and will turn it into a router with all the necessary features routing, firewall, bandwidth management, wireless access point, back haul link, hotspot gateway, VPN server and more In today tutorial we will use the network fail over [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/configuring-network-fail-over-redundancy-with-mikrotiks-router-os/">Configuring Network fail-over Redundancy with MikroTik&#8217;s Router OS</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p></p>



<h3>Router OS is the operating system of Router BOARD</h3>



<p>It can also be installed on a PC and will turn it into a router with all the necessary features routing, firewall, bandwidth management, wireless access point, back haul link, hotspot gateway, VPN server and more</p>



<p>In today tutorial we will use the network fail over configuration of two different network with different subnet. if Primary is failed it will automatically take position of secondary and if Primary restores, it will come back on Primary again until it fails for second time.</p>



<p>To download and Install Mikrotik OS Please do visit below link and documentation for installation for your purchased or trail version </p>



<p><a href="https://mikrotik.com/download">https://mikrotik.com/download</a></p>



<p>After downloading and installation of router OS, you need a software to manage it which can be downloaded from above Mikrotik web named as winbox please download on your windows machine or you can use your web browser to access the web version.</p>



<p>once you connected with your router OS via winbox or web interface it will look like as per below both web and win box interface are same</p>



<p>Click on interface option on left corner it will pop up interface list as per below, Here we need to change the name of each ether net port which can be used for naming convention and better understanding</p>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="1024" height="386" src="https://www.osradar.com/wp-content/uploads/2020/02/micr-1-1024x386.png" alt="" data-id="18686" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/micr-1.png" data-link="https://www.osradar.com/?attachment_id=18686" class="wp-image-18686" srcset="https://www.osradar.com/wp-content/uploads/2020/02/micr-1-1024x386.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/micr-1-300x113.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/micr-1-768x289.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/micr-1-696x262.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/micr-1-1068x402.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/micr-1.png 1075w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></li></ul></figure>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="823" height="169" src="https://www.osradar.com/wp-content/uploads/2020/02/firewall-nat-1.png" alt="" data-id="18681" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/firewall-nat-1.png" data-link="https://www.osradar.com/?attachment_id=18681" class="wp-image-18681" srcset="https://www.osradar.com/wp-content/uploads/2020/02/firewall-nat-1.png 823w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-nat-1-300x62.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-nat-1-768x158.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-nat-1-696x143.png 696w" sizes="(max-width: 823px) 100vw, 823px" /></figure></li></ul></figure>



<ul><li>we need three ether port one is used for Primary 2nd will be used for secondary, 3rd will be used for network access </li><li>Double click on ether one from interface list as per above picture</li><li>it will open interface as per below</li><li>rename the name field in my case i kept it ether1_PTCL</li><li>click apply</li><li>click OK</li><li>Repeat same steps again to rename second either port</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="501" height="386" src="https://www.osradar.com/wp-content/uploads/2020/02/micro1-1.png" alt="" class="wp-image-18704" srcset="https://www.osradar.com/wp-content/uploads/2020/02/micro1-1.png 501w, https://www.osradar.com/wp-content/uploads/2020/02/micro1-1-300x231.png 300w" sizes="(max-width: 501px) 100vw, 501px" /></figure>



<h4><strong>Assigning IP Addresses </strong></h4>



<ul><li>after renaming we need to assign IP addresses to each port in order to communicate each port and output port</li><li>in your left pane of winbox or web interface you will get option IP &#8211;&gt; addresses click on addresses it will show you screen as per below picture</li><li>Click on + sign to add IP address eg 172.10.20.2/31</li><li>choose interface name in my case it is ether1_PTCL</li><li>click Apply and OK</li><li>repeat the steps for Secondary interface and 3rd local network IP address</li><li>in my case i put local interface ip address 10.10.10.1/24</li></ul>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="326" height="320" src="https://www.osradar.com/wp-content/uploads/2020/02/micro2-1.png" alt="" data-id="18687" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/micro2-1.png" data-link="https://www.osradar.com/?attachment_id=18687" class="wp-image-18687" srcset="https://www.osradar.com/wp-content/uploads/2020/02/micro2-1.png 326w, https://www.osradar.com/wp-content/uploads/2020/02/micro2-1-300x294.png 300w" sizes="(max-width: 326px) 100vw, 326px" /></figure></li></ul></figure>



<h2>Configuring Routes</h2>



<ul><li>Move back to winbox menu pan and select IP &#8211;&gt; Routes as per below screen</li><li>Click on + Sign as per below Screen to assign route of network</li><li>Put the gateway of your ipaddress given by your ISP or your network design eg 172.10.23.1</li><li>once you click on apply it will show you reachable ether1_PTCL</li><li>click OK</li><li>repeat the above step for secondary ether port</li></ul>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="889" height="539" src="https://www.osradar.com/wp-content/uploads/2020/02/ipfirewall-1.png" alt="" data-id="18683" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/ipfirewall-1.png" data-link="https://www.osradar.com/?attachment_id=18683" class="wp-image-18683" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ipfirewall-1.png 889w, https://www.osradar.com/wp-content/uploads/2020/02/ipfirewall-1-300x182.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ipfirewall-1-768x466.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/ipfirewall-1-696x422.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/ipfirewall-1-693x420.png 693w" sizes="(max-width: 889px) 100vw, 889px" /></figure></li></ul></figure>



<h2>Firewall Policy</h2>



<ul><li>Firewall policy need to set because you had to allow your traffic to come in and out</li><li>click on IP &#8212;&gt; Firewall as per below screen shoot</li><li>click on NAT Network Address translation </li></ul>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="1024" height="342" src="https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-1-1024x342.png" alt="" data-id="18682" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-1.png" data-link="https://www.osradar.com/?attachment_id=18682" class="wp-image-18682" srcset="https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-1-1024x342.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-1-300x100.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-1-768x256.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-1-696x232.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-1.png 1061w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></li></ul></figure>



<ul><li>as per below screen select chain as srcnat</li><li>out interface ether1_PTCL. change as per your name given in start</li></ul>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="372" height="324" src="https://www.osradar.com/wp-content/uploads/2020/02/outinter-1.png" alt="" data-id="18689" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/outinter-1.png" data-link="https://www.osradar.com/?attachment_id=18689" class="wp-image-18689" srcset="https://www.osradar.com/wp-content/uploads/2020/02/outinter-1.png 372w, https://www.osradar.com/wp-content/uploads/2020/02/outinter-1-300x261.png 300w" sizes="(max-width: 372px) 100vw, 372px" /></figure></li></ul></figure>



<ul><li>click on action inside your nat rule and select action type as masquerade</li><li>click apply and OK</li><li>repeat the step for secondary network</li></ul>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="371" height="436" src="https://www.osradar.com/wp-content/uploads/2020/02/masqurade-1.png" alt="" data-id="18684" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/masqurade-1.png" data-link="https://www.osradar.com/?attachment_id=18684" class="wp-image-18684" srcset="https://www.osradar.com/wp-content/uploads/2020/02/masqurade-1.png 371w, https://www.osradar.com/wp-content/uploads/2020/02/masqurade-1-255x300.png 255w, https://www.osradar.com/wp-content/uploads/2020/02/masqurade-1-357x420.png 357w" sizes="(max-width: 371px) 100vw, 371px" /></figure></li></ul></figure>



<p></p>



<ul><li>To add script you need to click on system &#8212;&gt; Scripts</li><li>Click on + Sign </li><li>add the below script change the ip address to 8.8.8.8 or what ever you want to</li><li>for better understanding of below code first line will ping your ip 8.8.8.8 and if its is reachable it will enable firwall rule number 2 and disable firewall rule 0 which we created above then it will enable route 1 and disbale route 0 it will check for delay of 15 seconds and enable route 0</li><li>else it will enable firewall rule 0 disable firewall rule 1</li></ul>



<pre class="wp-block-preformatted"> if ([/ping 172.17.15.8 count=4] = 0) do={
 /ip firewall nat enable 2 ;
 /ip firewall nat disable 0 ;
 /ip route enable 1 ;
 /ip route disable 0 ;
 :delay 15s
 /ip route enable 0 ; 
 } else={
 /ip firewall nat enable 0 ;
 /ip firewall nat disable 2 ;
 /ip route disable 1;
 } </pre>



<p>name the script as i named enable _PTCL_Zong the above name will be used in scheduler below</p>



<p>click apply and OK</p>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="886" height="529" src="https://www.osradar.com/wp-content/uploads/2020/02/script-1.png" alt="" data-id="18692" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/script-1.png" data-link="https://www.osradar.com/?attachment_id=18692" class="wp-image-18692" srcset="https://www.osradar.com/wp-content/uploads/2020/02/script-1.png 886w, https://www.osradar.com/wp-content/uploads/2020/02/script-1-300x179.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/script-1-768x459.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/script-1-696x416.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/script-1-703x420.png 703w" sizes="(max-width: 886px) 100vw, 886px" /></figure></li></ul></figure>



<h4><strong>Make a schedule to run script for fail over</strong></h4>



<p>on the left pan of your winbox you will find option systems &#8212;&gt; and scheduler </p>



<ul><li> it will open as per below shoot </li><li>enter the name of your schedule for your convenience</li><li>enter start date</li><li>start time as startup when ever the router boot or reboot it will run this schedule for first time</li><li>interval time as per your own desire in my case i put 10 seconds to check if network comes back shift it back to primary or if not then leave for secondary  </li><li>on even field you have to specify the name of script created above in my case it is</li></ul>



<p></p>



<figure class="wp-block-gallery columns-1 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="324" height="495" src="https://www.osradar.com/wp-content/uploads/2020/02/schedul-1.png" alt="" data-id="18690" data-full-url="https://www.osradar.com/wp-content/uploads/2020/02/schedul-1.png" data-link="https://www.osradar.com/?attachment_id=18690" class="wp-image-18690" srcset="https://www.osradar.com/wp-content/uploads/2020/02/schedul-1.png 324w, https://www.osradar.com/wp-content/uploads/2020/02/schedul-1-196x300.png 196w, https://www.osradar.com/wp-content/uploads/2020/02/schedul-1-275x420.png 275w" sizes="(max-width: 324px) 100vw, 324px" /></figure></li></ul></figure>



<ul><li>restart you router OS via System &#8212;&gt; reboot</li><li>after restart you can see ether_zong is showing disabled and it set back to primary remove network from ether1_PTCL and check it will disable Primary and active secondary</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="342" src="https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-2-1024x342.png" alt="" class="wp-image-18729" srcset="https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-2-1024x342.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-2-300x100.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-2-768x256.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-2-696x232.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/firewall-zong-disable-2.png 1061w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
<p>The post <a rel="nofollow" href="https://www.osradar.com/configuring-network-fail-over-redundancy-with-mikrotiks-router-os/">Configuring Network fail-over Redundancy with MikroTik&#8217;s Router OS</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/configuring-network-fail-over-redundancy-with-mikrotiks-router-os/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to add queues and ring Group  Freepbx 16</title>
		<link>https://www.osradar.com/how-to-add-queues-and-ring-group-freepbx-16/</link>
					<comments>https://www.osradar.com/how-to-add-queues-and-ring-group-freepbx-16/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 10:24:42 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18500</guid>

					<description><![CDATA[<p>Automatic Call Distribution (ACD) or call queuing provides a way for a FreePBX to queue incoming calls. A queue is a stack or line of calls that need to be answered. When a call is directed into the queue, by default, the calls are answered in a first-in, first-out order. Call queues are useful when [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-add-queues-and-ring-group-freepbx-16/">How to add queues and ring Group  Freepbx 16</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p> Automatic Call Distribution (ACD) or call queuing provides a way for a FreePBX to queue incoming calls. A queue is a stack or line of calls that need to be answered. When a call is directed into the queue, by default, the calls are answered in a first-in, first-out order. Call queues are useful when you have more callers than people available to answer calls. Callers placed into a queue will hear music or advertising until someone is available to answer their call. The Queues module allows you to create and design queues that allow callers to speak with agents as quickly and painlessly as possible </p>



<p>By default freepbx does not have this functionality and it requires some extra modules to attach below are steps to add modules from github repository, queue Module and ring group need to add to your current freepbx</p>



<p>Queue Module download Please download from below Link zip file.</p>



<p><a href="https://github.com/FreePBX/queues/archive/release/14.0.zip">https://github.com/FreePBX/queues/archive/release/14.0.zip</a></p>



<p>Ring Group Module download, Please download from below Link zip file. </p>



<p><a href="https://github.com/FreePBX/ringgroups/archive/release/14.0.zip">https://github.com/FreePBX/ringgroups/archive/release/14.0.zip</a></p>



<p>Log in to your freePBX web system click on admin and sub menu Module admin as per below Picture</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="280" src="https://www.osradar.com/wp-content/uploads/2020/02/moduleadmin-2-1024x280.png" alt="" class="wp-image-18522" srcset="https://www.osradar.com/wp-content/uploads/2020/02/moduleadmin-2-1024x280.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/moduleadmin-2-300x82.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/moduleadmin-2-768x210.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/moduleadmin-2-696x190.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/moduleadmin-2-1068x292.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/moduleadmin-2.png 1195w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>Upload the downloaded files above by selecting upload from hard disk then choose file location for module of queue </li><li>Repeat the step for ring group module </li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="229" src="https://www.osradar.com/wp-content/uploads/2020/02/upload-1024x229.png" alt="" class="wp-image-18527" srcset="https://www.osradar.com/wp-content/uploads/2020/02/upload-1024x229.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/upload-300x67.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/upload-768x172.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/upload-696x156.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/upload-1068x239.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/upload.png 1207w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>Once both module uploaded click on manage local module to verify that modules imported properly</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="517" src="https://www.osradar.com/wp-content/uploads/2020/02/module-imported-1024x517.png" alt="" class="wp-image-18521" srcset="https://www.osradar.com/wp-content/uploads/2020/02/module-imported-1024x517.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/module-imported-300x151.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/module-imported-768x387.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/module-imported-696x351.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/module-imported-1068x539.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/module-imported-833x420.png 833w, https://www.osradar.com/wp-content/uploads/2020/02/module-imported.png 1120w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>Click on application from freepbx interface and click on ring group</li><li>Add the ring group number eg 200</li><li>Add group description eg. All IT agents</li><li>Click on user quick select select the extension you want to add in ring group</li><li>Click in submit button at the bottom right corner of the page</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="361" src="https://www.osradar.com/wp-content/uploads/2020/02/ring-group-2-1024x361.png" alt="" class="wp-image-18524" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ring-group-2-1024x361.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/ring-group-2-300x106.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ring-group-2-768x271.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/ring-group-2-696x245.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/ring-group-2-1068x376.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/ring-group-2.png 1158w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>After doing above steps a ring group will be added as per below picture</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="213" src="https://www.osradar.com/wp-content/uploads/2020/02/rig-1024x213.png" alt="" class="wp-image-18556" srcset="https://www.osradar.com/wp-content/uploads/2020/02/rig-1024x213.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/rig-300x62.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/rig-768x160.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/rig-696x145.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/rig-1068x222.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/rig.png 1145w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>Click on applications and then queues module</li><li>Click on add queue button</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="291" src="https://www.osradar.com/wp-content/uploads/2020/02/addqueue-1024x291.png" alt="" class="wp-image-18528" srcset="https://www.osradar.com/wp-content/uploads/2020/02/addqueue-1024x291.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/addqueue-300x85.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/addqueue-768x218.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/addqueue-696x198.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/addqueue-1068x303.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/addqueue.png 1205w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>Input the queue extension number </li><li>Enter Queue Name</li><li>Scroll down to the end of page</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="163" src="https://www.osradar.com/wp-content/uploads/2020/02/rig1-1024x163.png" alt="" class="wp-image-18558" srcset="https://www.osradar.com/wp-content/uploads/2020/02/rig1-1024x163.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/rig1-300x48.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/rig1-768x123.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/rig1-696x111.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/rig1-1068x170.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/rig1.png 1134w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>In fail over Destination select ring group and select 200 All IT agent which we had created above in ring group</li><li>Click on submit</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="104" src="https://www.osradar.com/wp-content/uploads/2020/02/rig2-1024x104.png" alt="" class="wp-image-18559" srcset="https://www.osradar.com/wp-content/uploads/2020/02/rig2-1024x104.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/rig2-300x30.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/rig2-768x78.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/rig2-696x71.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/rig2-1068x109.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/rig2.png 1161w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li>In your free pbx web GUI click on apply config uper right corner</li><li>Your ring group and queue is setup</li><li>Now if any one calls then the call will go to queue if not entertained will go for ring group and ring on all extension in ring group </li></ul>



<p>Please See  <strong><a href="https://www.osradar.com/how-to-install-fusionpbx-on-ubuntu-18-04/">How to install FusionPBX on Ubuntu 18.04</a></strong></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-add-queues-and-ring-group-freepbx-16/">How to add queues and ring Group  Freepbx 16</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-add-queues-and-ring-group-freepbx-16/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install FusionPBX on Ubuntu 18.04</title>
		<link>https://www.osradar.com/how-to-install-fusionpbx-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/how-to-install-fusionpbx-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Mon, 24 Feb 2020 20:01:57 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18567</guid>

					<description><![CDATA[<p>FusionPBX can be used as a highly available single or domain based multi-tenant PBX, carrier grade switch, call center server, fax server, voip server, voicemail server, conference server, voice application server, appliance framework and more.&#160;free switch&#160;is a highly scale able, multi-threaded, multi-platform communication platform. It provides unlimited extensions, voicemail-to-email, music on hold, call parking, call [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-fusionpbx-on-ubuntu-18-04/">How to install FusionPBX on Ubuntu 18.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p> FusionPBX can be used as a highly available single or domain based multi-tenant PBX, carrier grade switch, call center server, fax server, voip server, voicemail server, conference server, voice application server, appliance framework and more.&nbsp;free switch&nbsp;is a highly scale able, multi-threaded, multi-platform communication platform.</p>



<p>It provides unlimited extensions, voicemail-to-email, music on hold, call parking, call center, call queues, phone provisioning and many other features. It provides the functionality your business needs and brings corporate level phone system features to small, medium and large businesses. </p>



<p>we need root rights to install libraries and fusionpbx webgui</p>



<ul><li>for this we had to run command sudo su</li><li>Enter your password</li><li>apt update -y</li><li>apt upgrade</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="720" height="250" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_22_34.png" alt="" class="wp-image-18570" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_22_34.png 720w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_22_34-300x104.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_22_34-696x242.png 696w" sizes="(max-width: 720px) 100vw, 720px" /></figure>



<p>Install below Libs to prepare your server for fusion pbx</p>



<pre class="wp-block-preformatted">apt install -y git subversion build-essential autoconf automake libtool libcurses5 libncurses5-dev make libjpeg-dev libtool-bin libsqlite3-dev libpcre3-dev libspeexdsp-dev libldns-dev libedit-dev yasm liblua5.2-dev libopus-dev cmake</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="731" height="204" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_24_04.png" alt="" class="wp-image-18571" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_24_04.png 731w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_24_04-300x84.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_24_04-696x194.png 696w" sizes="(max-width: 731px) 100vw, 731px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" width="732" height="455" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_14.png" alt="" class="wp-image-18572" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_14.png 732w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_14-300x186.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_14-356x220.png 356w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_14-696x433.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_14-676x420.png 676w" sizes="(max-width: 732px) 100vw, 732px" /></figure>



<pre class="wp-block-preformatted">apt install -y libcurl4-openssl-dev libexpat1-dev libgnutls28-dev libtiff5-dev libx11-dev unixdbc-dev libssl-dev python-dev zlib1g-dev libasound2-dev libogg-dev libvorbis-dev libperl-dev libgdbm-dev libdb-dev uuid-dev libsndfile1-dev</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="723" height="136" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_57.png" alt="" class="wp-image-18573" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_57.png 723w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_57-300x56.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_26_57-696x131.png 696w" sizes="(max-width: 723px) 100vw, 723px" /></figure>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="730" height="195" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_30_47.png" alt="" class="wp-image-18575" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_30_47.png 730w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_30_47-300x80.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_30_47-696x186.png 696w" sizes="(max-width: 730px) 100vw, 730px" /></figure>



<pre class="wp-block-preformatted">cd /usr/src
git clone https://github.com/signalwire/libks.git</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="735" height="232" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_31_20.png" alt="" class="wp-image-18576" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_31_20.png 735w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_31_20-300x95.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_31_20-696x220.png 696w" sizes="(max-width: 735px) 100vw, 735px" /></figure>



<pre class="wp-block-preformatted">cd libks</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="734" height="334" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_32_14.png" alt="" class="wp-image-18578" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_32_14.png 734w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_32_14-300x137.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_32_14-696x317.png 696w" sizes="(max-width: 734px) 100vw, 734px" /></figure>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="693" height="364" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_32_53.png" alt="" class="wp-image-18579" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_32_53.png 693w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_32_53-300x158.png 300w" sizes="(max-width: 693px) 100vw, 693px" /></figure>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="726" height="293" src="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_33_34.png" alt="" class="wp-image-18580" srcset="https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_33_34.png 726w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_33_34-300x121.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/VirtualBox_ubuntu-18_20_02_2020_15_33_34-696x281.png 696w" sizes="(max-width: 726px) 100vw, 726px" /></figure>



<p>Download the fusionpbx source zip file from github to use in ubuntu</p>



<pre class="wp-block-preformatted">wget https://github.com/fusionpbx/fusionpbx-install.sh/archive/master.zip</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="727" height="421" src="https://www.osradar.com/wp-content/uploads/2020/02/master.zip-download.png" alt="" class="wp-image-18582" srcset="https://www.osradar.com/wp-content/uploads/2020/02/master.zip-download.png 727w, https://www.osradar.com/wp-content/uploads/2020/02/master.zip-download-300x174.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/master.zip-download-696x403.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/master.zip-download-725x420.png 725w" sizes="(max-width: 727px) 100vw, 727px" /></figure>



<p>unzip the already downloaded zip file and destination folder name will be fusionpbx  this folder will be available under downloads folder</p>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="873" height="178" src="https://www.osradar.com/wp-content/uploads/2020/02/unzip-master.png" alt="" class="wp-image-18583" srcset="https://www.osradar.com/wp-content/uploads/2020/02/unzip-master.png 873w, https://www.osradar.com/wp-content/uploads/2020/02/unzip-master-300x61.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/unzip-master-768x157.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/unzip-master-696x142.png 696w" sizes="(max-width: 873px) 100vw, 873px" /></figure>



<p>Grant permission to already unzipped folder so we can install with all necessary permissions.</p>



<p>Move to the folder destination with command CD as per below </p>



<pre class="wp-block-preformatted">chmod 477 fusionpbx
cd fusionpbx/fusionpbx-install.sh-master/ubuntu</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="891" height="92" src="https://www.osradar.com/wp-content/uploads/2020/02/cd-fusionbox.png" alt="" class="wp-image-18585" srcset="https://www.osradar.com/wp-content/uploads/2020/02/cd-fusionbox.png 891w, https://www.osradar.com/wp-content/uploads/2020/02/cd-fusionbox-300x31.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/cd-fusionbox-768x79.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/cd-fusionbox-696x72.png 696w" sizes="(max-width: 891px) 100vw, 891px" /></figure>



<p>when you already moved to the exact directory run below command to install  and configure fusionpbx</p>



<pre class="wp-block-preformatted">sudo ./install.sh</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="891" height="44" src="https://www.osradar.com/wp-content/uploads/2020/02/install.sh_.png" alt="" class="wp-image-18586" srcset="https://www.osradar.com/wp-content/uploads/2020/02/install.sh_.png 891w, https://www.osradar.com/wp-content/uploads/2020/02/install.sh_-300x15.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/install.sh_-768x38.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/install.sh_-696x34.png 696w" sizes="(max-width: 891px) 100vw, 891px" /></figure>



<p>once the instalation is finshed it will show you username and password for your webgui along with ip address copy and place the information with you on safe place</p>



<p>use your browser and put the ip address of your fusionpbx along with username and password.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-fusionpbx-on-ubuntu-18-04/">How to install FusionPBX on Ubuntu 18.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-fusionpbx-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Symantec Endpoint Protection Client 14 on Ubuntu 19.04 LTS</title>
		<link>https://www.osradar.com/how-to-install-symantec-endpoint-protection-client-14-on-ubuntu-16-04-lts/</link>
					<comments>https://www.osradar.com/how-to-install-symantec-endpoint-protection-client-14-on-ubuntu-16-04-lts/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Tue, 18 Feb 2020 10:22:31 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18190</guid>

					<description><![CDATA[<p>Is SEPM on Linux Supported? Symantec End Point Manager server install is only supported on Windows Servers. Client version created with SEPM can be installed on Linux computers and servers as manged and un-manged version Checking version and kernel compatibility You can install an UN-managed or managed Symantec Endpoint Protection client directly on a Linux [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-symantec-endpoint-protection-client-14-on-ubuntu-16-04-lts/">How to Install Symantec Endpoint Protection Client 14 on Ubuntu 19.04 LTS</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2>Is SEPM on Linux Supported?</h2>



<p>Symantec End Point Manager server install is only supported on Windows Servers. Client version created with SEPM can be installed on Linux computers and servers as manged and un-manged version </p>



<h3>Checking version and kernel compatibility</h3>



<p>You can install an UN-managed or managed Symantec Endpoint Protection client directly on a Linux computer. You cannot deploy the Linux client from Symantec Endpoint Protection Manager remotely. The installation steps are similar whether the client is UN-managed or managed, for this scenario we need to check first the compatibility of kernel version Please check below for supported kernel versions for your Linux Operating system</p>



<p>For version and kernel compatibility Please visit Symantec official visit</p>



<p><a href="https://support.symantec.com/us/en/article.info3983.html">https://support.symantec.com/us/en/article.info3983.html</a></p>



<h2><strong>Steps Installing Symantec End Point Client on Ubuntu 19.04 LTS</strong></h2>



<p>For starting we need to check the prerequisites and you should be running as root user authentication and java jre 1.5 or above </p>



<p> which java version you have installed you had to write which java</p>



<pre class="wp-block-preformatted"> which java</pre>



<p>if no any java is installed then it will not show you any info use below command to install java</p>



<pre class="wp-block-preformatted"> sudo apt-get install default-jre </pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="567" height="82" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-13-27-02-2.png" alt="" class="wp-image-18334" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-13-27-02-2.png 567w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-13-27-02-2-300x43.png 300w" sizes="(max-width: 567px) 100vw, 567px" /></figure>



<ul><li>Once you finished with installing above prerequisite<em>s </em></li><li>Copy the Symantec End Point protection to your computer it usually packed in zip file</li><li>Next we had to unzip the file use below command</li><li>unzip (yourzipfile foldername.zip) -d (destination folder name)</li></ul>



<pre class="wp-block-preformatted"> unzip sep.zip -d seppkg</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="640" height="480" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-29-43.png" alt="" class="wp-image-18306" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-29-43.png 640w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-29-43-300x225.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-29-43-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-29-43-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-29-43-560x420.png 560w" sizes="(max-width: 640px) 100vw, 640px" /></figure>



<ul><li>once you successfully unzip the folder move to that folder in my case it is seppkg</li></ul>



<pre class="wp-block-preformatted"> cd seppkg</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="581" height="40" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-30-45-1.png" alt="" class="wp-image-18308" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-30-45-1.png 581w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-30-45-1-300x21.png 300w" sizes="(max-width: 581px) 100vw, 581px" /></figure>



<ul><li>By default your install.sh permissions are not allowed to install so you should use chmod Either you can use chmod 744 or chmod u+x </li></ul>



<pre class="wp-block-preformatted"> chmod 744 ./install.sh</pre>



<p>Or</p>



<pre class="wp-block-preformatted"> chmod u+x install.sh  </pre>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-31-28.png" alt="" class="wp-image-18309" width="565" height="39" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-31-28.png 565w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-31-28-300x21.png 300w" sizes="(max-width: 565px) 100vw, 565px" /></figure>



<ul><li>Run Below command to run setup</li></ul>



<pre class="wp-block-preformatted"> sudo ./install.sh </pre>



<ul><li>Insert your password if it ask if you are root user it may not to ask for password</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="569" height="42" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-31-56.png" alt="" class="wp-image-18310" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-31-56.png 569w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-31-56-300x22.png 300w" sizes="(max-width: 569px) 100vw, 569px" /></figure>



<ul><li>Now it is installing Symantec end point protection on your Linux machine</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="562" height="267" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-11.png" alt="" class="wp-image-18311" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-11.png 562w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-11-300x143.png 300w" sizes="(max-width: 562px) 100vw, 562px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" width="640" height="480" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-37.png" alt="" class="wp-image-18312" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-37.png 640w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-37-300x225.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-37-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-37-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-39-37-560x420.png 560w" sizes="(max-width: 640px) 100vw, 640px" /></figure>



<ul><li>Setup is completed as per below and a yellow Symantec icon appears in you task bar</li><li>Right click on yellow icon and click on open Symantec end point protection</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="574" height="528" src="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-42-34.png" alt="" class="wp-image-18314" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-42-34.png 574w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-42-34-300x276.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Screenshot-from-2020-02-18-12-42-34-457x420.png 457w" sizes="(max-width: 574px) 100vw, 574px" /></figure>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-symantec-endpoint-protection-client-14-on-ubuntu-16-04-lts/">How to Install Symantec Endpoint Protection Client 14 on Ubuntu 19.04 LTS</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-symantec-endpoint-protection-client-14-on-ubuntu-16-04-lts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to create Extension and connect Soft Phone with FreePBX GUI</title>
		<link>https://www.osradar.com/how-to-create-extension-and-connect-soft-phone-with-freepbx-gui/</link>
					<comments>https://www.osradar.com/how-to-create-extension-and-connect-soft-phone-with-freepbx-gui/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Sat, 15 Feb 2020 09:45:28 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18221</guid>

					<description><![CDATA[<p>when you finish install freepbx, and then you may face first problem, how to create extension and connect with Freepbx as voice over IP calls. Below are steps and basic configuration in which you will see how to make a simple extension and how to connect with Zoiper and other soft phones Log in to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-create-extension-and-connect-soft-phone-with-freepbx-gui/">How to create Extension and connect Soft Phone with FreePBX GUI</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>when you finish install freepbx, and then you may face first problem, how to create extension and connect with Freepbx as voice over IP calls. Below are steps and basic configuration in which you will see how to make a simple extension and how to connect with Zoiper and other soft phones</p>



<p>Log in to your freePBX GUI PHP Interface with your ipaddress and credential</p>



<ul><li><strong>Click on Application and click on extensions</strong> </li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="596" src="https://www.osradar.com/wp-content/uploads/2020/02/ext1-1024x596.png" alt="" class="wp-image-18227" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ext1-1024x596.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/ext1-300x175.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ext1-768x447.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/ext1-696x405.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/ext1-1068x622.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/ext1-721x420.png 721w, https://www.osradar.com/wp-content/uploads/2020/02/ext1.png 1192w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li><strong>Click on Quick Extension</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="141" src="https://www.osradar.com/wp-content/uploads/2020/02/ext2-1024x141.png" alt="" class="wp-image-18228" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ext2-1024x141.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/ext2-300x41.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ext2-768x106.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/ext2-696x96.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/ext2-1068x147.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/ext2.png 1167w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li><strong>Fill your desired Ext # as i put 1122</strong></li><li><strong>Fill your Display Name as i put Shahid</strong></li><li><strong>Fill your email address as this email address will be used if you need to get notified on email for voice mail</strong></li><li><strong>click on Next </strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="605" height="491" src="https://www.osradar.com/wp-content/uploads/2020/02/ext3.png" alt="" class="wp-image-18230" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ext3.png 605w, https://www.osradar.com/wp-content/uploads/2020/02/ext3-300x243.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ext3-518x420.png 518w" sizes="(max-width: 605px) 100vw, 605px" /></figure>



<ul><li><strong>If you wish to enable voicemail then click yes else you may click no default is Yes</strong></li><li><strong>Put your mailbox password</strong></li><li><strong>Click on finish and your extension is created</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="629" height="492" src="https://www.osradar.com/wp-content/uploads/2020/02/ext4.png" alt="" class="wp-image-18232" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ext4.png 629w, https://www.osradar.com/wp-content/uploads/2020/02/ext4-300x235.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ext4-537x420.png 537w" sizes="(max-width: 629px) 100vw, 629px" /></figure>



<ul><li><strong>Go to search box and put the recent created ext number so you can find it easily </strong></li><li><strong>click on edit in action pane</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="208" src="https://www.osradar.com/wp-content/uploads/2020/02/ext5-1024x208.png" alt="" class="wp-image-18234" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ext5-1024x208.png 1024w, https://www.osradar.com/wp-content/uploads/2020/02/ext5-300x61.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ext5-768x156.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/ext5-696x141.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/ext5-1068x217.png 1068w, https://www.osradar.com/wp-content/uploads/2020/02/ext5.png 1158w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul><li><strong>change the password if you wish to change else copy the password for use as ext authentication later </strong></li><li><strong>click in submit</strong></li><li><strong>click in apply config</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="887" height="470" src="https://www.osradar.com/wp-content/uploads/2020/02/ext6.png" alt="" class="wp-image-18235" srcset="https://www.osradar.com/wp-content/uploads/2020/02/ext6.png 887w, https://www.osradar.com/wp-content/uploads/2020/02/ext6-300x159.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/ext6-768x407.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/ext6-696x369.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/ext6-793x420.png 793w" sizes="(max-width: 887px) 100vw, 887px" /></figure>



<p>Till these steps you had created a extension successfully and now you had to download and install zoiper soft phone from web  download as per you client Operating system</p>



<p><a href="https://www.zoiper.com/en/voip-softphone/download/current">https://www.zoiper.com/en/voip-softphone/download/current</a> </p>



<p>After downloading and installation of zoiper which is pretty easy to install as other applications.</p>



<ul><li><strong>Run zoiper from your Operating System</strong></li><li><strong>put your extension number as i created 1122</strong></li><li><strong>put the password you changed above or the one you copied random password above</strong></li><li><strong>click on login</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="869" height="594" src="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper1.png" alt="" class="wp-image-18236" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper1.png 869w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper1-300x205.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper1-768x525.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper1-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper1-696x476.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper1-614x420.png 614w" sizes="(max-width: 869px) 100vw, 869px" /></figure>



<ul><li><strong>Here you had to specify the sip address of your sip server ipaddress or name of the server along with port number if its default settings so your default port will be 5060</strong></li><li><strong>In my case my ip and port number 172.17.15.2:5060</strong></li><li><strong>Click on next</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="862" height="589" src="https://www.osradar.com/wp-content/uploads/2020/02/zoiper2.png" alt="" class="wp-image-18237" srcset="https://www.osradar.com/wp-content/uploads/2020/02/zoiper2.png 862w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper2-300x205.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper2-768x525.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper2-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper2-696x476.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper2-615x420.png 615w" sizes="(max-width: 862px) 100vw, 862px" /></figure>



<ul><li>I<strong>f you are using proxy server from you client end to connect the freepbx server you had to specify the proxy authentication else skip that step by clicking on skip</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="856" height="589" src="https://www.osradar.com/wp-content/uploads/2020/02/zoiper3.png" alt="" class="wp-image-18238" srcset="https://www.osradar.com/wp-content/uploads/2020/02/zoiper3.png 856w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper3-300x206.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper3-768x528.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper3-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper3-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper3-696x479.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/zoiper3-610x420.png 610w" sizes="(max-width: 856px) 100vw, 856px" /></figure>



<ul><li><strong>Your sip by default using UDP and if its green so means you are able to connect your server else check the internet connection or correct it by opening port on your router if any</strong></li><li><strong>If its green go ahead and click on next</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="856" height="600" src="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper4.png" alt="" class="wp-image-18239" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper4.png 856w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper4-300x210.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper4-768x538.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper4-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper4-696x488.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper4-599x420.png 599w" sizes="(max-width: 856px) 100vw, 856px" /></figure>



<ul><li><strong>Click cross near to accounts to go back to you zoiper dial phone</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="862" height="588" src="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper6.png" alt="" class="wp-image-18240" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper6.png 862w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper6-300x205.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper6-768x524.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper6-218x150.png 218w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper6-696x475.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper6-616x420.png 616w" sizes="(max-width: 862px) 100vw, 862px" /></figure>



<ul><li><strong>Put your desired extension and click on Dial</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="858" height="603" src="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper7.png" alt="" class="wp-image-18241" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper7.png 858w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper7-300x211.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper7-768x540.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper7-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper7-696x489.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper7-598x420.png 598w" sizes="(max-width: 858px) 100vw, 858px" /></figure>



<ul><li><strong>Its all done call is in progress after hangup from other soft phone extension or hard phone</strong></li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="859" height="612" src="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper8.png" alt="" class="wp-image-18242" srcset="https://www.osradar.com/wp-content/uploads/2020/02/Zoiper8.png 859w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper8-300x214.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper8-768x547.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper8-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper8-696x496.png 696w, https://www.osradar.com/wp-content/uploads/2020/02/Zoiper8-590x420.png 590w" sizes="(max-width: 859px) 100vw, 859px" /></figure>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-create-extension-and-connect-soft-phone-with-freepbx-gui/">How to create Extension and connect Soft Phone with FreePBX GUI</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-create-extension-and-connect-soft-phone-with-freepbx-gui/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>•	How to Install Ubuntu Alongside With Windows 10</title>
		<link>https://www.osradar.com/%e2%80%a2how-to-install-ubuntu-alongside-with-windows-10/</link>
					<comments>https://www.osradar.com/%e2%80%a2how-to-install-ubuntu-alongside-with-windows-10/#comments</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Thu, 03 Oct 2019 15:44:16 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[enviroment]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Windows 10]]></category>
		<guid isPermaLink="false">https://www.googez.com/?p=1869</guid>

					<description><![CDATA[<p>Now complete guide of how to install ubuntu 19 in windows 10 is as follows Before starting your pre-installed with ” Windows 10 OS” or an older version of such as Windows 8.1 or 8. &#160;you should first install Microsoft Windows and then proceed with Ubuntu installation. &#160;Windows installation steps, you should allocate a free [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/%e2%80%a2how-to-install-ubuntu-alongside-with-windows-10/">•	How to Install Ubuntu Alongside With Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1>Now complete guide of how to install ubuntu 19 in windows 10 is as follows</h1>



<ul><li>Before starting your pre-installed with ” Windows 10 OS” or an older version of such as Windows 8.1 or 8.</li></ul>



<ul><li>&nbsp;you should first install Microsoft Windows and then proceed with Ubuntu installation.</li><li>&nbsp;Windows installation steps, you should allocate a free space on the disk with at least 20 GB in size for use it later as a partition for the “ Ubuntu 19.04 ” installation.</li></ul>



<h4>Requirements:</h4>



<p>Download Ubuntu 19.04,Ubuntu 18.10, or Ubuntu</p>



<ul><li>Following Link for Downloading Ubuntu
versions:</li></ul>



<p>Select your required version of Ubuntu</p>



<ul><li>Ubuntu
19.04,</li><li>Ubuntu
18.10,</li></ul>



<p>&nbsp;Select <strong>Download</strong> Option and also Ubuntu Desktop 19.04</p>



<h3>Desktop image</h3>



<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The desktop image allows you to try Ubuntu without changing your computer at all, and at your option to install it permanently later. This type of image is what most people will want to use.</p>



<p><strong>Step 1</strong>: Create a live USB/disk of Ubuntu</p>



<p><strong>Step 2:</strong> Make a partition where Ubuntu will be installed</p>



<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lets assuming you have a fresh system, first, we need to make a partition to install &nbsp;&nbsp; Linux(Ubuntu 19.04).</p>



<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If you have just one partition like this, you need to make some free space out of it for Linux(Ubuntu &nbsp;&nbsp; 19.04). If you have several partitions of considerable size, use any of them except C drive because it may erase the data.</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/1-2-1024x768.jpg" alt="" class="wp-image-1885"/></figure>



<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; To make a partition in Windows 10, go to the Disk Management tool.</p>



<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; In the Disk Management tool, right-click on the drive which you want to partition and select “shrink volume “. In my case, I shrank the C drive to make some free space:</p>



<h3>Step 3: Install Ubuntu with Windows Dual-Boot</h3>



<ul><li>The purpose of this article, We will be installing Ubuntu 19.04 &nbsp;with Windows dual boot (you can use any Ubuntu release fro installation).</li><li>Create a bootable USB stick using a utility such as “Universal USB Installer” (BIOS compatible) or any utility software you know.</li><li>Place the USB stick or DVD in the drive, reboot the machine and instruct the ”BIOS/UEFI” to boot-up from the DVD/USB by pressing a special function key (usually F12, F10 or F2 depending machine specifications).</li></ul>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/2-2-1024x576.jpg" alt="" class="wp-image-1886"/></figure>



<ul><li>Install Ubuntu</li></ul>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/3-2-1024x768.jpg" alt="" class="wp-image-1887"/></figure>



<p>&nbsp;Choose the language you wish to perform the installation and
click on&nbsp;Continue&nbsp;button&nbsp;</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/4-3.jpg" alt="" class="wp-image-1888"/></figure>



<p>&nbsp;choose the first option “Normal Installation”
and
hit on&nbsp;Continue&nbsp;button</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/5-2-1024x578.jpg" alt="" class="wp-image-1889"/></figure>



<p>&nbsp;choose the first option “Something”
and
hit on&nbsp;Continue&nbsp;button</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/6-2-1024x578.jpg" alt="" class="wp-image-1890"/></figure>



<ul><li>Create a partition for Ubuntu. We recommend that you create two partitions, one for <strong>root </strong>and the other for <strong>home</strong> accounts data.</li><li>&nbsp;The <strong>root </strong>partition, select the free space and hit on&nbsp; <strong>+</strong> icon below. On partition settings use the following configurations and hit OK to apply changes:</li><li>Size at least 20000 <strong>MB</strong></li><li>Type for the new partition&nbsp; Primary</li><li>Location for the new partition&nbsp; Beginning</li><li>Use as&nbsp; EXT4 journaling file system</li><li>Mount point /</li></ul>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/7-3-1024x578.jpg" alt="" class="wp-image-1891"/></figure>



<ul class="wp-block-gallery columns-1 is-cropped"><li class="blocks-gallery-item"><figure><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/8-2-1024x578.jpg" alt="" data-id="1893" data-link="https://www.googez.com/?attachment_id=1893" class="wp-image-1893"/></figure></li></ul>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/9-2-1024x578.jpg" alt="" class="wp-image-1894"/></figure>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/10-2-1024x578.jpg" alt="" class="wp-image-1895"/></figure>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/11-2-1024x578.jpg" alt="" class="wp-image-1896"/></figure>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/12-2-1024x578.jpg" alt="" class="wp-image-1897"/></figure>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/13-2-1024x578.jpg" alt="" class="wp-image-1898"/></figure>



<p>Create the home partition:</p>



<ul><li>Size&nbsp; all remaining free
space</li><li>Type for the new partition Primary</li><li>Location for the new partition Beginning</li><li>Use as&nbsp; EXT4 journaling file system</li><li>Mount point /home</li></ul>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/14-1-1024x578.jpg" alt="" class="wp-image-1899"/></figure>



<p>select
Install Now&nbsp; :</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/15-1-1024x578.jpg" alt="" class="wp-image-1900"/></figure>



<p>Click continue:</p>



<p>Adjust your machine location by
selecting a city nearby from the map. When done hit Continue.</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/16-1-1024x578.jpg" alt="" class="wp-image-1901"/></figure>



<p>&nbsp;Fill username and password for your
administrative,</p>



<p>Enter&nbsp; Your name for your computer and Continue to finalize the installation.</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/17-1-1024x578.jpg" alt="" class="wp-image-1902"/></figure>



<p>After the installation process reaches its end hit on&nbsp;the Restart Now&nbsp;button in order to complete the installation.</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/18-1-1024x578.jpg" alt="" class="wp-image-1903"/></figure>



<p>Click Restart Now :</p>



<figure class="wp-block-image"><img src="//1910974556.rsc.cdn77.org/wp-content/uploads/2019/10/WhatsApp-Image-2019-10-04-at-17.56.51-1024x768.jpeg" alt="" class="wp-image-1940"/></figure>



<p>You have Successfully Installed Ubuntu with Windows 10. Press enter and continue.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/%e2%80%a2how-to-install-ubuntu-alongside-with-windows-10/">•	How to Install Ubuntu Alongside With Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/%e2%80%a2how-to-install-ubuntu-alongside-with-windows-10/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Guide to install Apache HTTP server manually</title>
		<link>https://www.osradar.com/guide-to-install-apache-http-server-manually/</link>
					<comments>https://www.osradar.com/guide-to-install-apache-http-server-manually/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Mon, 16 Sep 2019 19:44:08 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11805</guid>

					<description><![CDATA[<p>&#160; What is Apache HTTP Server The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web, where hypertextdocuments include hyperlinks to other resources that the user can easily access, for example by a mouse click or by tapping the screen in a web browser. How to get installation packages Apache server require [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/guide-to-install-apache-http-server-manually/">Guide to install Apache HTTP server manually</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>&nbsp;</p>
<h4><strong>What is Apache HTTP Server</strong></h4>
<p>The <b>Hypertext Transfer Protocol</b> (<b>HTTP</b>) is an application protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web, where hypertextdocuments include hyperlinks to other resources that the user can easily access, for example by a mouse click or by tapping the screen in a web browser.</p>
<h4><strong>How to get installation packages</strong></h4>
<p>Apache server require few dependent package like</p>
<ul>
<li>apr</li>
<li>apr-util</li>
<li>pcre</li>
<li>expat</li>
</ul>
<p><strong>Download httpd from below mentioned link</strong></p>
<p>https://httpd.apache.org/download.cgi</p>
<p><strong>OR</strong></p>
<p><strong>Download directly by shared links</strong></p>
<p>https://www-eu.apache.org/dist//httpd/httpd-2.4.39.tar.gz</p>
<p><strong>Download apr and apr util from below mentioned link</strong></p>
<p>https://apr.apache.org/download.cgi</p>
<p><strong>OR</strong></p>
<p><strong>Download directly by shared links</strong><br />
https://www-us.apache.org/dist//apr/apr-1.7.0.tar.gz<br />
https://www-us.apache.org/dist//apr/apr-util-1.6.1.tar.gz</p>
<p><strong>Installation</strong></p>
<p>First install dependent packages</p>
<pre>yum install expat-devel.x86_64  -y
yum install pcre-devel.x86_64  -y</pre>
<p>Now go to the directory containing packages and extract the downloaded packages</p>
<p>[root@myserver2 httpd_packages]# tar -xvzf httpd-2.4.39.tar.gz</p>
<p>[root@myserver2 httpd_packages]# tar -xvzf apr-util-1.6.1.tar.gz</p>
<p>[root@myserver2 httpd_packages]# tar -xvzf apr-1.7.0.tar.gz</p>
<p><img loading="lazy" class="alignnone wp-image-11821" src="https://www.osradar.com/wp-content/uploads/2019/04/extract_httpd-300x63.png" alt="" width="676" height="142" srcset="https://www.osradar.com/wp-content/uploads/2019/04/extract_httpd-300x63.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/extract_httpd-768x162.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/extract_httpd-696x146.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/extract_httpd.png 946w" sizes="(max-width: 676px) 100vw, 676px" /></p>
<p><img loading="lazy" class="alignnone wp-image-11822" src="https://www.osradar.com/wp-content/uploads/2019/04/extraction-300x56.png" alt="" width="691" height="129" srcset="https://www.osradar.com/wp-content/uploads/2019/04/extraction-300x56.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/extraction-768x144.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/extraction-1024x191.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/extraction-696x130.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/extraction.png 1065w" sizes="(max-width: 691px) 100vw, 691px" /></p>
<p>Now go to APR directory and start installing APR</p>
<pre>[root@myserver2 apr-1.7.0]# ./configure --prefix=/usr/local/apr</pre>
<p><img loading="lazy" class="alignnone wp-image-11815" src="https://www.osradar.com/wp-content/uploads/2019/04/apr-config-300x134.png" alt="" width="687" height="307" srcset="https://www.osradar.com/wp-content/uploads/2019/04/apr-config-300x134.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/apr-config-768x342.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/apr-config-1024x456.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/apr-config-696x310.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/apr-config-1068x476.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/apr-config-943x420.png 943w, https://www.osradar.com/wp-content/uploads/2019/04/apr-config.png 1793w" sizes="(max-width: 687px) 100vw, 687px" /></p>
<pre>[root@myserver2 apr-1.7.0]# make
[root@myserver2 apr-1.7.0]# make install</pre>
<p>If you will see output without errors .Congratulations you have installed apr package</p>
<p><img loading="lazy" class="alignnone wp-image-11824" src="https://www.osradar.com/wp-content/uploads/2019/04/ouputapr-300x122.png" alt="" width="679" height="276" srcset="https://www.osradar.com/wp-content/uploads/2019/04/ouputapr-300x122.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/ouputapr-768x313.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/ouputapr-1024x418.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/ouputapr-696x284.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/ouputapr-1068x436.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/ouputapr-1030x420.png 1030w, https://www.osradar.com/wp-content/uploads/2019/04/ouputapr.png 1400w" sizes="(max-width: 679px) 100vw, 679px" /></p>
<p>Now go to APR-util directory and start installing it. You should add APR path while installation of APR util.</p>
<p><strong>Syntax to include APR path is</strong></p>
<p>. /configure &#8211;with-apr=path to apr directory</p>
<pre>[root@myserver2 apr-util-1.6.1]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/</pre>
<p><img loading="lazy" class="alignnone wp-image-11814" src="https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config-300x114.png" alt="" width="668" height="254" srcset="https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config-300x114.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config-768x292.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config-1024x389.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config-696x265.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config-1068x406.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config-1105x420.png 1105w, https://www.osradar.com/wp-content/uploads/2019/04/apr_util_config.png 1849w" sizes="(max-width: 668px) 100vw, 668px" /></p>
<p>Now run following commands</p>
<pre>make
make install</pre>
<p>If your output has no errors. Congratulations you have installed apr-util.</p>
<p><img loading="lazy" class="alignnone wp-image-11816" src="https://www.osradar.com/wp-content/uploads/2019/04/aprt-util_verification-300x78.png" alt="" width="1311" height="341" srcset="https://www.osradar.com/wp-content/uploads/2019/04/aprt-util_verification-300x78.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/aprt-util_verification-768x199.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/aprt-util_verification-1024x265.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/aprt-util_verification-696x180.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/aprt-util_verification-1068x277.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/aprt-util_verification.png 1830w" sizes="(max-width: 1311px) 100vw, 1311px" /></p>
<p>lets start with installation of Apache web-server.</p>
<p>First download httpd source. I am using <em><strong>wget</strong></em> to download  httpd source. You can use<strong><em> wget</em> </strong>,<strong><em>curl</em></strong> or directly download from httpd homepage.</p>
<p><img loading="lazy" class="alignnone wp-image-11823" src="https://www.osradar.com/wp-content/uploads/2019/04/httpd_download-300x94.png" alt="" width="680" height="213" srcset="https://www.osradar.com/wp-content/uploads/2019/04/httpd_download-300x94.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/httpd_download-768x240.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/httpd_download-1024x320.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/httpd_download-696x217.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/httpd_download-1068x333.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/httpd_download-1346x420.png 1346w, https://www.osradar.com/wp-content/uploads/2019/04/httpd_download.png 1846w" sizes="(max-width: 680px) 100vw, 680px" /></p>
<p>After extracting the tar file. Go to extracted directory and configure httpd server.</p>
<pre>./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr/ --with-apr=/usr/local/apr-util</pre>
<p><img loading="lazy" class="alignnone wp-image-11811" src="https://www.osradar.com/wp-content/uploads/2019/04/apache_config-300x98.png" alt="" width="973" height="318" srcset="https://www.osradar.com/wp-content/uploads/2019/04/apache_config-300x98.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/apache_config-768x252.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/apache_config-1024x336.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/apache_config-696x228.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/apache_config.png 1846w" sizes="(max-width: 973px) 100vw, 973px" /></p>
<p>After successful completion of above step. Now run the following commands to install httpd</p>
<pre>make
make install</pre>
<p>If every thing goes fine. configurations you have successfully installed Apache web server from source file.</p>
<p><img loading="lazy" class="alignnone wp-image-11812" src="https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput-300x84.png" alt="" width="668" height="187" srcset="https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput-300x84.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput-768x216.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput-1024x288.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput-696x196.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput-1068x300.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput-1495x420.png 1495w, https://www.osradar.com/wp-content/uploads/2019/04/apache_ouput.png 1847w" sizes="(max-width: 668px) 100vw, 668px" /></p>
<p>Go to  <strong><em>/usr/local/apache/conf/</em> </strong>and open file <strong><em>httpd.conf</em></strong></p>
<p><em><strong>httpd.conf</strong> </em>file contain all the configuration required to run httpd server.</p>
<p>Search for listen 80<br />
Default port for Apache is port 80. If you want to change the port replace 80 by any available port.<br />
like i am using Port 8080 for httpd server.</p>
<p><strong>Note : You can skip below mentioned step</strong></p>
<p>Go to <strong>htdocs</strong> directory and make change in <strong>index.html</strong> file and write following line in it</p>
<p><em>Congratulations you have installed Apache webserver. it is working on port 8080</em></p>
<p><strong>How to start httpd server</strong></p>
<p>Move to <em><strong> /usr/local/apache/bin</strong></em> directory and run following command</p>
<pre>./apachectl start</pre>
<p>Now find the process is running use following command</p>
<pre>ps -ef |grep httpd

<strong>you will see output like
</strong>
root 11027 1 0 02:50 ? 00:00:00 /usr/local/apache/bin/httpd -k start
daemon 11028 11027 0 02:50 ? 00:00:00 /usr/local/apache/bin/httpd -k start
daemon 11029 11027 0 02:50 ? 00:00:00 /usr/local/apache/bin/httpd -k start
daemon 11030 11027 0 02:50 ? 00:00:00 /usr/local/apache/bin/httpd -k start
root 11120 1618 0 02:50 pts/0 00:00:00 grep --color=auto httpd</pre>
<p>use the below mentioned url in your browser to test httpd server</p>
<p><strong><em>http://localhost:8080</em></strong></p>
<p>I am using elinks browser. You can install elinks browser</p>
<p><strong>Elinks</strong></p>
<p>Links is a text mode WWW browser, supporting colors, table rendering, background downloading, menu driven configuration interface, tabbed browsing and slim code.Frames are supported. You can have different file formats associated with external viewers. mailto: and telnet: are supported via external clients. ELinks can handle both local files and remote URLs. The main supported remote URL protocols are HTTP, HTTPS (with SSL support compiled in) and FTP. Additional protocol support exists for BitTorrent finger, Gopher, SMB and NNTP. The homepage of ELinks can be found at <strong><em>http://elinks.cz</em> </strong>where the ELinks manual is also hosted.</p>
<p><strong>You you want to use elinks . Use following command</strong></p>
<p>elinks http://localhost:8080</p>
<p><img loading="lazy" class="alignnone wp-image-11820" src="https://www.osradar.com/wp-content/uploads/2019/04/elinks_test-300x10.png" alt="" width="2070" height="69" srcset="https://www.osradar.com/wp-content/uploads/2019/04/elinks_test-300x10.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/elinks_test-768x26.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/elinks_test-1024x34.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/elinks_test-696x23.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/elinks_test-1068x36.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/elinks_test.png 1843w" sizes="(max-width: 2070px) 100vw, 2070px" /></p>
<p><img loading="lazy" class="alignnone wp-image-11819" src="https://www.osradar.com/wp-content/uploads/2019/04/elinks-300x112.png" alt="" width="664" height="248" srcset="https://www.osradar.com/wp-content/uploads/2019/04/elinks-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/elinks-768x287.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/elinks-1024x383.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/elinks-696x260.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/elinks-1068x400.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/elinks-1123x420.png 1123w, https://www.osradar.com/wp-content/uploads/2019/04/elinks.png 1882w" sizes="(max-width: 664px) 100vw, 664px" /></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/guide-to-install-apache-http-server-manually/">Guide to install Apache HTTP server manually</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/guide-to-install-apache-http-server-manually/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Understand runlevels or targets in Linux</title>
		<link>https://www.osradar.com/understand-runlevels-or-targets-in-linux/</link>
					<comments>https://www.osradar.com/understand-runlevels-or-targets-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Tue, 09 Apr 2019 14:06:39 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Runlevels Linux]]></category>
		<category><![CDATA[targets Linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11764</guid>

					<description><![CDATA[<p>When linux based system start booting. Kernel select one of available target and load services accordingly. A target is a mode in Centos 7 and Red hat enterprise . systemd is responsible to select the target. A systemd target is same a runlevels in centos6. systemd target is replacement of &#8220;System V init&#8221; system. systemd [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/understand-runlevels-or-targets-in-linux/">Understand runlevels or targets in Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When linux based system start booting. Kernel select one of available target and load services accordingly.<br />
A target is a mode in Centos 7 and Red hat enterprise . systemd is responsible to select the target. A systemd target is same a runlevels in centos6.<br />
systemd target is replacement of &#8220;System V init&#8221; system. systemd is a system daemon<br />
systemd is designed for better handling of dependencies and has ability to handle more work in parallel at system startup<br />
There are 7 target or levels available in Centos7</p>
<table border="0" cellspacing="0">
<colgroup width="86"></colgroup>
<colgroup width="151"></colgroup>
<colgroup width="412"></colgroup>
<tbody>
<tr>
<td align="left" height="17"><span style="font-family: Liberation Serif;">Run-level</span></td>
<td align="left"><span style="font-family: Liberation Serif;">Target</span></td>
<td align="left">Explanation</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="17"><strong><span style="font-family: Liberation Serif;">0</span></strong></td>
<td style="text-align: left;" align="left"><strong><span style="font-family: Liberation Serif;">poweroff.target</span></strong></td>
<td align="left">This run level/target is used by systemd to power-off or halt the system</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="17"><strong><span style="font-family: Liberation Serif;">1</span></strong></td>
<td align="left"><strong><span style="font-family: Liberation Serif;">rescue.target</span></strong></td>
<td align="left">This run level/target is used by systemd to boot the system in rescue or recovery mode. It is very helpful if some goes wrong you can change the configuration in that mode</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="17"><strong><span style="font-family: Liberation Serif;">2</span></strong></td>
<td style="text-align: left;" align="left"><strong><span style="font-family: Liberation Serif;">multi-user.target</span></strong></td>
<td align="left">This run level/target is used by systemd to boot system into multi-user environment so user can work in parallel</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="17"><strong><span style="font-family: Liberation Serif;">3</span></strong></td>
<td style="text-align: left;" align="left"><strong><span style="font-family: Liberation Serif;">multi-user.target</span></strong></td>
<td align="left"></td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="17"><strong><span style="font-family: Liberation Serif;">4</span></strong></td>
<td style="text-align: left;" align="left"><strong><span style="font-family: Liberation Serif;">multi-user.target</span></strong></td>
<td align="left"></td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="17"><strong><span style="font-family: Liberation Serif;">5</span></strong></td>
<td style="text-align: left;" align="left"><strong><span style="font-family: Liberation Serif;">graphical.target</span></strong></td>
<td align="left">This run level/target is used by systemd to boot system into multi-user graphical environment so user can work in parallel in graphical mode</td>
</tr>
<tr>
<td style="text-align: center;" align="right" height="17"><strong><span style="font-family: Liberation Serif;">6</span></strong></td>
<td style="text-align: left;" align="left"><strong><span style="font-family: Liberation Serif;">reboot.target</span></strong></td>
<td align="left">This run level/target is used by systemd to reboot the system</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>How to get list to available Targets</strong></p>
<pre>[kmehmood@svn-dev ~]$ systemctl list-units --type=target</pre>
<p><strong>Note:</strong> Above statement will only share list of active available target</p>
<p><strong>Output of above statement</strong></p>
<p><img loading="lazy" class="alignnone wp-image-11765" src="https://www.osradar.com/wp-content/uploads/2019/04/Targets-300x239.png" alt="" width="690" height="550" srcset="https://www.osradar.com/wp-content/uploads/2019/04/Targets-300x239.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/Targets-768x613.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/Targets-1024x817.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/Targets-696x555.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/Targets-526x420.png 526w, https://www.osradar.com/wp-content/uploads/2019/04/Targets.png 1050w" sizes="(max-width: 690px) 100vw, 690px" /></p>
<p><strong>How to get list of available target including inactive</strong></p>
<pre>[kmehmood@svn-dev ~]$ systemctl list-units --type=target --all</pre>
<p>Note: Above statement will only share list of all available targets</p>
<p><strong>There are two type of default targets</strong><br />
1: multi-user.target<br />
2: graphical.target</p>
<p><strong>How to find default target</strong></p>
<pre>[kmehmood@svn-dev ~]$ systemctl get-default
graphical.target</pre>
<p><strong>Output of above statement</strong></p>
<p><img loading="lazy" class="alignnone wp-image-11766" src="https://www.osradar.com/wp-content/uploads/2019/04/default-300x39.png" alt="" width="677" height="88" srcset="https://www.osradar.com/wp-content/uploads/2019/04/default-300x39.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/default-768x100.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/default-696x91.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/default.png 934w" sizes="(max-width: 677px) 100vw, 677px" /></p>
<p><strong>How to change default mode</strong><br />
<strong>Syntax: </strong> systemctl set-default target_name</p>
<pre>[root@svn-dev ~]# systemctl set-default multi-user.target</pre>
<p>Confirm the default runlevel.</p>
<pre>[root@svn-dev ~]# systemctl get-default
multi-user.target</pre>
<p>Reboot and check it out.</p>
<pre>[root@svn-dev ~]# reboot</pre>
<p><strong>we can also check target levels available</strong></p>
<pre>[kmehmood@svn-dev ~]$ ls /lib/systemd/system/runlevel*target -l
lrwxrwxrwx. 1 root root 15 Jan 23 19:10 /lib/systemd/system/runlevel0.target -&gt; poweroff.target
lrwxrwxrwx. 1 root root 13 Jan 23 19:10 /lib/systemd/system/runlevel1.target -&gt; rescue.target
lrwxrwxrwx. 1 root root 17 Jan 23 19:10 /lib/systemd/system/runlevel2.target -&gt; multi-user.target
lrwxrwxrwx. 1 root root 17 Jan 23 19:10 /lib/systemd/system/runlevel3.target -&gt; multi-user.target
lrwxrwxrwx. 1 root root 17 Jan 23 19:10 /lib/systemd/system/runlevel4.target -&gt; multi-user.target
lrwxrwxrwx. 1 root root 16 Jan 23 19:10 /lib/systemd/system/runlevel5.target -&gt; graphical.target
lrwxrwxrwx. 1 root root 13 Jan 23 19:10 /lib/systemd/system/runlevel6.target -&gt; reboot.target</pre>
<p><strong>output</strong></p>
<p><img loading="lazy" class="alignnone wp-image-11767" src="https://www.osradar.com/wp-content/uploads/2019/04/Runlevel-300x59.png" alt="" width="899" height="177" srcset="https://www.osradar.com/wp-content/uploads/2019/04/Runlevel-300x59.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/Runlevel-768x152.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/Runlevel-1024x203.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/Runlevel-696x138.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/Runlevel-1068x212.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/Runlevel.png 1392w" sizes="(max-width: 899px) 100vw, 899px" /></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/understand-runlevels-or-targets-in-linux/">Understand runlevels or targets in Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/understand-runlevels-or-targets-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
