<?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>Tuts4Tech &#187; remote</title>
	<atom:link href="http://tuts4tech.net/tag/remote/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Tue, 04 May 2010 20:35:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Enabling SSH on ESXI</title>
		<link>http://tuts4tech.net/2009/07/19/enabling-ssh-on-esxi/</link>
		<comments>http://tuts4tech.net/2009/07/19/enabling-ssh-on-esxi/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 23:01:29 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=507</guid>
		<description><![CDATA[On the console screen press ctrl+alt+f1 Type in unsupported then press enter and then type in your root password, You should know have a console window like the one below Run the following command Press the i key and then use the arrow keys until you come down to the line that beings with #ssh [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>On the console screen press ctrl+alt+f1<br /><img src="http://tuts4tech.net/wp-content/uploads/2009/07/console.jpg" alt="console" title="console" width="500" height="312" class="aligncenter size-full wp-image-509" /></li>
<p></p>
<li>Type in unsupported then press enter and then type in your root password, You should know have a console window like the one below<br /><img src="http://tuts4tech.net/wp-content/uploads/2009/07/loggedin.jpg" alt="loggedin" title="loggedin" width="500" height="312" class="aligncenter size-full wp-image-510" /></li>
<li>Run the following command
<pre class="brush: bash; title: ; notranslate">vi /etc/inetd.config</pre>
<p>Press the i key and then use the arrow keys until you come down to the line that beings with #ssh remove # then press the esc key followed by :wq</li>
<li>Finally we need to restart inetd run ps aux | grep 'inetd' note down its pid then run kill -HUP pid</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/19/enabling-ssh-on-esxi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Serial Console</title>
		<link>http://tuts4tech.net/2009/06/01/enable-serial-console/</link>
		<comments>http://tuts4tech.net/2009/06/01/enable-serial-console/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 11:31:07 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bios]]></category>
		<category><![CDATA[hyperterminal]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[null modem cable]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[serial console]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://tuts4tech.co.cc/?p=218</guid>
		<description><![CDATA[This tutorial will show you how to set up a serial console on a Linux system, and connect to it via a null modem cable. This is quite useful as it allows you to easily get a console on the system if there are any problems with it and you cannot access it via ssh [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to set up a serial console on a Linux system, and connect to it via a null modem cable. This is quite useful as it allows you to easily get a console on the system if there are any problems with it and you cannot access it via ssh</p>
<p>Check that you have a serial port and it is enabled in your bios</p>
<pre class="brush: plain; title: ; notranslate">dmesg | grep tty</pre>
<p></p>
<pre class="brush: plain; title: ; notranslate">root@duffys-place:~# dmesg | grep tty
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A</pre>
<h3>Configuring Lilo</h3>
<ol>
<li>open up /etc/lilo.conf
<pre class="brush: plain; title: ; notranslate">nano /etc/lilo.conf</pre>
</li>
<li>Find the the serial line and change it to the following:
<pre class="brush: plain; title: ; notranslate">serial=0,38400n8</pre>
</li>
<li>Now edit your kernel settings so they include the line
<pre class="brush: plain; title: ; notranslate">append=&quot;console=ttyS0,38400n8&quot;</pre>
<p>
It should look something like this</p>
<pre class="brush: plain; title: ; notranslate">default=Linux
image=/vmlinuz
        label=Linux
        append = &quot;console=ttyS0,38400n8&quot;
        initrd=/initrd.img</pre>
</li>
<li>Run /sbin/lilo to apply the changes</li>
</ol>
<h3>Enable Logins</h3>
<ol>
<li>Open up /etc/inittab
<pre class="brush: plain; title: ; notranslate">nano /etc/inittab</pre>
<p>
and add the following line</p>
<pre class="brush: plain; title: ; notranslate">T0:2345:respawn:/sbin/getty -L ttyS0 38400 vt100</pre>
</li>
</ol>
<h3>Testing It</h3>
<ol>
<li>Plug one end of your null modem cable into your server and the other into your computer</li>
<li>Open your terminal client i used putty hyperterminal works fine too</li>
<li>Use the following settings:
<pre class="brush: plain; title: ; notranslate">Port: COM1 or COM2(what ever your serial port is)
Bits per second: 38400
Data bits: 8
Parity: None
Stop bits: 1
Flow control: None</pre>
</li>
<li>You should be able to see your console. If you have any issues feel free to leave a comment</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/06/01/enable-serial-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

