<?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>phrog blog &#187; instal notes</title>
	<atom:link href="http://blog.phrog.org/category/instal-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.phrog.org</link>
	<description>Let it snow, let it snow, let it SNOW!</description>
	<lastBuildDate>Thu, 01 Dec 2011 19:07:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Black Flickering Lines in Mplayer?</title>
		<link>http://blog.phrog.org/2010/02/08/black-flickering-lines-in-mplayer/</link>
		<comments>http://blog.phrog.org/2010/02/08/black-flickering-lines-in-mplayer/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:37:35 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/?p=246</guid>
		<description><![CDATA[Today I made the mistake of upgrading my girlfriends LinuxMint on her Dell mini 10. After a new kernel was installed the video went to shit. It uses the Intel GMA500 &#8220;Poulsbo&#8221; video hardware. I thought it would improve performance to do the entire upgrade like this one here. However the upgrade just made everything [...]]]></description>
			<content:encoded><![CDATA[<p>Today I made the mistake of upgrading my girlfriends LinuxMint on her Dell mini 10. After a new kernel was installed the video went to shit. It uses the Intel GMA500 &#8220;Poulsbo&#8221; video hardware. </p>
<p>I thought it would improve performance to do the entire upgrade like this one <a href="https://wiki.ubuntu.com/HardwareSupportComponentsVideoCardsPoulsbo/">here</a>. However the upgrade just made everything shitty. Soon after the upgrade I attempted to playback a nice big video with mplayer and I got a shitty choppy playback and a shitty black flickering bar towards the lower part of the playback. So, I googled for a few hours only to find a ton of others bitching about this driver and how much Intel sucks for this. After readin about all i could fucking stand about the psb driver, one of my old i810 video tips came to mind. Appending &#8220;mem=&#8221; to your kernel boot line to specify how much memory the kernel uses, Leaving some for the video system.</p>
<p>In your grub/menu.lst find your kernel line:</p>
<p><code>kernel /boot/vmlinuz-2.6.31-16-generic root=/dev/sda5 ro quiet splash</code></p>
<p>Add &#8220;mem=SOMETHING LESS THAN YOUR ACTUAL MEMORY&#8221;</p>
<p><code>kernel /boot/vmlinuz-2.6.31-16-generic root=/dev/sda5 ro quiet splash mem=1000mb</code></p>
<p>Her mini 10 only has a gig of memory so I am using &#8220;mem=1000&#8243;, thats in Megabytes and there is 1024 of them in a Gig of ram so this should leave me 24MB&#8217;s for video.. if it needs it.</p>
<p>Wouldn&#8217;t ya know it, It worked. <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Hope this stupid post helps somebody out. Please share your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2010/02/08/black-flickering-lines-in-mplayer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mplayer output to the TV</title>
		<link>http://blog.phrog.org/2009/06/18/mplayer-output-to-the-tv/</link>
		<comments>http://blog.phrog.org/2009/06/18/mplayer-output-to-the-tv/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 19:06:23 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/?p=240</guid>
		<description><![CDATA[Alright, you have a Linux server connected to your television. You don&#8217;t want to have to plug a keyboard into it to play movies, right? You most likely have some other computer on the network you would like to launch mplayer from and then have the output to the television. Well thanks to xservers we [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, you have a Linux server connected to your television. You don&#8217;t want to have to plug a keyboard into it to play movies, right? You most likely have some other computer on the network you would like to launch mplayer from and then have the output to the television. Well thanks to xservers we can take care of this. <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Log into your server and create a /usr/local/bin/mplaytv script like this:</p>
<p><code><br />
#!/bin/bash<br />
DISPLAY=:0.0 mplayer -fs -zoom "$1"<br />
</code></p>
<p>Make sure you make it executable.</p>
<p><code>chmod 755  /usr/local/bin/mplaytv</code></p>
<p>Now you can play something with the new script and the output will go to the xserver attached to the TV.<br />
Make sure you run the mplaytv script as the user logged into the xsession on the server, or you will get xsession errors. </p>
<p><code>mplaytv Some_Video.avi</code> </p>
<p>You should see some activity in your shell and mplayer controls are attached to that shell, So keyboard shortcuts also work remotely. <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Linux Media, Done.<br />
Simple ain&#8217;t it?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2009/06/18/mplayer-output-to-the-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>irc with irssi and a blowjob</title>
		<link>http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/</link>
		<comments>http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 18:20:51 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[golf]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/</guid>
		<description><![CDATA[Some install notes, thats all If you don&#8217;t know what irc is or irssi or blowjob.pl do not waste your time trying to understand this. Move along.. Don&#8217;t Waste your time. apt-get install irssi irssi-scripts Try to load blowjob in irssi /load blowjob.pl poop, im missing something. 11:06 ,--[ScriptAssist] 11:06 &#124; The perl module Crypt::CBC [...]]]></description>
			<content:encoded><![CDATA[<p>Some install notes, thats all <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>If you don&#8217;t know what irc is or irssi or blowjob.pl do not waste your time trying to understand this. Move along.. Don&#8217;t Waste your time.</em></p>
<p><code>apt-get install irssi irssi-scripts</code></p>
<p>Try to load blowjob in irssi</p>
<p><code>/load blowjob.pl</code></p>
<p>poop, im missing something.</p>
<p><code><br />
11:06 ,--[ScriptAssist]<br />
11:06 | The perl module Crypt::CBC is missing on your system.<br />
11:06 | Please ask your administrator about it.<br />
11:06 | You can also check CPAN via '/scriptassist cpan Crypt::CBC'.<br />
11:06 `--<Crypt::CBC>-><br />
</code></p>
<p>Guessing I need libcrypt-cbc-perl and im thinking, libcrypt-blowfish-perl</p>
<p><code>apt-get install libcrypt-cbc-perl libcrypt-blowfish-perl</code></p>
<p>Next load blowfish in irssi</p>
<p><code>/load blowjob.pl</code></p>
<p>Loaded <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Set a test key with someone your irc&#8217;ing with, and blow something.</p>
<p><code>/setkey foobar</code><br />
<code>/blow yo testing</code><br />
<code>“Ciphertext does not begin with a valid header for ’salt’</code></p>
<p>Shit still not working! Seems the script is old. It needed to be updated for the newer Crypt:CBC. I changed a couple lines and came up with this <a href='http://blog.phrog.org/wp-content/uploads/2008/02/blowjob.pl' title='Fixed blowjob.pl'><strong>fixed blowjob.pl</strong></a></p>
<p>Working now!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2008/02/01/irc-with-irssi-and-a-blowjob/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Anonymous browsing with tor and privoxy for windows</title>
		<link>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-windows/</link>
		<comments>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-windows/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 23:48:09 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-windows/</guid>
		<description><![CDATA[Someone asked me this morning about browsing the web and masking the IP of the origin. The most effective way to do this is with tor and privoxy. These are my notes installing this stuff on windows xp. This is about the most simple thing. Step 1 download and install Tor Download from our kick [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
Someone asked me this morning about browsing the web and masking the IP of the origin. The most effective way to do this is with tor and privoxy. These are my notes installing this stuff on windows xp.</p></blockquote>
<p>This is about the most simple thing.</p>
<p><strong>Step 1</strong> download and install Tor</p>
<p>Download from our kick ass friends at <a href="http://eff.org">EFF</a> the Tor &#038; Privoxy &#038; Vidalia bundle on this <a href="http://tor.eff.org/download.html.en">page</a>. Run the setup and hit OK a few times.. choose the defaults.</p>
<p><strong>Step 2</strong> Get the Tor Button</p>
<blockquote><p>Well I&#8217;m assuming that if you are reading my blog you already are using firefox. If you are not using firefox, go away.. your to stupid to figure this out. or <a href="http://www.mozilla.com/firefox/">get firefox</a> then come back and read more.
</p></blockquote>
<p>OK then, get the Tor Button firefox extension from <a href="https://addons.mozilla.org/en-US/firefox/addon/2275">here</a>. Install it and restart firefox. You should notice a new indicator on the status bar. click it to change it to &#8220;Tor Enabled&#8221;</p>
<p><strong>Step 3</strong> Test</p>
<p>Visit whatismyip.com or similar and confirm the IP result is not your own.</p>
<p>done.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Anonymous browsing with tor and privoxy for linux</title>
		<link>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-linux/</link>
		<comments>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-linux/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 19:46:13 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[freedom]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy/</guid>
		<description><![CDATA[Someone asked me this morning about browsing the web and masking the IP of the origin. The most effective way to do this is with tor and privoxy. These are my notes on setting this up with a debian or ubuntu linux desktop. Step 1 Get the applications. apt-get install tor privoxy Step 2 Configure [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked me this morning about browsing the web and masking the IP of the origin. The most effective way to do this is with <a href="http://tor.eff.org">tor</a> and <a href="http://www.privoxy.org">privoxy</a>. These are my notes on setting this up with a debian or ubuntu linux desktop.<br />
<span id="more-94"></span></p>
<p><strong>Step 1</strong> Get the applications.<br />
<code>apt-get install tor privoxy</code></p>
<p><strong>Step 2</strong> Configure privoxy to use tor.<br />
<code> echo "forward-socks4a / localhost:9050 ." >> /etc/privoxy/config<br />
/etc/init.d/privoxy restart</code></p>
<p><strong>Step 3</strong> Configure your browser to use the proxy.</p>
<p>At this point you should have a tor enabled socks4 proxy server running on localhost port 8118. Configure your browser to use the proxy in it&#8217;s preferences. </p>
<p>If your using Firefox I would suggest getting the <a href="http://mozmonkey.com/switchproxy/">SwitchProxy</a> extension and using it to manage the different proxies you have access to. If you don&#8217;t have any other proxies to manage then I would recommend the <a href="https://torbutton.torproject.org/">Tor Button</a> extension instead, its very simple.</p>
<p><strong>Step 4</strong> Test</p>
<p>Visit <a href="http://whatismyip.com">whatismyip.com</a> or similar and confirm the IP result is not your own.</p>
<p>done.</p>
<p>I soon will be forced to do this in windows as well, I will post my results.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/10/19/anonymous-browsing-with-tor-and-privoxy-for-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ampache install notes</title>
		<link>http://blog.phrog.org/2007/10/14/ampache-install-notes/</link>
		<comments>http://blog.phrog.org/2007/10/14/ampache-install-notes/#comments</comments>
		<pubDate>Sun, 14 Oct 2007 20:29:12 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/10/14/ampache-install-notes/</guid>
		<description><![CDATA[Today i&#8217;m installing ampache with a nerd in training on his ubuntu laptop heres the notes install required stuff sudo apt-get install apache2 php5 phpmyadmin mysql-server Go to http://localhost to see if &#8220;It Works!&#8221; if so then apache2 is running. Then try http://localhost/phpmyadmin if it loads then ya have php5 working with apache2! requirements done. [...]]]></description>
			<content:encoded><![CDATA[<p>Today i&#8217;m installing ampache with a nerd in training on his ubuntu laptop heres the notes</p>
<p>install required stuff<br />
<code>sudo apt-get install apache2 php5 phpmyadmin mysql-server</code><br />
Go to http://localhost to see if &#8220;It Works!&#8221; if so then apache2 is running.<br />
Then try http://localhost/phpmyadmin if it loads then ya have php5 working with apache2! requirements done. Let&#8217;s move on</p>
<p><span id="more-93"></span></p>
<p>make your web folders<br />
<code>mkdir ~/www<br />
mkdir ~/www/ampache<br />
cd ~/www/ampache/</code></p>
<p>get subversion<br />
<code>sudo apt-get install subversion</code></p>
<p>get ampache<br />
<code>svn checkout https://svn.ampache.org/trunk</code></p>
<p>set up a virtual host<br />
<code>jed /etc/apache2/sites-available/ampache<br />
</code><br />
create a virtualhost  similar to this and save</p>
<p><code><br />
<VirtualHost *><br />
   ServerAdmin webmaster@ladybug<br />
   DocumentRoot /home/eek/www/ampache/svn.ampache.org/trunk<br />
Options Indexes<br />
ServerName ladybug<br />
   ErrorLog /home/eek/www/ampache/svn.ampache.org/ampache-error_log<br />
   CustomLog /home/eek/www/ampache/svn.ampache.org/ampache-access_log common<br />
</VirtualHost></code></p>
<p>restart apache<br />
<code>apache2ctl restart</code></p>
<p>edit your /etc/hosts to include &#8220;ladybug&#8221;<br />
<code>echo "127.0.0.1 ladybug" >> /etc/hosts</code></p>
<p>goto http://ladybug in your browser if you get an ampache install screen..<br />
You will need to have created a mysql user and database with http://your-ip/phpmyadmin</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/10/14/ampache-install-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pseudonym email for windows with JBN2 and PGP</title>
		<link>http://blog.phrog.org/2007/10/01/pseudonym-email-for-windows-with-jbn2-and-pgp/</link>
		<comments>http://blog.phrog.org/2007/10/01/pseudonym-email-for-windows-with-jbn2-and-pgp/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 17:12:05 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[freedom]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[remailer]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/10/01/pseudonym-email-for-windows-with-jbn2-and-pgp-install-notes/</guid>
		<description><![CDATA[These are my notes on installing the required software to utilize a pseudo anonymous remailer or &#8220;Nymserver&#8221; using Windows XP and available software. These are really just my install notes, however I&#8217;m posting them to my blog in case someone might find it useful. Everything you need to get this up and running is available [...]]]></description>
			<content:encoded><![CDATA[<p>These are my notes on installing the required software to utilize a pseudo anonymous remailer or &#8220;Nymserver&#8221; using Windows XP and available software. These are really just my install notes, however I&#8217;m posting them to my blog in case someone might find it useful. </p>
<p>Everything you need to get this up and running is available for download from <a href="http://www.panta-rhei.eu.org/downloads/">panta</a> you will need to grab <a href="http://www.panta-rhei.eu.org/downloads/PGP/pgp658ckt08.zip">pgp v658<a>,<a href="http://www.panta-rhei.eu.org/downloads/Mixmaster/mix204b46.zip">Mixmaster</a> and <a href="http://www.panta-rhei.eu.org/downloads/JBN/original%20JBN/setup_jbn214.exe">JBN2</a> at a minimum. Optionally you can grab the very useful <a href="http://www.panta-rhei.eu.org/downloads/JBN/JBN%20mod%20(requires%20orig.JBN)/JBN2-mod-2005-08-17.zip">panta mod</a> for JBN.<br />
<span id="more-91"></span><br />
<strong>Step 1 &#8211; Choose A Nymserver</strong><br />
For this example I will be using <a href="http://borked.net">borked.net</a>, mainly because I want a cool nym.borked.net email address. A list of others is maintained on the <a href="http://www.panta-rhei.eu.org/pantawiki/NymServers">panta wiki</a>.</p>
<p><strong>Step 2 &#8211; Choose An Address</strong><br />
I have to determine if the email address I want is available, to do so I sent a blank email to <a href="mailto:list@nym.borked.net">list@nym.borked.net</a> and then waited for a reply with a list of unavailable addresses. I got impatient waiting on the reply to arrive so I went to a command window and used finger instead, like this:</p>
<p><code>FINGER list@nym.borked.net</code</p>
<p>This spit out a list of users and from this I was able to determine my desired name was available.</p>
<p><strong>Step 3 - Install pgp</strong><br />
I chose to only install "PGP Key Management" and "PGP Command Line" components because I believe this is all that is required. The install asked for a reboot and so I gave it one. Then I noticed after the reboot a new icon on the taskbar, by the clock.</p>
<p><strong>Step 4 - Make Keys</strong><br />
Clicking on my shiny new "PGPtray" icon and then "PGPkeys" launched the "Key Generation Wizard" when asked for a name and email address use the address you intend to use on the nymserver, NOT your real identity! For this example we will use the  "Full name" of "nymer" and an "Email address" of "inym@nym.borked.net". Then I let the wizard choose the default "Diffie-Hellman/DSS" key pair and key pair size. If you want your key pair to expire eventually then you will need to change the default settings. CHOOSE A PASSPHRASE YOU WILL NOT FORGET!</p>
<p><strong>Step 5 - Install Mixmaster</strong><br />
This is way simple. just extract the contents of the zip file into c:\Mix and then your ready for JBN to help with its configuration.</p>
<p><strong>Step 6 - Install JBN</strong><br />
Installing this is simple I just clicked through the defaults. I chose to also mod this install of JBN with the panta mod, so I unpacked the zip file and then ran setup.bat. A couple dialog boxes popped up with some sort of "Succeeded" message. I think this is good. </p>
<p>Oh and by the way, the list@ email reply arrived about now. <img src='http://blog.phrog.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><strong>Step 7 - Start Up JBN</strong><br />
When I first run JBN it pops up a box asking what version of PGP I'm using, I choose "PGP 5.5.3x/6.x" because I'm using 6.5.8, then set the Mixmaster path to C:\Mix. I turned on automatic everything but the stats URL's are all broken in the default config so I received a ton of failures, so I started canceling everything knowing I could set that stuff up later once I get into the config. Then it asked for some random characters and finally JBN opened. </p>
<p><strong>Step 8 - Stats Sources JBN</strong><br />
Now we have to remove all the bad stats sources. Go to "Window" then "Stats Config" and hit the "Cypherpunk" tab, where we will have to change everything. Start by just erasing everything in each box then we will fill in the blanks.</p>
<p>for "CPunk Stats URLs"<br />
<code>http://www.noreply.org/echolot/rlist2.txt</code><br />
for "CPunk Chain Stats URLs"<br />
<code>http://www.noreply.org/echolot/rlist2.txt</code><br />
for "CPunk Keys URLs"<br />
<code>http://www.noreply.org/echolot/pgp-all.asc</code></p>
<p>Then go to the "Mixmaster" tab and again erase everything and replace with these.</p>
<p>for "Mix Stats URLs"<br />
<code>http://www.noreply.org/echolot/mlist.txt</code><br />
for "Type2.list ; Pubring.mix URLs"<br />
<code>http://www.noreply.org/echolot/type2.list;http://www.noreply.org/echolot/pubring.mix</code><br />
Then close the option window by hitting "OK".</p>
<p><strong>Step 9 - Refresh JBN's stats &#038; keychains</strong><br />
Within JBN go to "Tools" then "Refresh Stats". When prompted to add new remailers choose "Yes to all" then the "Remailer Capabilitys Update" popup will bitch about remailer strings no longer in your stats sources, remove them by hitting "Yes", then again, and again, and again, until you have purged all the old ones. </p>
<p>Then you will get another popup asking if you would like to update your Cpunk keys chose "Yes" and confirm your key source URL and hit "OK" if prompted about missing keys just hit "OK to all" and then do the same with your Mixmaster keys. When it asks to add Mixmaster remailers use "Yes to all" and rember to remove the dead ones. You should now have working stats and keys. Check with "Window" then "Check Configuration", if all goes well you should get a message saying "No problems were encountered". yell w00t! and be happy you got through that bullshit.</p>
<p><strong>Step 10 - Configure Send Profile</strong><br />
We need to be able to send outgoing mail so lets set some server settings in "Window" then "Send Profiles". As you can see you can have several outgoing accounts.. we will only need one. Check the "Enable" box then proceed to the "SMTP server" this is your ISP's mail server that you use in other email client configs. You are also required to provide a "From Header:" this can be any email address valid or not. If your SMTP server requires you to use a login and password you will need to have the pant mod installed and you login information will need to be added in "Window" then "Panta Mod Config".</p>
<p><strong>Step 11 - Nym Configuration</strong><br />
From the main JBN window you will see a sort of file browser in the farthest pane to the right side, In that file browser go to "Nyms", you should now be presented with some templates to do nym stuff, for this example we will start with "Quick Nym.NBK". Doubble click it and it should open a "Nym Book", this is a tool for creating or updating a nym alias. </p>
<p>We start with the "Account" tab and fill in the "Account Address" with the identical nym email you are going to use, This must be identical to the email address you used when creating your pgp keys. Then choose your corresponding key in the drop down menu below it. Make sure "Create New Account" is checked and then set your nym mailname in "Name:" and set some options if you wish. I use "Nobcc" to cut down on spam. </p>
<p>Next we move on to "Reply Blocks", This is how we specify the chains the return emails will travel and what email account they should be delivered to. "AUTO" chains should be okay, however we will need to set "Anon To:" to an address we will take delivery of the mail from the nymserver. Please take note that there are 2 reply block tabs activated by default, you will need to complete both of them. Last thing we need to do before we finish up in here is to replace the passphrases with "EDIT" then "Replace Passphrases". Cross your fingers and hit "Create" and enter your pgp passphrase you set up when building your keys.</p>
<p>If all goes well you should be presented with a "Message Book" with your encrypted message built and ready to send. You will need to choose some remailers to chain to get it to the nymserver anonymously, then hit send. If you get a pgp error it's most likely due to you not yet having imported the nymservers config key. borked.net's is <a href="http://borked.net/nym.borked.net.asc">here</a>. You can just "Copy" the key to your clipboard and then from JBN go to "Tools" then "Add Key From Clipboard" to import it and try to send again.  The message should show up on the "Queue" tab in JBN and you may need to hit the "Send" button to get it to actually send it.</p>
<p><strong>Step 12 - Retrieval Profile</strong><br />
Well now that we can send email, and sent one out that we are waiting for a reply from maybe it's time we set up a way to check for incoming mail. In JBN hit "Window" and then "Retrieval Profiles" and provide the information required to check the email account you entered in the "Anon To:" line in the Nym Book. I set mine to "Retrieve only PGP messages" so the regular email will still get into thunderbird. These settings will allow JBN to scan your email for encrypted emails and then download them for decryption. </p>
<p><strong>Step 13 - Wait For Reply From Nymserver</strong><br />
We have to wait a while for a "configuration request reply" to come from the nymserver. This can take a long time, depending on how many remailers you have changed together in your reply block. You should receive multiple copies of this reply when it finally does arrive, one for each reply block you have active.</p>
<p><strong>Step 14 - Respond To Confirm Account</strong><br />
Before the nymserver will actually send mail to you via a reply block, it would like conformation that is works for you. When you receive your "configuration request reply" you will need to send a reply to the email. The way to do this is with the "Reply via" drop down menu and choose "Anon Mail.TBK". You will not need to quote the message in reply, but it wont hurt anything either. Remember to make sure the email has left your queue! Now we wait for another reply from the Nymserver, be patient. When it does arrive you will be ready to use your nym.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/10/01/pseudonym-email-for-windows-with-jbn2-and-pgp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nymserv install notes</title>
		<link>http://blog.phrog.org/2007/05/12/nymserv-install-notes/</link>
		<comments>http://blog.phrog.org/2007/05/12/nymserv-install-notes/#comments</comments>
		<pubDate>Sun, 13 May 2007 05:47:25 +0000</pubDate>
		<dc:creator>phrog</dc:creator>
				<category><![CDATA[freedom]]></category>
		<category><![CDATA[geek speak]]></category>
		<category><![CDATA[instal notes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[remailer]]></category>

		<guid isPermaLink="false">http://blog.phrog.org/2007/05/12/nymserv-install-notes/</guid>
		<description><![CDATA[If you know what a nymserver is then you may also know there is little or no documentation on getting one installed. Its a bitch. These are my notes from the install. They are quite brief but I figured they may be helpful if your working with nymserver.pl and are stuck on something, so I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>If you know what a nymserver is then you may also know there is little or no documentation on getting one installed. Its a bitch. These are my notes from the install. They are quite brief but I figured they may be helpful if your working with nymserver.pl and are stuck on something, so I&#8217;m sharing.</p>
<p><span id="more-59"></span></p>
<p>Make a folder to work in.<br />
<code>mkdir Nym<br />
cd Nym</code></p>
<p>get the nymserver code from cvs</p>
<p><code>cvs -d:pserver:anonymous@nymserv.cvs.sourceforge.net:/cvsroot/nymserv login<br />
cvs -z3 -d:pserver:anonymous@nymserv.cvs.sourceforge.net:/cvsroot/nymserv co nymserv</code></p>
<p>run setup to build the pgp folder and make our keys<br />
<code>cd nymserv<br />
sh ./setup.sh</code></p>
<p>then we make sure it built the key fine<br />
<code>cd ~/Nym/pgp<br />
gpg --no-default-keyring --secret-keyring ./secring.pgp --list-secret-keys<br />
</code></p>
<p>sign and check the signature of the key<br />
<code>gpg --keyring ~/Nym/pgp/pubring.pgp --sign-key nymserverKeyID<br />
gpg  --keyring ~/Nym/pgp/pubring.pgp --list-sigs nymserverKeyID</code></p>
<p>edit the key to add send@<br />
<code> gpg --no-default-keyring --keyring ~/Nym/pgp/pubring.pgp --secret-keyring ~/Nym/pgp/secring.pgp --edit-key config@nym.whatever.net</code></p>
<p>dump the public key to a new file<br />
<code>gpg --no-default-keyring --keyring ~/Nym/pgp/pubring.pgp --armor --export nymserverKeyID &gt; sigedkey.pgp</code></p>
<p>create some stuff<br />
<code><br />
mkdir ~/Nym/users<br />
mkdir ~/Nym/queue<br />
mkdir ~/Nym/.gnupg<br />
touch ~/Nym/.gnupg/noring.gpg<br />
</code></p>
<p>create user files for admin and postmaster<br />
<code>echo my@emailaddy.not &gt; ~/Nym/users/postmaster.forward<br />
echo my@emailaddy.not &gt; ~/Nym/users/admin.forward</code></p>
<p>create a reply email<br />
<code>echo 'From: nobody@nym.whatever.net' &gt; ~/Nym/users/remailer-key.reply<br />
echo 'Subject: PGP key for nym.whatever.net' &gt;&gt; ~/Nym/users/remailer-key.reply<br />
echo '' &gt;&gt; ~Nym/users/remailer-key.reply<br />
cat ~Nym/pgp/sigedkey.pgp &gt;&gt; ~/Nym/users/remailer-key.reply<br />
cp ~/Nym/users/remailer-key.reply ~/Nym/users/help.reply<br />
</code></p>
<p>Next we edit nymserver.pl a little to set  it up for our environment check the first line to ensure it is your perl path and then edit  $HOMEDIR $HOSTNAME and so on. Most important is $NYMKEYID </p>
<p>Then set up dns and MX and added this to postfix master.cf<br />
<code>#nymserver<br />
nymserv   unix  -       n       n       -       -       pipe<br />
  flags=FR user=anon argv=/home/remailer/Nym/nymserver.pl -d ${user}<br />
</code></p>
<p>add a line to main.cf<br />
<code>relay_domains = nym.whatever.net</code></p>
<p>add a transport<br />
<code>nym.whatever.net nymserv:<br />
</code></p>
<p>hope for the best<br />
<code>postmap /etc/postfix/transport<br />
postfix reload</code><br />
Oops,had to <code>chmod 700 nymserver.pl </code><br />
and the server was missing a few things.<br />
<code> apt-get install libmd5-perl<br />
apt-get install libgnupg-interface-perl</code></p>
<p>If your mixmaster is disallowing clear text you may not receive any config requests.. if this happens add <code>--UNENCRYPTED=y</code> to the nymserver.pl mixmaster line.</p>
<p>If your postfix is configured <code>recipient_delimiter=+</code> your nym configuration confirmations will break with &#8220;User Unknown&#8221; because the cookie delimiter is also &#8220;+&#8221;. </p>
<p>Now test a bit and if it&#8217;s all good then open up finger on the firewall and add this line to your inetd.conf<br />
<code>finger	stream	tcp	nowait	remailer	/home/remailer/Nym/nymserver.pl nymserver.pl -fingerd</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phrog.org/2007/05/12/nymserv-install-notes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

