<?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>x83.net &#187; install</title>
	<atom:link href="http://www.x83.net/tag/install/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.x83.net</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 13:53:33 +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>Puppet howto Ubuntu</title>
		<link>http://www.x83.net/puppet-howto-ubuntu/</link>
		<comments>http://www.x83.net/puppet-howto-ubuntu/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 18:27:53 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[puppet]]></category>
		<category><![CDATA[puppet master]]></category>
		<category><![CDATA[repo]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=765</guid>
		<description><![CDATA[I&#8217;m using 2 Ubuntu Lucid 10.10 for this setup. On the server run: apt-get install puppetmaster At the time I&#8217;m writing this in the repos version 2.6.1 is available. On the client run : apt-get install puppet Note that /etc/hosts needs to contain the IP and host of both client and server, e.g: 10.0.0.30 depot.server.org [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using 2 Ubuntu Lucid 10.10 for this setup.</p>
<p>On the server run:</p>
<p><strong>apt-get install puppetmaster</strong></p>
<p>At the time I&#8217;m writing this in the repos version 2.6.1 is available.</p>
<p>On the client run :</p>
<p><strong>apt-get install puppet</strong></p>
<p>Note that /etc/hosts needs to contain the IP and host of both client and server, e.g:</p>
<p><code>10.0.0.30       depot.server.org   depot<br />
10.0.0.31       n1.server.org      n1<br />
</code></p>
<p>Create a default manifest file (/etc/puppet/manifests/site.pp) and put in it :</p>
<p><code><br />
class test_class {<br />
    file { "/tmp/test":<br />
       ensure => present,<br />
       mode   => 644,<br />
       owner  => root,<br />
       group  => root<br />
    }<br />
}</p>
<p># tell puppet on which client to run the class<br />
node n1 {<br />
    include test_class<br />
}<br />
</code></p>
<p>Then on the server run :</p>
<p><strong>/etc/init.d/puppetmaster start</strong></p>
<p>and on client :</p>
<p><strong>puppetd &#8211;server depot.server.org &#8211;waitforcert 60 &#8211;test</strong></p>
<p>After this you should see on the server a new host when running :</p>
<p><strong>puppetca &#8211;list</strong></p>
<p>In order to sign this host on the server side you need to run :</p>
<p><strong>puppetca &#8211;sign n1.server.org</strong></p>
<p>After this on the client side /tmp/test should be created.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/puppet-howto-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Dante socks proxy</title>
		<link>http://www.x83.net/install-dante-socks-proxy/</link>
		<comments>http://www.x83.net/install-dante-socks-proxy/#comments</comments>
		<pubDate>Mon, 24 May 2010 12:51:07 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dante]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[socks]]></category>

		<guid isPermaLink="false">http://www.x83.net/install-dante-socks-proxy/</guid>
		<description><![CDATA[Dante socks install : Download Dante from : ftp://ftp.inet.no/pub/socks/dante-1.2.0.tar.gz tar zxvf dante-1.2.0.tar.gz cd dante-1.2.0 yum install gcc make ./configure make -j4 make install ifconfig -a &#124;  grep inet &#124; awk &#8216;{print $2}&#8217; &#124; awk -F &#8216;:&#8217; &#8216;{print $2}&#8217; &#124; grep -v 127.0.0.1 &#62;  /root/ips for i in `cat ips` ;do echo &#8220;internal: $i port = [...]]]></description>
			<content:encoded><![CDATA[<p>Dante socks install :</p>
<p>Download Dante from : ftp://ftp.inet.no/pub/socks/dante-1.2.0.tar.gz</p>
<p>tar zxvf dante-1.2.0.tar.gz<br />
cd dante-1.2.0<br />
yum install gcc make<br />
./configure<br />
make -j4<br />
make install</p>
<blockquote><p>ifconfig -a |  grep inet | awk &#8216;{print $2}&#8217; | awk -F &#8216;:&#8217; &#8216;{print $2}&#8217; | grep -v 127.0.0.1 &gt;  /root/ips</p></blockquote>
<blockquote><p>for i in `cat ips` ;do echo &#8220;internal: $i port = 6060&#8243; &gt;&gt; /root/sockd.conf ;done</p></blockquote>
<p>Example of sockd.conf :</p>
<blockquote><p>logoutput: stderr<br />
method: username none<br />
external: externalIPtouse<br />
client pass {<br />
from: 0.0.0.0/0 port 1-65535 to: 0.0.0.0/0<br />
}<br />
pass {<br />
from: 0.0.0.0/0 to: 0.0.0.0/0<br />
method: username<br />
protocol: tcp udp<br />
}
</p></blockquote>
<p>Launch using :</p>
<p>sockd -f /root/sockd.conf -d</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/install-dante-socks-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update from phpBB 3.0.4 to 3.0.5</title>
		<link>http://www.x83.net/update-from-phpbb-3-0-4-to-3-0-5/</link>
		<comments>http://www.x83.net/update-from-phpbb-3-0-4-to-3-0-5/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 08:03:30 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[3.0.5]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[phpbb]]></category>
		<category><![CDATA[update 3.0.4]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=375</guid>
		<description><![CDATA[To perform the update, either follow the instructions from the Administration Control Panel->System Tab &#8211; this should point out that you are running an outdated version and will guide you through the update &#8211; or follow the instructions listed below. Go to the downloads page and download the latest update package listed there, matching your [...]]]></description>
			<content:encoded><![CDATA[<p>To perform the update, either follow the instructions from the Administration Control Panel->System Tab &#8211; this should point out that you are running an outdated version and will guide you through the update &#8211; or follow the instructions listed below.</p>
<p>Go to the downloads page and download the latest update package listed there, matching your current version.<br />
Upload the archives contents to your phpBB installation &#8211; only the install folder is required. Upload the whole install folder, retaining the file structure.<br />
After the install folder is present, phpBB3 will go offline automatically.<br />
Point your browser to the install directory, for example http://www.example.com/phpBB3/install/<br />
Choose the &#8220;Update&#8221; Tab and follow the instructions </p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/update-from-phpbb-3-0-4-to-3-0-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install upgrade a different Juniper release</title>
		<link>http://www.x83.net/install-upgrade-a-different-juniper-release/</link>
		<comments>http://www.x83.net/install-upgrade-a-different-juniper-release/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 19:35:05 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Juniper]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.x83.net/blog/?p=99</guid>
		<description><![CDATA[file copy http://10.1.1.254/jinstalls/jinstall-8.3R2.8-domestic-signed.tgz /var/tmp/ request system software add validate unlink /var/tmp/jinstall-8.3R2.8-domestic-signed.tgz root@R1> request system software add validate unlink /var/tmp/jinstall-8.3R2.8-domestic-signed.tgz Checking compatibility with configuration Initializing... Using jbase-8.2R4.5 Verified manifest signed by PackageProduction_8_2_0 Using /var/tmp/jinstall-8.3R2.8-domestic-signed.tgz Verified jinstall-8.3R2.8-domestic.tgz signed by PackageProduction_8_3_0 Using /mfs/validate/tmp/jinstall-signed/jinstall-8.3R2.8-domestic.tgz Using /mfs/validate/tmp/jinstall/jbundle-8.3R2.8-domestic.tgz Checking jbundle requirements on / Using /mfs/validate/tmp/jbundle/jbase-8.3R2.8.tgz Verified manifest signed by PackageProduction_8_3_0 Using [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p> file copy http://10.1.1.254/jinstalls/jinstall-8.3R2.8-domestic-signed.tgz /var/tmp/<br />
 request system software add validate unlink /var/tmp/jinstall-8.3R2.8-domestic-signed.tgz</p></blockquote>
<pre>
root@R1> request system software add validate unlink /var/tmp/jinstall-8.3R2.8-domestic-signed.tgz
Checking compatibility with configuration
Initializing...
Using jbase-8.2R4.5
Verified manifest signed by PackageProduction_8_2_0
Using /var/tmp/jinstall-8.3R2.8-domestic-signed.tgz
Verified jinstall-8.3R2.8-domestic.tgz signed by PackageProduction_8_3_0
Using /mfs/validate/tmp/jinstall-signed/jinstall-8.3R2.8-domestic.tgz
Using /mfs/validate/tmp/jinstall/jbundle-8.3R2.8-domestic.tgz
Checking jbundle requirements on /
Using /mfs/validate/tmp/jbundle/jbase-8.3R2.8.tgz
Verified manifest signed by PackageProduction_8_3_0
Using /mfs/validate/tmp/jbundle/jkernel-8.3R2.8.tgz
Verified manifest signed by PackageProduction_8_3_0
Using /mfs/validate/tmp/jbundle/jcrypto-8.3R2.8.tgz
Verified manifest signed by PackageProduction_8_3_0
Using /mfs/validate/tmp/jbundle/jpfe-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-M10-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-M120-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-M160-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-M320-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-M40-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-M7i-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-T-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-X960-8.3R2.8.tgz
Verified SHA1 checksum of jpfe-common-8.3R2.8.tgz
WARNING: hw.product.model='unknown' using jpfe-M40
Using /mfs/validate/tmp/jbundle/jdocs-8.3R2.8.tgz
Verified manifest signed by PackageProduction_8_3_0
Using /mfs/validate/tmp/jbundle/jroute-8.3R2.8.tgz
Verified manifest signed by PackageProduction_8_3_0
Hardware Database regeneration succeeded
Validating against /config/juniper.conf.gz
mgd: commit complete
Validation succeeded
Installing package '/var/tmp/jinstall-8.3R2.8-domestic-signed.tgz' ...
Verified jinstall-8.3R2.8-domestic.tgz signed by PackageProduction_8_3_0
Adding jinstall...
Verified manifest signed by PackageProduction_8_3_0

WARNING:     This package will load JUNOS 8.3R2.8 software.
WARNING:     It will save JUNOS configuration files, and SSH keys
WARNING:     (if configured), but erase all other files and information
WARNING:     stored on this machine.  It will attempt to preserve dumps
WARNING:     and log files, but this can not be guaranteed.  This is the
WARNING:     pre-installation stage and all the software is loaded when
WARNING:     you reboot the system.

Saving the config files ...
NOTICE: uncommitted changes have been saved in /var/db/config/juniper.conf.pre-install
Installing the bootstrap installer ...

WARNING:     A REBOOT IS REQUIRED TO LOAD THIS SOFTWARE CORRECTLY. Use the
WARNING:     'request system reboot' command when software installation is
WARNING:     complete. To abort the installation, do not reboot your system,
WARNING:     instead use the 'request system software delete jinstall'
WARNING:     command as soon as this operation completes.

Saving package file in /var/sw/pkg/jinstall-8.3R2.8-domestic-signed.tgz ...
Saving state for rollback ...
Removing /var/tmp/jinstall-8.3R2.8-domestic-signed.tgz
</pre>
<p>The &#8221;&#8217;validate&#8221;&#8217; option checks that the new software is compatible with your current router configuration file. When you are updating to a different release of the JUNOS software, the validation check is performed automatically. The &#8221;&#8217;unlink&#8221;&#8217; option removes the software package from the router as soon as possible to make more room on the hard disk for the installation to complete.</p>
<p>One error that came up was :</p>
<pre>
Setting isupgrade=jboot-8.3R2.8.tgz

All together now...Somebody please give me some more memory!
List of Memory hogs ....
        cp size 49
        newfs size 20407
</pre>
<p>Junos requires a minimum of 198MB RAM to run&#8230;after an upgrade. After that 48-64 Ram is enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/install-upgrade-a-different-juniper-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

