<?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 for Makefile.com</title>
	<atom:link href="http://makefile.com/.plan/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://makefile.com/.plan</link>
	<description>Breaking the build for gits and shiggles</description>
	<lastBuildDate>Thu, 09 Feb 2012 03:57:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by Katia</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-184</link>
		<dc:creator>Katia</dc:creator>
		<pubDate>Thu, 09 Feb 2012 03:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-184</guid>
		<description>I type this cmanomd &#8220;ip addr show&#8221; and got below output1: lo:  mtu 16436 qdisc noqueue state UNKNOWN    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00    inet 127.0.0.1/8 scope host lo    inet6 ::1/128 scope host       valid_lft forever preferred_lft forever2: dummy0:  mtu 1500 qdisc noop state DOWN    link/ether ca:ba:69:31:2e:6c brd ff:ff:ff:ff:ff:ff3: usb0:  mtu 1500 qdisc noop state DOWN qlen 1000    link/ether 76:f0:b1:17:79:13 brd ff:ff:ff:ff:ff:ff4: eth0:  mtu 1500 qdisc noop state DOWN qlen 1000    link/ether 00:a0:c6:00:00:00 brd ff:ff:ff:ff:ff:ff5: sit0:  mtu 1480 qdisc noop state DOWN    link/sit 0.0.0.0 brd 0.0.0.06: ip6tnl0:  mtu 1460 qdisc noop state DOWN    link/tunnel6 :: brd ::7: wlan0:  mtu 1500 qdisc pfifo_fast state UP qlen 1000    link/ether 40:fc:89:27:41:c5 brd ff:ff:ff:ff:ff:ff    inet 192.168.1.12/24 brd 192.168.1.255 scope global wlan0    inet6 fe80::42fc:89ff:fe27:41c5/64 scope link       valid_lft forever preferred_lft forever9: tun0:  mtu 1500 qdisc noop state DOWN qlen 500    link/none</description>
		<content:encoded><![CDATA[<p>I type this cmanomd &#8220;ip addr show&#8221; and got below output1: lo:  mtu 16436 qdisc noqueue state UNKNOWN    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00    inet 127.0.0.1/8 scope host lo    inet6 ::1/128 scope host       valid_lft forever preferred_lft forever2: dummy0:  mtu 1500 qdisc noop state DOWN    link/ether ca:ba:69:31:2e:6c brd ff:ff:ff:ff:ff:ff3: usb0:  mtu 1500 qdisc noop state DOWN qlen 1000    link/ether 76:f0:b1:17:79:13 brd ff:ff:ff:ff:ff:ff4: eth0:  mtu 1500 qdisc noop state DOWN qlen 1000    link/ether 00:a0:c6:00:00:00 brd ff:ff:ff:ff:ff:ff5: sit0:  mtu 1480 qdisc noop state DOWN    link/sit 0.0.0.0 brd 0.0.0.06: ip6tnl0:  mtu 1460 qdisc noop state DOWN    link/tunnel6 :: brd ::7: wlan0:  mtu 1500 qdisc pfifo_fast state UP qlen 1000    link/ether 40:fc:89:27:41:c5 brd ff:ff:ff:ff:ff:ff    inet 192.168.1.12/24 brd 192.168.1.255 scope global wlan0    inet6 fe80::42fc:89ff:fe27:41c5/64 scope link       valid_lft forever preferred_lft forever9: tun0:  mtu 1500 qdisc noop state DOWN qlen 500    link/none</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by rahul</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-182</link>
		<dc:creator>rahul</dc:creator>
		<pubDate>Mon, 30 Jan 2012 17:20:03 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-182</guid>
		<description>When I ran 
&lt;code&gt;gcc -m32 -Wl,-rpath,`pwd` -o ncui libncui.so&lt;/code&gt;
I got this error 
&lt;code&gt;

gcc -m32 -Wl,-rpath,`pwd` -o ncui libncui.so
/usr/bin/ld: warning: libz.so.1, needed by libncui.so, not found (try using -rpath or -rpath-link)
libncui.so: undefined reference to `inflateReset&#039;
libncui.so: undefined reference to `inflateEnd&#039;
libncui.so: undefined reference to `deflate&#039;
libncui.so: undefined reference to `inflateInit2_&#039;
libncui.so: undefined reference to `inflate&#039;
libncui.so: undefined reference to `compress2&#039;
libncui.so: undefined reference to `deflateEnd&#039;
libncui.so: undefined reference to `deflateInit2_&#039;
libncui.so: undefined reference to `uncompress&#039;
collect2: ld returned 1 exit status
&lt;/code&gt;
I had to install libz using 
&lt;code&gt;sudo apt-get install lib32z1&lt;/code&gt;

After this I was able to create ncui</description>
		<content:encoded><![CDATA[<p>When I ran<br />
<code>gcc -m32 -Wl,-rpath,`pwd` -o ncui libncui.so</code><br />
I got this error<br />
<code></p>
<p>gcc -m32 -Wl,-rpath,`pwd` -o ncui libncui.so<br />
/usr/bin/ld: warning: libz.so.1, needed by libncui.so, not found (try using -rpath or -rpath-link)<br />
libncui.so: undefined reference to `inflateReset'<br />
libncui.so: undefined reference to `inflateEnd'<br />
libncui.so: undefined reference to `deflate'<br />
libncui.so: undefined reference to `inflateInit2_'<br />
libncui.so: undefined reference to `inflate'<br />
libncui.so: undefined reference to `compress2'<br />
libncui.so: undefined reference to `deflateEnd'<br />
libncui.so: undefined reference to `deflateInit2_'<br />
libncui.so: undefined reference to `uncompress'<br />
collect2: ld returned 1 exit status<br />
</code><br />
I had to install libz using<br />
<code>sudo apt-get install lib32z1</code></p>
<p>After this I was able to create ncui</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by ag</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-150</link>
		<dc:creator>ag</dc:creator>
		<pubDate>Fri, 30 Dec 2011 13:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-150</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux .. Windows .. Linux .. Ugh by Mateusz Loskot</title>
		<link>http://makefile.com/.plan/2009/11/linux-windows-linux-ugh/#comment-133</link>
		<dc:creator>Mateusz Loskot</dc:creator>
		<pubDate>Fri, 09 Dec 2011 01:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/11/linux-windows-linux-ugh/#comment-133</guid>
		<description>Very well said. I share similar impressions.
I miss my Mac too. I left it at my home 1600km away: http://www.flickr.com/photos/mloskot/2053393609/

Hope you get one soon :)</description>
		<content:encoded><![CDATA[<p>Very well said. I share similar impressions.<br />
I miss my Mac too. I left it at my home 1600km away: <a href="http://www.flickr.com/photos/mloskot/2053393609/" rel="nofollow">http://www.flickr.com/photos/mloskot/2053393609/</a></p>
<p>Hope you get one soon <img src='http://makefile.com/.plan/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by Mike</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-131</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 10 Nov 2011 02:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-131</guid>
		<description>I&#039;ve been toying with this for what seems like forever.  This seems to work perfectly in archlinux 64-bit.  

Nice work!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been toying with this for what seems like forever.  This seems to work perfectly in archlinux 64-bit.  </p>
<p>Nice work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by DicecCode</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-130</link>
		<dc:creator>DicecCode</dc:creator>
		<pubDate>Wed, 26 Oct 2011 11:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-130</guid>
		<description>YES!!!!! Awesome.....thank you thank you thank you.....my maverick is smiling again.....:)</description>
		<content:encoded><![CDATA[<p>YES!!!!! Awesome&#8230;..thank you thank you thank you&#8230;..my maverick is smiling again&#8230;..:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by Maximiliano Ozan</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-123</link>
		<dc:creator>Maximiliano Ozan</dc:creator>
		<pubDate>Mon, 26 Sep 2011 14:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-123</guid>
		<description>Excellent solution! Congratulations, really works. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Excellent solution! Congratulations, really works. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by Scott</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-78</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 02 Sep 2011 03:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-78</guid>
		<description>David, thanks for solving this more easily. I&#039;ve posted a direct link to your post at ubuntuforums.org at the top of this article. It&#039;ll save a lot of people a lot of time.</description>
		<content:encoded><![CDATA[<p>David, thanks for solving this more easily. I&#8217;ve posted a direct link to your post at ubuntuforums.org at the top of this article. It&#8217;ll save a lot of people a lot of time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by Scott</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-77</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 02 Sep 2011 03:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-77</guid>
		<description>I&#039;ll link it in the TOP of the article. It&#039;s so much simpler! I do tend to do things the hard way.

Thank you sooooo much for posting the link here!</description>
		<content:encoded><![CDATA[<p>I&#8217;ll link it in the TOP of the article. It&#8217;s so much simpler! I do tend to do things the hard way.</p>
<p>Thank you sooooo much for posting the link here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Juniper VPN, 64-bit Linux .. an unsolved mystery? by David von Oheimb</title>
		<link>http://makefile.com/.plan/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-75</link>
		<dc:creator>David von Oheimb</dc:creator>
		<pubDate>Wed, 31 Aug 2011 07:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://makefile.com/b/2009/10/juniper-vpn-64-bit-linux-an-unsolved-mystery/#comment-75</guid>
		<description>Here is a simple solution for the Juniper NC 64-bit incompatibility problem, which works even with smart card authentication:
http://ubuntuforums.org/showthread.php?p=11189826#post11189826</description>
		<content:encoded><![CDATA[<p>Here is a simple solution for the Juniper NC 64-bit incompatibility problem, which works even with smart card authentication:<br />
<a href="http://ubuntuforums.org/showthread.php?p=11189826#post11189826" rel="nofollow">http://ubuntuforums.org/showthread.php?p=11189826#post11189826</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

