<?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>HOWTO :: VoIP: Whosesale :: Calling Card :: OpenSer :: Radius :: Asterisk :: FreeSwitch :: A2Billing :: IVR :: Colo :: Colocations :: GADGETS &#187; Linux/Unix Tutorials</title>
	<atom:link href="http://callsolutions.org/category/linuxunix-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://callsolutions.org</link>
	<description>You can also find CCNA :: CCNAP :: Exam, Brandump, CheatSheet, Sample Exams</description>
	<lastBuildDate>Thu, 29 Apr 2010 14:23:16 +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>Installing FFmpeg &amp; Dependencies For FLV Conversion</title>
		<link>http://callsolutions.org/installing-ffmpeg-dependencies-for-flv-conversion/</link>
		<comments>http://callsolutions.org/installing-ffmpeg-dependencies-for-flv-conversion/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 17:55:59 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[YouTube-Like Website]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Installing FFmpeg & Dependencies For FLV Conversion]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=47</guid>
		<description><![CDATA[
This guide should teach you how to install all the needed dependencies for ClipShare or other flash video conversion scripts. Its primarily focused on RHEL or CentOS installs for the dependencies of these packages. The links in this guide are fresh as of 08/04/2008. Here is what this guide will help you install:

 FFmpeg (http://ffmpeg.mplayerhq.hu)
 [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div id="post-8" class="post"><abbr title="2008-06-29T23:57:09-0500" /><!-- by admin -->This guide should teach you how to install all the needed dependencies for ClipShare or other flash video conversion scripts. Its primarily focused on RHEL or CentOS installs for the dependencies of these packages. The links in this guide are fresh as of 08/04/2008. Here is what this guide will help you install:</p>
<ul>
<li> FFmpeg (<a class="external free" title="http://ffmpeg.mplayerhq.hu" rel="nofollow" href="http://ffmpeg.mplayerhq.hu/">http://ffmpeg.mplayerhq.hu</a>)</li>
<li> FFmpeg-PHP (<a class="external free" title="http://ffmpeg-php.sourceforge.net" rel="nofollow" href="http://ffmpeg-php.sourceforge.net/">http://ffmpeg-php.sourceforge.net</a>)</li>
<li> MPlayer + Mencoder (<a class="external free" title="http://www.mplayerhq.hu/design7/dload.html" rel="nofollow" href="http://www.mplayerhq.hu/design7/dload.html">http://www.mplayerhq.hu/design7/dload.html</a>)</li>
<li> FLV2Tool (<a class="external free" title="http://inlet-media.de/flvtool2" rel="nofollow" href="http://inlet-media.de/flvtool2">http://inlet-media.de/flvtool2</a>)</li>
<li> Libogg (<a class="external free" title="http://www.xiph.org/downloads" rel="nofollow" href="http://www.xiph.org/downloads">http://www.xiph.org/downloads</a>)</li>
<li> Libvorbis (<a class="external free" title="http://www.xiph.org/downloads" rel="nofollow" href="http://www.xiph.org/downloads">http://www.xiph.org/downloads</a>)</li>
<li> LAME MP3 Encoder (<a class="external free" title="http://lame.sourceforge.net" rel="nofollow" href="http://lame.sourceforge.net/">http://lame.sourceforge.net</a>)</li>
</ul>
<p>It assumes you already have Apache and PHP5 installed as those are required dependencies as well. There will also be a guide up for installing PHP5.2.6 from source on CentOS/RHEL soon.</p>
<p>First install subversion and ruby via yum or up2date:</p>
<blockquote><p>yum -y install subversion ruby</p></blockquote>
<p>Now we need to install MPlayer &amp; FFmpeg sources from SVN:</p>
<blockquote><p>cd ~<br />
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg<br />
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer</p></blockquote>
<p>Now we need some codecs:</p>
<blockquote><p>wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2<br />
tar xvjpf essential-20071007.tar.bz2<br />
cd essential-20071007<br />
mkdir /usr/local/lib/codecs<br />
mv * /usr/local/lib/codecs/<br />
chmod -R 755 /usr/local/lib/codecs/<br />
cd ~</p></blockquote>
<p>Next we will install LAME MP3 encoder:</p>
<blockquote><p>wget http://internap.dl.sourceforge.net/sourceforge/lame/lame-398.tar.gz<br />
tar xvzpf lame-398.tar.gz<br />
cd lame-398<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Now we install Libogg:</p>
<blockquote><p>wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz<br />
tar xvzpf libogg-1.1.3.tar.gz<br />
cd libogg-1.1.3<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>We need to make sure the correct lib directories are setup in ldconfig. Edit the <strong>/etc/ld.so.conf</strong> file and add the following lines:</p>
<blockquote><p>/usr/lib<br />
/usr/local/lib</p></blockquote>
<p>Now save and run the following command:</p>
<blockquote><p>ldconfig</p></blockquote>
<p>To install libvorbis we will run:</p>
<blockquote><p>wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.gz<br />
tar xvzpf libvorbis-1.2.0.tar.gz<br />
cd libvorbis-1.2.0<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Now we will install FLVTool2:</p>
<blockquote><p>wget http://rubyforge.org/frs/download.php/17497/flvtool2-1.0.6.tgz<br />
tar xvzpf flvtool2-1.0.6.tgz<br />
cd flvtool2-1.0.6<br />
ruby setup.rb config<br />
ruby setup.rb setup<br />
ruby setup.rb install<br />
cd ~</p></blockquote>
<p>Next we should build MPlayer &amp; MEncoder and it will take a while unless you have a nice dual or quad core machine. Note that Ive seen the SVN version of these packages break before, so you can always download the source code from their site (a stable copy) if it fails on make:</p>
<blockquote><p>cd mplayer<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>We will now build FFmpeg:</p>
<blockquote><p>mkdir /usr/local/src/tmp<br />
chmod 777 /usr/local/src/tmp<br />
export TMPDIR=/usr/local/src/tmp<br />
cd ffmpeg<br />
./configure &#8211;prefix=/usr &#8211;enable-libmp3lame &#8211;enable-libvorbis &#8211;disable-mmx &#8211;enable-shared<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Symlink some libraries if needed (ignore file exists errors):</p>
<blockquote><p>ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50<br />
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51<br />
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49<br />
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0<br />
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51</p></blockquote>
<p>Now build FFmpeg-PHP:</p>
<blockquote><p>wget http://voxel.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.3.1.tbz2<br />
tar xvjpf ffmpeg-php-0.5.3.1.tbz2<br />
cd ffmpeg-php-0.5.3.1<br />
phpize<br />
./configure &#8211;prefix=/usr<br />
make<br />
make install<br />
cd ~</p></blockquote>
<p>Now you need to copy the ffmpeg.so file that was created from its location (from the build) to /usr/local/lib/php/extensions/, it should look something like:</p>
<blockquote><p>cp /usr/local/lib/php/extensions/no-debug-non-zts-????????????/ffmpeg.so /usr/local/lib/php/extensions/</p></blockquote>
<p>Modify your php.ini. Try <strong>/etc/php.ini</strong> or <strong>/usr/lib/php.ini</strong> or <strong>/usr/local/Zend/etc/php.ini</strong> as they are common locations, you can do <strong>php -i | grep -i</strong> ini to find the proper location. Change the extension_dir value as seen below and add the extension as seen below:</p>
<blockquote><p>extension_dir = /usr/local/lib/php/extensions/<br />
extension=ffmpeg.so</p></blockquote>
<p>Now save and restart apache and test php for ffmpeg on both apache via phpinfo() and from shell:</p>
<blockquote><p>service httpd stop<br />
killall -9 httpd<br />
service httpd start<br />
php -i | grep -i ffmpeg</p></blockquote>
<p>Let me know via comments if you find some bugs or better ways to do things!</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/installing-ffmpeg-dependencies-for-flv-conversion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HOWTO: Debian Etch Apache2 + SSL</title>
		<link>http://callsolutions.org/howto-debian-etch-apache2-ssl/</link>
		<comments>http://callsolutions.org/howto-debian-etch-apache2-ssl/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 20:46:46 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[Apache2]]></category>
		<category><![CDATA[Debian Apache2]]></category>
		<category><![CDATA[Debian Apache2 + SSL]]></category>
		<category><![CDATA[Debian Etch]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=10</guid>
		<description><![CDATA[   Introduction: Howto Apache2 + SSL Installation
    This tutorial will teach you how to install and configure Apache2 + SSL for Debian Etch. The installation is straightforward. You can just copy pasted the commands below:
Install apache2 in debian etch

#apt-get install apache2 

Install openssl using the following command

#apt-get install openssl ssl-cert [...]]]></description>
			<content:encoded><![CDATA[<p>   <strong>Introduction: Howto Apache2 + SSL Installation</strong>
<p>    This tutorial will teach you how to install and configure Apache2 + SSL for Debian Etch. The installation is straightforward. You can just copy pasted the commands below:
<p><strong>Install apache2 in debian etch</strong>
<p><em><br />
#apt-get install apache2 </em></p>
<p><strong><br />
Install openssl using the following command</strong></p>
<p><em><br />
#apt-get install openssl ssl-cert </em></p>
<p><strong><br />
Install PHP5 support for apache2 in debian etch</strong></p>
<p>
<em>#apt-get install libapache2-mod-php5 php5-cli php5-common php5-cgi</em>
<p> Once you install apache server you need to Generate a certificate,Enable Apache SSL support and Configure your SSL options.
<p><strong><br />
Generate A certificate</strong></p>
<p><span id="more-10"></span><br />
Generating a certificate will provide to protect the traffic exchanged between clients and your server, however it will be unsigned by a trusted certificate authority so it will generate warnings.
<p>
If you want to avoid these warning messages you need to get a trusted certificate from SSL certificate vendors.If you want to Generating an SSL certificate for Apache2 you need to use the openssl. This will ask you questions interactively then generate the certificate file appropriately.
<p>
Note:-For generating certificate you might have used the apache2-ssl-certificate command in debian sarge but in debian etch this command not available.If you want to generate certificates you need to use openssl from you command prompt Use the following command to generate certificates
<p><em>#openssl req $@ -new -x509 -days 365 -nodes -out /etc/apache2/apache.pem -keyout /etc/apache2/apache.pem</em></p>
<p> Generating a 1024 bit RSA private key
<p>
.++++++
<p>
.++++++
<p>
writing new private key to /etc/apache2/apache.pem
<p>
You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank.
<p>For some fields there will be a default value, If you enter ., the field will be left blank.<br />
<br />
Country Name (2 letter code) [AU]:GB
<p>
State or Province Name (full name) [Some-State]:
<p>
Locality Name (eg, city) []:London
<p>
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Debian
<p>
Organizational Unit Name (eg, section) []:
<p>
Common Name (eg, YOUR name) []:
<p>
Email Address []:
<p>
This will complete the certificate now you need to make sure you have the correct permissions for .pem file if not use the following command to set the correct permissions
<p>
 <em>#chmod 600 /etc/apache2/apache.pem</em>
<p>
 By default the server will listen for incoming HTTP requests on port 80 &#8211; and not SSL connections on port 443. So you need to enable SSL support by entering the following entry to the file /etc/apache2/ports.conf save and exit the file.
<p>
Listen 443
<p>
 <strong><em>Enable SSL Support</em></strong><br />
 If you want to enable SSL support for your apache web server you need to use the following comamnd
<p>
 <em>#a2enmod ssl</em>
<p>
Module ssl installed; run /etc/init.d/apache2 force-reload to enable.
<p>
Now you need to restart the apache2 server using the following command
<p>
 <em>#/etc/init.d/apache2 restart</em>
<p>
 Configuring SSL Certificate to Virtual Hosts in Apache2
<p>
First you need to edit the /etc/apache2/sites-available/default file change
<p>
NameVirtualHost *
<p>
to</p>
<blockquote>
<p>
    NameVirtualHost *:80
<p>
    NameVirtualHost *:443
<p>
    Now you need to configure Virtual hosts using port 80
<p>
    Example
<p>
    ServerAdmin webmaster@localhost
<p>.
<p>.
<p>.
<p>
    configure Virtual hosts using port 443 the main difference is you need to use the following two lines for each SSL hosts.</p>
<p>
    SSLEngine on
<p>
    SSLCertificateFile /etc/apache2/apache.pem
<p>    Example
<p>
    ServerAdmin webmaster@localhost
<p>
    .
<p>
    .
<p>
    .
<p>
    SSLEngine on
<p>
    SSLCertificateFile /etc/apache2/apache.pem
<p>    Now you need to restrat your apache web server using the following comamnd
<p><em></p>
<p>    #/etc/init.d/apache2 reload</em></p>
<p>    Reloading web server config XXXX
</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/howto-debian-etch-apache2-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Debian VPN PPTP</title>
		<link>http://callsolutions.org/howto-debian-vpn-pptp/</link>
		<comments>http://callsolutions.org/howto-debian-vpn-pptp/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 18:34:12 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[PPTP]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[Debian Etch VPN]]></category>
		<category><![CDATA[DEbian Windows PPTP]]></category>
		<category><![CDATA[IPSEC]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=9</guid>
		<description><![CDATA[This tutorial will guide you how to install and configure VPN PPTP in Debian Etch. The installation is straightforward.
Note: Make sure that your VPN Server has two Network Interface Card (NIC). One for Outside Interface (where the public IP is configured) and the other is INSIDE interface (where your LAN IP is configured)
Introduction
What is PPTP? [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will guide you how to install and configure VPN PPTP in Debian Etch. The installation is straightforward.</p>
<p>Note: Make sure that your VPN Server has two Network Interface Card (NIC). One for Outside Interface (where the public IP is configured) and the other is INSIDE interface (where your LAN IP is configured)</p>
<p><strong>Introduction</strong></p>
<p><strong>What is PPTP?</strong> Short for <em><strong>P</strong>oint-to-<strong>P</strong>oint <strong>T</strong>unneling <strong>P</strong>rotocol</em>, a new <span style="position: static; text-decoration: underline;"><span style="font-weight: 400; font-size: 16px; position: static; color: blue;"><span class="kLink" style="font-weight: 400; font-size: 16px; position: static; font-family: serif; color: blue;">technology</span></span></span> for creating <em>Virtual Private Networks (VPNs)</em> <em>, </em>developed jointly by Microsoft Corporation, U.S. Robotics, and several remote access vendor companies, known collectively as the <em>PPTP Forum.</em> A VPN is a private network of computers that uses the public Internet to connect some nodes. Because the Internet is essentially an open <span style="position: static; text-decoration: underline;"><span style="font-weight: 400; font-size: 16px; position: static; color: blue;"><span class="kLink" style="font-weight: 400; font-size: 16px; position: static; font-family: serif; color: blue;">network</span></span></span>, the Point-to-Point Tunneling Protocol (PPTP) is used to ensure that messages transmitted from one VPN node to another are secure. With PPTP, users can dial in to their corporate network via the Internet.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script><a href="http://www.poptop.org/" target="_blank"><strong>PPTP</strong></a> is known to be less secure than other VPN software, but if you need a quick solution for a VPN server that will connect out of the box from Windows workstations PPTP is the obvious choice. <em>This post will show how easy it is to setup a pptp vnp server on Debian Etch.<br />
</em><span id="more-9"></span></p>
<p><strong>Installation</strong></p>
<blockquote><p><em>apt-get install pptp</em></p></blockquote>
<p>(this will install also some dependencies: bcrelay and ppp). The default pptpd configuration file is installed under <strong>/etc/pptpd.conf</strong> ; you can change any of the available options (samples are included in the configuration file as comments), but really the only thing that needs to be configured is the ip of the local server used by pptpd as the local gateway for the remote hosts and the remote users assigned ips:</p>
<blockquote><p><em><code>localip 192.168.1.1<br />
remoteip 192.168.1.100-120</code></em></p></blockquote>
<p>here we will use the local ip 192.168.1.1 as the pptpd ip and the remote users will be allocated the first available ip from the range 192.168.1.100 &#8211; 192.168.1.120 (meaning we can have a maximum of 20 simultaneous vpn users connected to this pptp server). These ips are assigned based on the particular setup, being either a pair of private ips (just like in my example above) or even real ips.</p>
<p>The debian package also uses the file <strong>/etc/ppp/pptpd-options</strong> containing the main pptpd server configs. A typical config will look like this:</p>
<blockquote><p>name My.VPN-PPTP</p>
<p>refuse-pap<br />
refuse-chap<br />
refuse-mschap<br />
require-mschap-v2<br />
require-mppe-128<br />
ms-dns 192.168.1.1<br />
proxyarp<br />
nodefaultroute<br />
lock<br />
nobsdcomp<br />
noipx<br />
mtu 1490<br />
mru 1490</p>
<p># client        server  secret                 IP addresses<code><br />
user            *       password               *</code><code><br />
</code></p></blockquote>
<blockquote></blockquote>
<p>and look for the logs under /var/log/syslog to troubleshoot any problems.</p>
<p>You can now connect to your new PPTP VPN server using the built-in pptp vpn client from any modern windows workstation (except probably vista that is broken by sp1) using the default connection settings.</p>
<blockquote>
<pre><code>
</code></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/howto-debian-vpn-pptp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenVZ: Debian Etch Install</title>
		<link>http://callsolutions.org/openvz-debian-etch-install/</link>
		<comments>http://callsolutions.org/openvz-debian-etch-install/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:23:01 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[OpenVZ]]></category>
		<category><![CDATA[Debian ETCH OpenVZ]]></category>
		<category><![CDATA[Linux Virtualization]]></category>
		<category><![CDATA[XEN]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=7</guid>
		<description><![CDATA[This tutorial will show you how to install OpenVZ in Debian Etch System. The installation is straightforward and you can just do copy and paste.
Introduction: What is OpenVZ
From the website:
OpenVZ is container-based virtualization for Linux. OpenVZ creates multiple secure, isolated containers (otherwise known as VEs or VPSs) on a single physical server enabling better server [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to install OpenVZ in Debian Etch System. The installation is straightforward and you can just do copy and paste.</p>
<p><strong>Introduction: What is OpenVZ</strong></p>
<blockquote><p>From the website:</p>
<p>OpenVZ is container-based virtualization for Linux. OpenVZ creates multiple secure, isolated containers (otherwise known as VEs or VPSs) on a single physical server enabling better server utilization and ensuring that applications do not conflict. Each container performs and executes exactly like a stand-alone server; a container can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries and configuration files. For more information about the technology and how it differs from the others like Xen, VMware etc., see introduction to virtualization, doc/openvz-intro.pdf (73 KB) or wikipedia:OpenVZ.</p>
<p>OpenVZ is free open source software, available under GNU GPL.</p>
<p>OpenVZ is the basis of Parallels Virtuozzo Containers, a commercial virtualization solution offered by Parallels. OpenVZ project is supported by Parallels.</p>
<p><span id="more-7"></span></p></blockquote>
<p><strong>Installation:</strong></p>
<blockquote><p>apt-get update</p>
<p>apt-get upgrade</p>
<p>echo -e &#8220;\ndeb <a href="http://download.openvz.org/debian-systs">http://download.openvz.org/debian-systs</a> etch openvz&#8221; &gt;&gt; /etc/apt/sources.list</p>
<p>wget -q <a href="http://download.openvz.org/debian-systs/dso_archiv_signing_key.asc">http://download.openvz.org/debian-systs/dso_archiv_signing_key.asc</a> -O- | apt-key add &#8211; &amp;&amp; apt-get update</p>
<p>apt-get install fzakernel-2.6.18-amd64 linux-headers-2.6.18-12-fza-amd64</p>
<p>reboot</p>
<p>apt-get install vzctl vzquota</p>
<p>vi /etc/sysctl.conf</p>
<p>modify the file to use the ff: config</p></blockquote>
<blockquote><p>[...]</p>
<p># On Hardware Node we generally need<br />
# packet forwarding enabled and proxy arp disabled</p>
<p>net.ipv4.conf.default.forwarding=1<br />
net.ipv4.conf.default.proxy_arp = 0<br />
net.ipv4.ip_forward=1</p>
<p># Enables source route verification<br />
net.ipv4.conf.all.rp_filter = 1</p>
<p># Enables the magic-sysrq key<br />
kernel.sysrq = 1</p>
<p># TCP Explict Congestion Notification<br />
#net.ipv4.tcp_ecn = 0</p>
<p># we do not want all our interfaces to send redirects<br />
net.ipv4.conf.default.send_redirects = 1<br />
net.ipv4.conf.all.send_redirects = 0</p>
<p>[...]&lt;SAVE&gt;</p>
<p>sysctl -pln -s /var/lib/vz /vz</p>
<p>/etc/vz/vz.conf</p>
<p>apt-get install vzctl-ostmpl-debian</p></blockquote>
<p><strong>Addtional Tools</strong></p>
<blockquote><p>apt-get install vzprocps vzdump</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/openvz-debian-etch-install/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
