<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: 2.11 BSD	</title>
	<atom:link href="https://virtuallyfun.com/2010/08/10/2-11-bsd/feed/" rel="self" type="application/rss+xml" />
	<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/</link>
	<description>Fun with Virtualization</description>
	<lastBuildDate>Fri, 26 Jan 2024 11:25:23 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: nikolar		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-351098</link>

		<dc:creator><![CDATA[nikolar]]></dc:creator>
		<pubDate>Fri, 26 Jan 2024 11:25:23 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-351098</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-351021&quot;&gt;neozeed&lt;/a&gt;.

Yeah about 250 lines of C, feel free to try it :)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-351021">neozeed</a>.</p>
<p>Yeah about 250 lines of C, feel free to try it 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: neozeed		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-351021</link>

		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Thu, 25 Jan 2024 19:20:54 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-351021</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-351018&quot;&gt;nikolar&lt;/a&gt;.

Looks very small! no overlays!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-351018">nikolar</a>.</p>
<p>Looks very small! no overlays!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nikolar		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-351018</link>

		<dc:creator><![CDATA[nikolar]]></dc:creator>
		<pubDate>Thu, 25 Jan 2024 19:03:01 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-351018</guid>

					<description><![CDATA[I got an irc client working on bsd 2.11 :)
https://github.com/minnerlas/sic]]></description>
			<content:encoded><![CDATA[<p>I got an irc client working on bsd 2.11 🙂<br />
<a href="https://github.com/minnerlas/sic" rel="nofollow ugc">https://github.com/minnerlas/sic</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: neozeed		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-217483</link>

		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Tue, 23 Jul 2019 07:00:16 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-217483</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-217463&quot;&gt;TangentDelta&lt;/a&gt;.

Nothing like taking the law into your own hands!  Very nice!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-217463">TangentDelta</a>.</p>
<p>Nothing like taking the law into your own hands!  Very nice!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: TangentDelta		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-217463</link>

		<dc:creator><![CDATA[TangentDelta]]></dc:creator>
		<pubDate>Mon, 22 Jul 2019 16:50:16 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-217463</guid>

					<description><![CDATA[I searched everywhere for an IRC client that would actually compile on a PDP-11, but kept running into issues with the 64K Program/Data limitation of the architecture. The solution to the issue, of course, was to write my own client. 

I wrote a VERY minimal IRC client that runs on 2.11 BSD, based on SIC. I just got around to putting it onto Github.
https://github.com/TangentDelta/PDP11IRC

I have not yet implemented a command line argument parser, so the nick and server are hard-coded into the source at this time, and must be changed. Building it is as simple as running &quot;cc irc.c -o irc&quot;.]]></description>
			<content:encoded><![CDATA[<p>I searched everywhere for an IRC client that would actually compile on a PDP-11, but kept running into issues with the 64K Program/Data limitation of the architecture. The solution to the issue, of course, was to write my own client. </p>
<p>I wrote a VERY minimal IRC client that runs on 2.11 BSD, based on SIC. I just got around to putting it onto Github.<br />
<a href="https://github.com/TangentDelta/PDP11IRC" rel="nofollow ugc">https://github.com/TangentDelta/PDP11IRC</a></p>
<p>I have not yet implemented a command line argument parser, so the nick and server are hard-coded into the source at this time, and must be changed. Building it is as simple as running &#8220;cc irc.c -o irc&#8221;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: S. Reiche		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-4783</link>

		<dc:creator><![CDATA[S. Reiche]]></dc:creator>
		<pubDate>Tue, 20 Dec 2011 13:36:58 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-4783</guid>

					<description><![CDATA[About Mr. S. Schultz. Do you maybe know of somewhere he might hang out, next to ClassicCmp?]]></description>
			<content:encoded><![CDATA[<p>About Mr. S. Schultz. Do you maybe know of somewhere he might hang out, next to ClassicCmp?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Neozeed		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-277</link>

		<dc:creator><![CDATA[Neozeed]]></dc:creator>
		<pubDate>Sun, 15 Aug 2010 22:05:16 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-277</guid>

					<description><![CDATA[email me (@gmail.com) and I&#039;ll give you a link I found....]]></description>
			<content:encoded><![CDATA[<p>email me (@gmail.com) and I&#39;ll give you a link I found&#8230;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Neozeed		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-276</link>

		<dc:creator><![CDATA[Neozeed]]></dc:creator>
		<pubDate>Sun, 15 Aug 2010 22:00:16 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-276</guid>

					<description><![CDATA[I&#039;m sure I&#039;ve seen it somewhere... after the end of the CSRG vs ATT lawsuit 32v wasn&#039;t encumbered anymore so all of that stuff is &#039;free&#039;.]]></description>
			<content:encoded><![CDATA[<p>I&#39;m sure I&#39;ve seen it somewhere&#8230; after the end of the CSRG vs ATT lawsuit 32v wasn&#39;t encumbered anymore so all of that stuff is &#39;free&#39;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: casaubon		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-275</link>

		<dc:creator><![CDATA[casaubon]]></dc:creator>
		<pubDate>Sun, 15 Aug 2010 21:58:07 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-275</guid>

					<description><![CDATA[i don&#039;t know if this is piracy ot not (personally, i like to think of everything older than 10 years as abandonware), so feel free to yell at me if you think i should shut up, but..&lt;br /&gt;&lt;br /&gt;do you know where to get the 386BSD 1.0 CD-ROM? i&#039;d prefer not having to pay for it (it was free back then, IIRC), but hey, it&#039;s worth a few dollars/euros if i can try it out. :)]]></description>
			<content:encoded><![CDATA[<p>i don&#39;t know if this is piracy ot not (personally, i like to think of everything older than 10 years as abandonware), so feel free to yell at me if you think i should shut up, but..</p>
<p>do you know where to get the 386BSD 1.0 CD-ROM? i&#39;d prefer not having to pay for it (it was free back then, IIRC), but hey, it&#39;s worth a few dollars/euros if i can try it out. 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Neozeed		</title>
		<link>https://virtuallyfun.com/2010/08/10/2-11-bsd/comment-page-1/#comment-272</link>

		<dc:creator><![CDATA[Neozeed]]></dc:creator>
		<pubDate>Fri, 13 Aug 2010 21:22:22 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/?p=270#comment-272</guid>

					<description><![CDATA[Well the 2.11 BSD stuff is really 4.3 backported... so really what you want is 4.3 BSD for the i386, which basically is 386 BSD....&lt;br /&gt;&lt;br /&gt;If you have lots of patience, and a billion floppies you can do it.....]]></description>
			<content:encoded><![CDATA[<p>Well the 2.11 BSD stuff is really 4.3 backported&#8230; so really what you want is 4.3 BSD for the i386, which basically is 386 BSD&#8230;.</p>
<p>If you have lots of patience, and a billion floppies you can do it&#8230;..</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
