<?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>Virtual Machine - Techyaz.com</title>
	<atom:link href="https://techyaz.com/tag/virtual-machine/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Tips, Tutorials and How-to Topics</description>
	<lastBuildDate>Tue, 15 May 2018 15:12:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8</generator>

<image>
	<url>https://techyaz.com/wp-content/uploads/2017/11/cropped-Site-icon-150x150.png</url>
	<title>Virtual Machine - Techyaz.com</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Fix PuTTY Network Error: Connection Refused while Connecting to Ubuntu Server</title>
		<link>https://techyaz.com/ubuntu/fix-putty-network-error-connection-refused-connecting-ubuntu-server/</link>
					<comments>https://techyaz.com/ubuntu/fix-putty-network-error-connection-refused-connecting-ubuntu-server/#respond</comments>
		
		<dc:creator><![CDATA[Manvendra Deo Singh]]></dc:creator>
		<pubDate>Mon, 18 Sep 2017 07:02:02 +0000</pubDate>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[HowTO]]></category>
		<category><![CDATA[PuTTY]]></category>
		<category><![CDATA[PuTTY fatal error]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[SQL Server On Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Virtual Machine]]></category>
		<guid isPermaLink="false">http://techyaz.com/?p=912</guid>

					<description><![CDATA[<p>I installed SQL Server 2017 on Ubuntu server and tried to connect to this server using PuTTY from my local host. I failed to connect and received PuTTY fatal error ubuntu ssh connection refused. Read this tip to fix this PuTTY&#46;&#46;&#46;</p>
<p>The post <a href="https://techyaz.com/ubuntu/fix-putty-network-error-connection-refused-connecting-ubuntu-server/">Fix PuTTY Network Error: Connection Refused while Connecting to Ubuntu Server</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I <a href="https://techyaz.com/sql-server/sql-server-on-linux/install-sql-server-2017-on-ubuntu-server-without-internet-offline-installation/" target="_blank" rel="noopener">installed SQL Server 2017 on Ubuntu server</a> and tried to connect to this server using PuTTY from my local host. I failed to connect and received PuTTY fatal error ubuntu ssh connection refused. Read this tip to fix this PuTTY <em>Network Error : Connection Refused.</em></p>
<h3><span style="color: #000080;"><strong>Network error: Ubuntu ssh Connection Refused</strong></span></h3>
<p>I faced ubuntu connection refused error while establishing a connection to Ubuntu Linux virtual machine from host computer. I installed PuTTY on my host and tried to connect to Ubuntu Linux machine. Let&#8217;s <a href="https://techyaz.com/sql-server/sql-server-on-linux/check-change-ip-address-subnet-mask-default-gateway-linux-server/" target="_blank" rel="noopener">check the IP of Ubuntu server</a> that we had used to make connection from PuTTY terminal. Run <em>ipconfig</em> command to get these details.</p>
<pre class="brush: sql; title: ; notranslate" title=""><strong><span class="kwrd" style="color: blue;"><span style="color: #008000;">#Check IP of Ubuntu Server</span>
ipconfig
</span></strong></pre>
<p>We can see the IP details of the Ubuntu server that is showing 192.168.209.134. We have used this IP to establish server connection and end up with this PuTTY fatal error.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-913" src="http://techyaz.com/wp-content/uploads/2017/09/1-get-ip.jpg" alt="Check IP of Ubuntu Server" width="495" height="286" srcset="https://techyaz.com/wp-content/uploads/2017/09/1-get-ip.jpg 495w, https://techyaz.com/wp-content/uploads/2017/09/1-get-ip-300x173.jpg 300w" sizes="(max-width: 495px) 100vw, 495px" /></p>
<p>I tried to connect to Ubuntu server post getting IP from above command but I got ubuntu ssh connection refused error during this operation. The details of PuTTY Fatal Error that caused ubuntu connection refused is given below.</p>
<div class="codediv"><span class="kwrd" style="color: red;"><strong><em>PuTTY Fatal Error</em></strong><br />
<strong><em> Network error: Connection Refused</em></strong><br />
</span></div>
<p><img decoding="async" class="aligncenter size-full wp-image-914" src="http://techyaz.com/wp-content/uploads/2017/09/2-error.jpg" alt="Network Error Connection Refused Error" width="457" height="279" srcset="https://techyaz.com/wp-content/uploads/2017/09/2-error.jpg 457w, https://techyaz.com/wp-content/uploads/2017/09/2-error-300x183.jpg 300w" sizes="(max-width: 457px) 100vw, 457px" /></p>
<h3><span style="color: #000080;"><strong>Solution</strong></span></h3>
<p>We faced ubuntu ssh connection refused error and failed to connect to Ubuntu Server remotely using PuTTY terminal because <strong>SSH, or Secure Shell</strong> is not installed on the Ubuntu server. <strong>SSH, or Secure Shell</strong>, is a protocol used to securely log onto remote systems. Our next step is to install SSH on the Ubuntu server. Run below command to start this installation.</p>
<pre class="brush: sql; title: ; notranslate" title=""><strong><span class="kwrd" style="color: blue;"><span style="color: #008000;">#Install SSH on Ubuntu Server</span>
sudo apt-get install openssh-server
</span></strong></pre>
<p>It will check the dependencies and ask you to type y to proceed with the installation as shown in below image.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-915" src="http://techyaz.com/wp-content/uploads/2017/09/3-install-ssh.jpg" alt="install ssh" width="978" height="465" srcset="https://techyaz.com/wp-content/uploads/2017/09/3-install-ssh.jpg 978w, https://techyaz.com/wp-content/uploads/2017/09/3-install-ssh-300x143.jpg 300w, https://techyaz.com/wp-content/uploads/2017/09/3-install-ssh-768x365.jpg 768w" sizes="(max-width: 978px) 100vw, 978px" /></p>
<p>A series of all required packages will download and set up to install SSH. Once SSH will be installed on your Ubuntu server it will look like below image.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-916" src="http://techyaz.com/wp-content/uploads/2017/09/4-install-ssh.jpg" alt="install ssh" width="767" height="285" srcset="https://techyaz.com/wp-content/uploads/2017/09/4-install-ssh.jpg 767w, https://techyaz.com/wp-content/uploads/2017/09/4-install-ssh-300x111.jpg 300w" sizes="auto, (max-width: 767px) 100vw, 767px" /></p>
<p>You can also reconfirm the installation by executing same command which you ran to install it. You can say, it is saying newest version is already installed on this server.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-917" src="http://techyaz.com/wp-content/uploads/2017/09/5-recheck-ssh.jpg" alt="validate ssh installation" width="639" height="148" srcset="https://techyaz.com/wp-content/uploads/2017/09/5-recheck-ssh.jpg 639w, https://techyaz.com/wp-content/uploads/2017/09/5-recheck-ssh-300x69.jpg 300w" sizes="auto, (max-width: 639px) 100vw, 639px" /></p>
<p>Now launch PuTTY terminal on your host computer or a computer from where you want to connect to the Ubuntu server and enter IP address of Ubuntu server to establish connection. Once you click on connect button, you will get a window for the very first time only. Click on Yes button of that window to proceed. Once you will click on Yes button you will be connected to your Ubuntu server remotely.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-918" src="http://techyaz.com/wp-content/uploads/2017/09/7-connect-ssh.jpg" alt="Connected to ubuntu using Putty" width="842" height="269" srcset="https://techyaz.com/wp-content/uploads/2017/09/7-connect-ssh.jpg 842w, https://techyaz.com/wp-content/uploads/2017/09/7-connect-ssh-300x96.jpg 300w, https://techyaz.com/wp-content/uploads/2017/09/7-connect-ssh-768x245.jpg 768w" sizes="auto, (max-width: 842px) 100vw, 842px" /></p>
<p>Now we can see putty connection refused error is fixed and we can connect to Ubuntu server remotely using PuTTY terminal. If you want to <a href="https://help.ubuntu.com/community/SSH/OpenSSH/Configuring" target="_blank" rel="noopener">change configurations of SSH</a> you can refer to attached document. This way you can fix ubuntu ssh connection refused error.</p>
<p>Here, we have fixed ubuntu putty connection refused error. I hope you like this article. Please follow us on our <a href="https://www.facebook.com/Techyaz/">facebook</a> page and on <a href="https://twitter.com/Tech_yaz">Twitter</a> handle to get latest updates.</p>
<p>The post <a href="https://techyaz.com/ubuntu/fix-putty-network-error-connection-refused-connecting-ubuntu-server/">Fix PuTTY Network Error: Connection Refused while Connecting to Ubuntu Server</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://techyaz.com/ubuntu/fix-putty-network-error-connection-refused-connecting-ubuntu-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Step by Step Process to Install Red Hat Enterprise Linux 7.3</title>
		<link>https://techyaz.com/rhel/step-step-process-install-red-hat-enterprise-linux/</link>
					<comments>https://techyaz.com/rhel/step-step-process-install-red-hat-enterprise-linux/#respond</comments>
		
		<dc:creator><![CDATA[Manvendra Deo Singh]]></dc:creator>
		<pubDate>Mon, 14 Aug 2017 11:09:56 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RedHat Linux]]></category>
		<category><![CDATA[SQL Server ON Linux]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[SQL Server On Linux]]></category>
		<category><![CDATA[Virtual Machine]]></category>
		<category><![CDATA[Vmware]]></category>
		<guid isPermaLink="false">http://techyaz.com/?p=447</guid>

					<description><![CDATA[<p>Red Hat Enterprise Linux (RHEL) is an Open Source Linux operating system developed by Red Hat. RHEL is most popular operating system in today&#8217;s world for major deployments. Here i will explain step by step process to install Red Hat&#46;&#46;&#46;</p>
<p>The post <a href="https://techyaz.com/rhel/step-step-process-install-red-hat-enterprise-linux/">Step by Step Process to Install Red Hat Enterprise Linux 7.3</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Red Hat Enterprise Linux (RHEL)</strong> is an Open Source Linux operating system developed by Red Hat. RHEL is most popular operating system in today&#8217;s world for major deployments. Here i will explain step by step process to install Red Hat Enterprise Linux 7.3 on your virtual machine.</p>
<h3><span style="color: #000080;"><strong>How to Install Red Hat Linux 7.3?</strong></span></h3>
<p>I have performed this installation on one of my virtual machine that are hosted on my local computer. If you want to <a href="https://www.techyaz.com/sql-server/sql-server-on-linux/create-virtual-machine-pc/" target="_blank" rel="noopener">create new virtual machine</a> to install Linux 7.3 operating system you should read its step by step process in attached link.</p>
<p>Once you have created your virtual machine with RHEL 7.3 setup, installation media will automatically be detected and let you proceed with the installation. This is because you have already selected RHEL 7.3 ISO during virtual machine creation. Make sure you have <a href="https://access.redhat.com/downloads/">downloaded correct RHEL setup file</a>. Below is the image of correct setup file.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-448" src="http://techyaz.com/wp-content/uploads/2017/08/1-download-RHLinux-copy-1024x121.jpg" alt="correct linux file to download" width="1024" height="121" srcset="https://techyaz.com/wp-content/uploads/2017/08/1-download-RHLinux-copy-1024x121.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/1-download-RHLinux-copy-300x35.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/1-download-RHLinux-copy-768x90.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/1-download-RHLinux-copy.jpg 1300w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now let us proceed with the installation. You will get below image to proceed with the Linux installation once you finish creating a virtual machine.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-449" src="http://techyaz.com/wp-content/uploads/2017/08/1-welcome-1024x731.jpg" alt="welcome " width="1024" height="731" srcset="https://techyaz.com/wp-content/uploads/2017/08/1-welcome-1024x731.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/1-welcome-300x214.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/1-welcome-768x548.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/1-welcome.jpg 1152w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Press enter on first option &#8220;<strong>Install Red Hat Enterprise Linux 7.3</strong>&#8221; to proceed with installation. If you will not press enter, setup will start automatically after 1 minute. Now you will get below screen which says to press enter again.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-450" src="http://techyaz.com/wp-content/uploads/2017/08/2-window-1024x313.jpg" alt="" width="1024" height="313" srcset="https://techyaz.com/wp-content/uploads/2017/08/2-window-1024x313.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/2-window-300x92.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/2-window-768x235.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/2-window.jpg 1444w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Once you press enter, a series of updates will process on your screen.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-451" src="http://techyaz.com/wp-content/uploads/2017/08/4-checking-1024x592.jpg" alt="Linux installation" width="1024" height="592" srcset="https://techyaz.com/wp-content/uploads/2017/08/4-checking-1024x592.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/4-checking-300x173.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/4-checking-768x444.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/4-checking.jpg 1436w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>You will get below screen to <strong>choose the language</strong> in the next window. Here choose your language in which installation texts will proceed and click on &#8220;Continue&#8221; button to proceed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-452" src="http://techyaz.com/wp-content/uploads/2017/08/5-choose-language.jpg" alt="Linux installation" width="1014" height="724" srcset="https://techyaz.com/wp-content/uploads/2017/08/5-choose-language.jpg 1014w, https://techyaz.com/wp-content/uploads/2017/08/5-choose-language-300x214.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/5-choose-language-768x548.jpg 768w" sizes="auto, (max-width: 1014px) 100vw, 1014px" /></p>
<p>Next window will be &#8220;<strong>Installation Summary</strong>&#8221; window from where we will configure all configurations for this installation. You can see &#8220;<strong>Begin Installation</strong>&#8221; button is showing disabled on this window. It will enable the moment we configure all parameters. We will click one by one to each option and then configure them with the correct value to proceed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-453" src="http://techyaz.com/wp-content/uploads/2017/08/6-installation-summary-1024x713.jpg" alt="Linux Installation" width="1024" height="713" srcset="https://techyaz.com/wp-content/uploads/2017/08/6-installation-summary-1024x713.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/6-installation-summary-300x209.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/6-installation-summary-768x535.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/6-installation-summary.jpg 1042w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Let&#8217;s start the configuration one by one. First click on &#8220;<strong>Date &amp; Time</strong>&#8221; option to set the server clock according to your time zone. As i stayed in India so i have chosen region as Asia and city as <strong>Kolkata</strong> and then set the time and date in the bottom of below screen. Now click on done button given top left side of the below image.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-454" src="http://techyaz.com/wp-content/uploads/2017/08/7-date-time-1024x704.jpg" alt="" width="1024" height="704" srcset="https://techyaz.com/wp-content/uploads/2017/08/7-date-time-1024x704.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/7-date-time-300x206.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/7-date-time-768x528.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/7-date-time.jpg 1074w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now click on &#8220;<strong>Keyboard</strong>&#8221; option to set the keyboard option as shown in below image. Click on plus sign if you want to choose some other settings. Click on done button to apply this change for the installation.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-455" src="http://techyaz.com/wp-content/uploads/2017/08/8-keyboard-1024x709.jpg" alt="Linux Installation" width="1024" height="709" srcset="https://techyaz.com/wp-content/uploads/2017/08/8-keyboard-1024x709.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/8-keyboard-300x208.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/8-keyboard-768x531.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/8-keyboard.jpg 1042w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now click on &#8220;<strong>Language Support</strong>&#8221; option to set the language for this installation. Choose your language and click on done button to proceed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-456" src="http://techyaz.com/wp-content/uploads/2017/08/9-language-1024x700.jpg" alt="Linux Installation" width="1024" height="700" srcset="https://techyaz.com/wp-content/uploads/2017/08/9-language-1024x700.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/9-language-300x205.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/9-language-768x525.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/9-language.jpg 1054w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Next option in <strong>installation summary</strong> window is to select correct <strong>installation media</strong>. I did not make any changes here because it is already selected as local media which we had downloaded from Red Hat website.</p>
<p>Now click on &#8220;<strong>Software Selection</strong>&#8221; to choose what type of installation you want to proceed. I selected <strong>minimal install</strong> to proceed. If you want to install <strong>GUI based Linux</strong> server operating system you can choose last option of below screen. Once you made your selection click on done button to proceed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-457" src="http://techyaz.com/wp-content/uploads/2017/08/10-software-selection-1024x692.jpg" alt="Linux Installation" width="1024" height="692" srcset="https://techyaz.com/wp-content/uploads/2017/08/10-software-selection-1024x692.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/10-software-selection-300x203.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/10-software-selection-768x519.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/10-software-selection.jpg 1056w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now we will configure the &#8220;<strong>Installation Destination</strong>&#8221; option.Here we have also an option to configure storage partitioning. If you want to add some other disk you can do that as well from this page. I have selected 20GB for this Linux server so it is shwoing there. Now come to the <strong>storage partitioning</strong> section which is in bottom of the screen, i have selected &#8220;<strong>Automatically configure partitioning</strong>&#8220;. Setup will configure all the partitions automatically during installation. If you want to configure it manually you can choose second option that will allow you to configure as per your need. Click on done button to proceed, once you have made all changes.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-458" src="http://techyaz.com/wp-content/uploads/2017/08/11-disk-selection-1024x699.jpg" alt="Linux Installation" width="1024" height="699" srcset="https://techyaz.com/wp-content/uploads/2017/08/11-disk-selection-1024x699.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/11-disk-selection-300x205.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/11-disk-selection-768x525.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/11-disk-selection.jpg 1060w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now there are only three option left to configure as per below image. These are <strong>Kdump, Network &amp; Hostname and Security Policy</strong>. You can see rest of all options are showing with their configured value.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-459" src="http://techyaz.com/wp-content/uploads/2017/08/12-installation-summary-1024x693.jpg" alt="Linux Installation" width="1024" height="693" srcset="https://techyaz.com/wp-content/uploads/2017/08/12-installation-summary-1024x693.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/12-installation-summary-300x203.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/12-installation-summary-768x520.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/12-installation-summary.jpg 1072w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now click on <strong>KDUMP</strong> option. Kdump is a mechanism which captures information from your system during system crash that can be invaluable in determining the cause of the crash. I have enabled this option. If you do not want to enable it you can uncheck it. Click on done button to proceed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-460" src="http://techyaz.com/wp-content/uploads/2017/08/13-kdump-1024x723.jpg" alt="Linux Installation" width="1024" height="723" srcset="https://techyaz.com/wp-content/uploads/2017/08/13-kdump-1024x723.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/13-kdump-300x212.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/13-kdump-768x542.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/13-kdump.jpg 1028w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now click on &#8220;<strong>Network &amp; Host Name&#8221;</strong> option. You will get below image to configure it.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-461" src="http://techyaz.com/wp-content/uploads/2017/08/14-network-hostname-1024x682.jpg" alt="Linux Installation" width="1024" height="682" srcset="https://techyaz.com/wp-content/uploads/2017/08/14-network-hostname-1024x682.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/14-network-hostname-300x200.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/14-network-hostname-768x512.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/14-network-hostname.jpg 1054w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now click on <strong>on/off button</strong> showing in top right side of above screen. It will automatically assign IP address, subnet mask address to make connection. I have enabled it and you can see all address in below screen. You can also change the <strong>hostname</strong> of Linux server. Write the server name in the host name section and click on apply button.</p>
<p>If you want to assign IP address, subnet mask address and other details manually you should click on configure button on below screen. Click on done button to proceed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-462" src="http://techyaz.com/wp-content/uploads/2017/08/15-network-hostname-1024x685.jpg" alt="Linux Installation 15" width="1024" height="685" srcset="https://techyaz.com/wp-content/uploads/2017/08/15-network-hostname-1024x685.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/15-network-hostname-300x201.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/15-network-hostname-768x513.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/15-network-hostname.jpg 1080w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Final option is to select appropriate S<strong>ecurity Policy</strong>. I did not make any changes and go with default option as shown in below screen.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-463" src="http://techyaz.com/wp-content/uploads/2017/08/16-security-policy-1024x668.jpg" alt="Linux Installation 16" width="1024" height="668" srcset="https://techyaz.com/wp-content/uploads/2017/08/16-security-policy-1024x668.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/16-security-policy-300x196.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/16-security-policy-768x501.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/16-security-policy.jpg 1094w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now we will click on &#8220;<strong>Begin Installation</strong>&#8221; to start the installation.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-464" src="http://techyaz.com/wp-content/uploads/2017/08/17-summary-1024x724.jpg" alt="Linux Installation" width="1024" height="724" srcset="https://techyaz.com/wp-content/uploads/2017/08/17-summary-1024x724.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/17-summary-300x212.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/17-summary-768x543.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/17-summary.jpg 1044w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><br />
Once installation will begin, you will get below progress status bar along with options to set R<strong>oot Password and User Creation.</strong></p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-465" src="http://techyaz.com/wp-content/uploads/2017/08/18-installation-1024x713.jpg" alt="" width="1024" height="713" srcset="https://techyaz.com/wp-content/uploads/2017/08/18-installation-1024x713.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/18-installation-300x209.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/18-installation-768x535.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/18-installation.jpg 1046w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Click on R<strong>oot Password</strong> option of above screen to set the root password. Click on done button once you have entered the password.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-466" src="http://techyaz.com/wp-content/uploads/2017/08/19-root-password-1024x691.jpg" alt="root password" width="1024" height="691" srcset="https://techyaz.com/wp-content/uploads/2017/08/19-root-password-1024x691.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/19-root-password-300x202.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/19-root-password-768x518.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/19-root-password.jpg 1052w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now click on <strong>User Creation</strong> option to create an user. I have created an user named <strong>techyaz</strong> as shown in below screen. Click on done button to proceed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-467" src="http://techyaz.com/wp-content/uploads/2017/08/20-user-password-1024x696.jpg" alt="user creation" width="1024" height="696" srcset="https://techyaz.com/wp-content/uploads/2017/08/20-user-password-1024x696.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/20-user-password-300x204.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/20-user-password-768x522.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/20-user-password.jpg 1062w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now you can see text written in red colour is disappeared from root password and user creation options. Installation is still in process during the user creation. You can see below screenshot.<br />
<img loading="lazy" decoding="async" class="aligncenter size-large wp-image-468" src="http://techyaz.com/wp-content/uploads/2017/08/21-installation-1024x671.jpg" alt="" width="1024" height="671" srcset="https://techyaz.com/wp-content/uploads/2017/08/21-installation-1024x671.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/21-installation-300x197.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/21-installation-768x503.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/21-installation.jpg 1080w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Once installation will be completed below screen will come that will say that installation of Linux 7.3 operating system is completed.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-469" src="http://techyaz.com/wp-content/uploads/2017/08/22-installation-complete-1024x686.jpg" alt="" width="1024" height="686" srcset="https://techyaz.com/wp-content/uploads/2017/08/22-installation-complete-1024x686.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/22-installation-complete-300x201.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/22-installation-complete-768x514.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/22-installation-complete.jpg 1048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now <strong>Reboot</strong> button is enabled and setup also suggested to reboot the server. Click on reboot button to restart the server. Your <strong>Linux installation has completed</strong> here.</p>
<p>Now we will validate the installation by running few commands. Once server will come online post reboot, it will give you below prompt to enter the login credentials.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-470" src="http://techyaz.com/wp-content/uploads/2017/08/23-login-window.jpg" alt="" width="640" height="224" srcset="https://techyaz.com/wp-content/uploads/2017/08/23-login-window.jpg 640w, https://techyaz.com/wp-content/uploads/2017/08/23-login-window-300x105.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p>Enter the user name which you have created during installation. You can see now i have connected to Linux server using user <strong>techyaz</strong>.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-471" src="http://techyaz.com/wp-content/uploads/2017/08/24-login.jpg" alt="" width="771" height="298" srcset="https://techyaz.com/wp-content/uploads/2017/08/24-login.jpg 771w, https://techyaz.com/wp-content/uploads/2017/08/24-login-300x116.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/24-login-768x297.jpg 768w" sizes="auto, (max-width: 771px) 100vw, 771px" /><br />
Now you can check the hostname and RHEL version installed on this machine by executing below commands.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-472" src="http://techyaz.com/wp-content/uploads/2017/08/25-check-hostname-version.jpg" alt="" width="622" height="134" srcset="https://techyaz.com/wp-content/uploads/2017/08/25-check-hostname-version.jpg 622w, https://techyaz.com/wp-content/uploads/2017/08/25-check-hostname-version-300x65.jpg 300w" sizes="auto, (max-width: 622px) 100vw, 622px" /></p>
<p>Now we can see the output which says host name as <strong>SQLServerRHEL</strong> and its version <strong>RHEL 7.3</strong> in above image.</p>
<p>I hope you like this article. You can comment about your questions in comment section. Please follow us on our <strong><a href="https://www.facebook.com/Techyaz/">facebook page</a></strong> and on <strong><a href="https://twitter.com/Tech_yaz">Twitter </a></strong>handle to get latest updates.</p>
<p><span style="color: #800000;"><em><strong>Read More:</strong></em></span></p>
<ul>
<li><strong><a href="https://techyaz.com/rhel/red-hat-enterprise-linux-interview-questions-answers/" target="_blank" rel="noopener">RHEL Interview Questions &amp; Answers</a></strong></li>
<li><strong><a href="https://techyaz.com/ubuntu/install-ubuntu-linux-server-16-04-virtual-machine-step-by-step/" target="_blank" rel="noopener">Step by Step Process to Install Ubuntu Linux 16.04</a></strong></li>
<li><strong><a href="https://techyaz.com/rhel/install-htop-monitor-linux-processes/" target="_blank" rel="noopener">How to Install and Use Htop to Monitor Linux Processes?</a></strong></li>
<li><strong><a href="https://techyaz.com/ubuntu/how-to-install-zabbix-on-ubuntu-server-16-04/" target="_blank" rel="noopener">How to Install Zabbix on Linux Machine?</a></strong></li>
</ul>
<p>The post <a href="https://techyaz.com/rhel/step-step-process-install-red-hat-enterprise-linux/">Step by Step Process to Install Red Hat Enterprise Linux 7.3</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://techyaz.com/rhel/step-step-process-install-red-hat-enterprise-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create Virtual Machine on your PC?</title>
		<link>https://techyaz.com/sql-server/sql-server-on-linux/create-virtual-machine-pc/</link>
					<comments>https://techyaz.com/sql-server/sql-server-on-linux/create-virtual-machine-pc/#respond</comments>
		
		<dc:creator><![CDATA[Manvendra Deo Singh]]></dc:creator>
		<pubDate>Mon, 14 Aug 2017 06:48:09 +0000</pubDate>
				<category><![CDATA[SQL Server ON Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[SQL Server On Linux]]></category>
		<category><![CDATA[Virtual Machine]]></category>
		<category><![CDATA[Vmware]]></category>
		<guid isPermaLink="false">http://techyaz.com/?p=436</guid>

					<description><![CDATA[<p>Are you struggling to setup a server lab for your requirement? We can create multiple systems running with different flavour of operating systems in our computer or laptop. You don&#8217;t need to buy additional systems for these configurations. Here we&#46;&#46;&#46;</p>
<p>The post <a href="https://techyaz.com/sql-server/sql-server-on-linux/create-virtual-machine-pc/">How to Create Virtual Machine on your PC?</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Are you struggling to setup a server lab for your requirement? We can create multiple systems running with different flavour of operating systems in our computer or laptop. You don&#8217;t need to buy additional systems for these configurations. Here we will discuss how to setup virtual machines on your local host to learn new technologies. We will use VMware workstation application to deploy multiple operating systems on local host that will look like a separate server/ operation system for your testings or learnings.</p>
<h3><span style="color: #000080;"><strong>Install VMware Workstation</strong></span></h3>
<p>VMware workstation is the industry standard for running multiple operating systems as virtual machines on a single PC. Thousands of IT professionals, developers and businesses use Workstation Pro to be more agile, more productive and more secure.</p>
<p>First task is to install VMware workstation on your PC or laptop post downloading it from <a href="https://my.vmware.com/web/vmware/details?productId=462&amp;downloadGroup=WKST-1112-WIN" target="_blank" rel="noopener">VMware website</a>. Once you install VMware workstation on your system, you can see the vmware workstation shortcut icon on your desktop.</p>
<h5><span style="color: #000080;"><strong>Create a Linux Virtual Machine</strong></span></h5>
<p>As we are creating a Linux machine so we should have the correct setup file of RedHat Linux. Copy RedHat Linux setup file to your machine and if you don&#8217;t have this setup file you can download it from <a href="https://access.redhat.com/downloads/">RedHat Website</a>. Make sure to download RHEL binary DVD ISO file. If you download some other file you might face issue during installation.</p>
<p>Now you have installed VMware workstation and downloaded Linux setup file successfully. Next step is to create a Linux virtual machine. Double click on the vmware workstation shortcut icon which is created on your desktop during installation to launch it. You will see below screen to proceed.<br />
<img loading="lazy" decoding="async" class="aligncenter size-large wp-image-438" src="http://techyaz.com/wp-content/uploads/2017/08/2-create-new-VM-1024x294.jpg" alt="create Virtual machine" width="1024" height="294" srcset="https://techyaz.com/wp-content/uploads/2017/08/2-create-new-VM-1024x294.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/2-create-new-VM-300x86.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/2-create-new-VM-768x221.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/2-create-new-VM.jpg 1434w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now click on &#8220;Create a New Virtual Machine&#8221; option which is showing in right side pane of above screen. You will get a welcome window named &#8220;New Virtual Machine Wizard&#8221; to proceed. There are two configuration options on this page. Don&#8217;t make any change here and go with the default option which is &#8220;Typical&#8221;.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-439" src="http://techyaz.com/wp-content/uploads/2017/08/3-welcome-wizard.jpg" alt="Welcome Wizard" width="518" height="501" srcset="https://techyaz.com/wp-content/uploads/2017/08/3-welcome-wizard.jpg 518w, https://techyaz.com/wp-content/uploads/2017/08/3-welcome-wizard-300x290.jpg 300w" sizes="auto, (max-width: 518px) 100vw, 518px" /><br />
Click on next button to proceed. Next window is for choosing your operating system for this Linux machine. Here we will select the Linux setup ISO file which we have downloaded in above step along with the full path. You should select your identified operating system setup file here if you want to install some other operating system. You can click on browse button to choose the correct path.</p>
<p>We have also an option to install operating system later post creating the virtual machine. If you want to install your OS later you can select 3rd option of this page. As we have downloaded the setup file of RHEL so we will choose and proceed with 2nd option. Once you select the setup file click on next button to proceed.<br />
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-440" src="http://techyaz.com/wp-content/uploads/2017/08/4-browse-RHEL-ISO.jpg" alt="" width="520" height="500" srcset="https://techyaz.com/wp-content/uploads/2017/08/4-browse-RHEL-ISO.jpg 520w, https://techyaz.com/wp-content/uploads/2017/08/4-browse-RHEL-ISO-300x288.jpg 300w" sizes="auto, (max-width: 520px) 100vw, 520px" /></p>
<p>Next screen will come to configure the name of this new virtual machine and the location where you want to save or create this machine. Choose a name as per your convenience and browse the location where you want to create this machine on local system. Make sure you should have enough disk space where you are creating this virtual machine.<br />
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-441" src="http://techyaz.com/wp-content/uploads/2017/08/5-Name-location.jpg" alt="" width="519" height="494" srcset="https://techyaz.com/wp-content/uploads/2017/08/5-Name-location.jpg 519w, https://techyaz.com/wp-content/uploads/2017/08/5-Name-location-300x286.jpg 300w" sizes="auto, (max-width: 519px) 100vw, 519px" /><br />
Once you configure the name and location of this virtual machine in above step, next step to specify the disk size. As i am creating it for my server lab so i will go with default value which is 20GB. Make sure to have that much space on your drive where you have created this virtual machine in above step.<br />
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-442" src="http://techyaz.com/wp-content/uploads/2017/08/6-disk.jpg" alt="disk configuration" width="516" height="492" srcset="https://techyaz.com/wp-content/uploads/2017/08/6-disk.jpg 516w, https://techyaz.com/wp-content/uploads/2017/08/6-disk-300x286.jpg 300w" sizes="auto, (max-width: 516px) 100vw, 516px" /></p>
<p>Next window will be the final screen of this setup. Here you can verify the details which you are using to create the Linux virtual machine.<br />
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-443" src="http://techyaz.com/wp-content/uploads/2017/08/7-finalwindow.jpg" alt="" width="516" height="498" srcset="https://techyaz.com/wp-content/uploads/2017/08/7-finalwindow.jpg 516w, https://techyaz.com/wp-content/uploads/2017/08/7-finalwindow-300x290.jpg 300w" sizes="auto, (max-width: 516px) 100vw, 516px" /><br />
We can see there is only 1GB of memory allocated to this machine. If you want to change such configuration before creating the Linux virtual machine then click on &#8220;Customize Hardware&#8230;&#8221; to alter the changes. Change the value to allocated memory and CPU as per your need. You can also make changes of other configurational parameters. Click close once you are done with your changes.<br />
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-444" src="http://techyaz.com/wp-content/uploads/2017/08/8-change-memory.jpg" alt="" width="780" height="727" srcset="https://techyaz.com/wp-content/uploads/2017/08/8-change-memory.jpg 780w, https://techyaz.com/wp-content/uploads/2017/08/8-change-memory-300x280.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/8-change-memory-768x716.jpg 768w" sizes="auto, (max-width: 780px) 100vw, 780px" /></p>
<p>Now you can see memory is showing the new value along with the CPU which i changed from 1 to 2. you can compare below screen with the one showing above. Now click on &#8220;Finish&#8230;&#8221; button to create your Linux virtual machine. Once you click on finish button, Linux virtual machine will be created and <a href="http://techyaz.com/sql-server/sql-server-on-linux/step-step-process-install-red-hat-enterprise-linux/">Linux installation</a> will be proceeded. If you are not aware of Linux installation and want to learn <a href="http://www.techyaz.com/sql-server/sql-server-on-linux/step-step-process-install-red-hat-enterprise-linux/">step by step process to install Red Hat Linux</a> on this server you must read attached link.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-445" src="http://techyaz.com/wp-content/uploads/2017/08/10-1024x731.jpg" alt="" width="1024" height="731" srcset="https://techyaz.com/wp-content/uploads/2017/08/10-1024x731.jpg 1024w, https://techyaz.com/wp-content/uploads/2017/08/10-300x214.jpg 300w, https://techyaz.com/wp-content/uploads/2017/08/10-768x548.jpg 768w, https://techyaz.com/wp-content/uploads/2017/08/10.jpg 1152w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Now you can create multiple virtual machines running on your computer. Follow the same process if you want to create another servers. I hope you like this article. Please follow us on our <a href="https://www.facebook.com/Techyaz/">facebook page</a> and on <a href="https://twitter.com/Tech_yaz">Twitter </a>handle to get latest updates.</p>
<p><em><strong><span style="color: #800000;">Read More:</span></strong></em></p>
<ul>
<li><strong><a href="https://techyaz.com/sql-server/sql-server-on-linux/step-step-process-install-red-hat-enterprise-linux/" target="_blank" rel="noopener">Step by Step Process to Install RHEL 7.3</a></strong></li>
<li><strong><a href="https://techyaz.com/ubuntu/install-ubuntu-linux-server-16-04-virtual-machine-step-by-step/" target="_blank" rel="noopener">Step by Step Process to Install Ubuntu Linux 16.04</a></strong></li>
<li><strong><a href="https://techyaz.com/debian/how-to-install-debian-9-stretch/" target="_blank" rel="noopener">How to Install Debian 9 Stretch?</a></strong></li>
</ul>
<p>The post <a href="https://techyaz.com/sql-server/sql-server-on-linux/create-virtual-machine-pc/">How to Create Virtual Machine on your PC?</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://techyaz.com/sql-server/sql-server-on-linux/create-virtual-machine-pc/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
