<?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>blog.lundscape.com &#187; Inetd</title>
	<atom:link href="http://blog.lundscape.com/tag/inetd/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lundscape.com</link>
	<description>The Linux Journey</description>
	<lastBuildDate>Thu, 15 Apr 2010 20:06:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finger Daemon on Ubuntu</title>
		<link>http://blog.lundscape.com/2009/05/finger-daemon-on-ubuntu/</link>
		<comments>http://blog.lundscape.com/2009/05/finger-daemon-on-ubuntu/#comments</comments>
		<pubDate>Tue, 05 May 2009 01:18:58 +0000</pubDate>
		<dc:creator>Zachary Lund</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Finger]]></category>
		<category><![CDATA[Fingerd]]></category>
		<category><![CDATA[Inetd]]></category>

		<guid isPermaLink="false">http://blog.lundscape.com/?p=137</guid>
		<description><![CDATA[Since I set up my Ubuntu servers and desktops at home I have wanted to be able to remotely finger the different computers on my network. By default, a remote finger request will look like this:
zac@dakara:~$ finger @athos
[athos.lund]
finger: connect: Connection refused
The solution is to install the required packages:
apt-get install inetutils-inetd fingerd
Then start the Internet super [...]]]></description>
			<content:encoded><![CDATA[<p>Since I set up my Ubuntu servers and desktops at home I have wanted to be able to remotely finger the different computers on my network. By default, a remote finger request will look like this:</p>
<pre>zac@dakara:~$ finger @athos
[athos.lund]
finger: connect: Connection refused</pre>
<p>The solution is to install the required packages:</p>
<pre>apt-get install inetutils-inetd fingerd</pre>
<p>Then start the Internet super server:</p>
<pre>/etc/init.d/inetutils-inetd start</pre>
<p>According to the <a href="http://packages.ubuntu.com/hardy/inetutils-inetd">package details</a>: &#8220;Inetd is the daemon that listens on various TCP and UDP ports and spawns programs that can&#8217;t or won&#8217;t do it for themselves.&#8221;</p>
<p>Now a remote finger request will look like:</p>
<pre>zac@dakara:~$ finger @athos
[athos.lund]
Login     Name           Tty      Idle  Login Time   Office     Office Phone
zac       Zachary Lund   pts/2          May  4 20:12 (dakara.lund)</pre>
<p>The contents of the file /etc/inetd.conf show what is necessary for finger:</p>
<pre>finger		stream	tcp	nowait	nobody	/usr/sbin/tcpd	/usr/sbin/in.fingerd</pre>
<p>It simply takes an incoming finger request and spawns the appropriate process.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lundscape.com/2009/05/finger-daemon-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
