<?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>Ubuntu Server Guide</title>
	<atom:link href="http://ubuntuserverguide.com/feed" rel="self" type="application/rss+xml" />
	<link>http://ubuntuserverguide.com</link>
	<description>Ubuntu Server Guide: Contain About Ubuntu Server Guide, Tutorial, Setup and Configuration</description>
	<lastBuildDate>Sat, 13 Apr 2013 14:18:55 +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>How to Setup OwnCloud Server 5 with SSL Connection</title>
		<link>http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html</link>
		<comments>http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html#comments</comments>
		<pubDate>Sat, 13 Apr 2013 09:40:35 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[Cloud Server]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[HTTPS]]></category>
		<category><![CDATA[OwnCloud 5]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Ubuntu Server 12.10]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1131</guid>
		<description><![CDATA[<p>Today ownCloud is the best cloud storage and useful alternative to Dropbox or other file-hosting services. it free open source software and allowing you to have own cloud server in your home. I previously wrote about step by step installing ownCloud 5 in ubuntu server 12.10. In this brief guide i will shown you Owncloud server 5 work with SSL/Https Connection. Step by Step Configure OwnCloud [...]</p><p>The post <a href="http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html">How to Setup OwnCloud Server 5 with SSL Connection</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">Today <em>ownCloud</em> is the best cloud storage and useful alternative to Dropbox or other file-<wbr>hosting services. it free open source software and allowing you to have own cloud server in your home.</wbr></p>
<p style="text-align: justify;">I previously wrote about step by step installing <a title="How to Install OwnCloud 5 in Ubuntu Server 12.10" href="http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html"><strong>ownCloud</strong> 5 in ubuntu server 12.10</a>. In this brief guide i will shown you <span style="text-decoration: underline;">Owncloud</span> server 5 work with SSL/Https Connection.</p>
<h2>Step by Step Configure OwnCloud Server 5 with SSL Connection</h2>
<p><strong>Step 1:</strong> Make sure ownCloud server 5 is installed correctly, you can see guide how to install ownCloud 5 <a title="How to Install OwnCloud 5 in Ubuntu Server 12.10" href="http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html">here</a>, Login to ubuntu server via ssh then switch to root mode.</p>
<pre>sudo -i</pre>
<p><strong>Step 2:</strong> Editing file /etc/apache2/sites-enabled/000-default,  change &#8220;AllowOverride None&#8221; to &#8220;AllowOverride All&#8221;</p>
<pre>nano /etc/apache2/sites-enabled/000-default</pre>
<p><strong>Step 3.</strong> you need to enable apache module mod_rewrite, mod_headers and mod_ssl, to enable both module use following command:</p>
<pre>a2enmod rewrite &amp;&amp; a2enmod headers &amp;&amp; a2enmod ssl</pre>
<p>Restart apache2 daemon:</p>
<pre>service apache2 restart</pre>
<p><strong>Step 4. </strong>On this step you need to editing file configuration<strong> /etc/ssl/openssl.cnf, </strong></p>
<pre>nano /etc/ssl/openssl.cnf</pre>
<p>Find and change the following line:</p>
<pre>dir = /root/SSLCertAuth
default_days = 3650 # 10 years
default_bits = 2048 # recommended by NSA until 2030
countryName_default = US
0.organizationName_default = Ubuntu Contrib</pre>
<p><strong>Step 5.</strong> Create Directory for save all file SSL Certificate Authority, on this case I will make directory name &#8220;SSLCertAuth&#8221;</p>
<pre>mkdir /root/SSLCertAuth</pre>
<pre>chmod 700 /root/SSLCertAuth</pre>
<pre>cd /root/SSLCertAuth</pre>
<pre>mkdir certs private newcerts</pre>
<pre>echo 1000 &gt; serial</pre>
<pre>touch index.txt</pre>
<p><strong>Step 6.</strong> Run the following command to generating Certificate Authority (CA)</p>
<pre>openssl req -new -x509 -days 3650 -extensions v3_ca \
-keyout private/cakey.pem -out cacert.pem \
-config /etc/ssl/openssl.cnf</pre>
<p>Output:</p>
<p><img class="aligncenter size-full wp-image-1155" title="owncloudssl - generating Certificate Authority" src="http://ubuntuserverguide.com/wp-content/uploads/2013/04/owncloudssl-generating-Certificate-Authority.png" alt="owncloudssl generating Certificate Authority How to Setup OwnCloud Server 5 with SSL Connection" width="624" height="383" /></p>
<p>If you want to keep the default value, Hit [enter]</p>
<p><strong>Step 7.</strong> Creating Certificate Signing Request</p>
<pre>openssl req -new -nodes \
 -out apache-req.pem \
 -keyout private/apache-key.pem \
 -config /etc/ssl/openssl.cnf</pre>
<p>Output:</p>
<p style="text-align: center;"><img class="size-full wp-image-1152 aligncenter" title="owncloud SSL - Creating Certificate Signing Request" src="http://ubuntuserverguide.com/wp-content/uploads/2013/04/owncloud-SSL-Creating-Certificate-Signing-Request.png" alt="owncloud SSL Creating Certificate Signing Request How to Setup OwnCloud Server 5 with SSL Connection" width="631" height="449" /></p>
<p><strong>Step 8.</strong> Generate the certificate then copy the files to directory /etc/ssl :</p>
<pre>openssl ca \
-config /etc/ssl/openssl.cnf \
-out apache-cert.pem \
-infiles apache-req.pem</pre>
<p>output:</p>
<p style="text-align: center;"><img class="size-full wp-image-1153 aligncenter" title="owncloud SSL - Certificate Authority" src="http://ubuntuserverguide.com/wp-content/uploads/2013/04/owncloud-SSL-Certificate-Authority.png" alt="owncloud SSL Certificate Authority How to Setup OwnCloud Server 5 with SSL Connection" width="624" height="596" /></p>
<pre>mkdir /etc/ssl/crt
mkdir /etc/ssl/key
cp /root/SSLCertAuth/apache-cert.pem /etc/ssl/crt
cp /root/SSLCertAuth/private/apache-key.pem /etc/ssl/key</pre>
<p><strong>Step 9. </strong>This final step W&#8217;ll to Configure HTTPS apache2 web server, create directory SSL log and create new file /etc/apache2/conf.d/owncloud5-ssl.conf to add the SSL virtualhost.</p>
<pre><code>mkdir</code><code>/var/www/logs</code></pre>
<pre>nano /etc/apache2/conf.d/owncloud5-ssl.conf</pre>
<p>copy and paste this configuration:</p>
<pre>&lt;VirtualHost *:443&gt;
      ServerName 192.168.1.5
      SSLEngine on
      SSLCertificateFile /etc/ssl/crt/apache-cert.pem
      SSLCertificateKeyFile /etc/ssl/key/apache-key.pem
      DocumentRoot /var/www/owncloud
      CustomLog /var/www/logs/ssl-access_log combined
      ErrorLog /var/www/logs/ssl-error_log
&lt;/VirtualHost&gt;</pre>
<p>Note: on this case my IP server 192.168.1.5, you can replace IP with your server hostname or domain</p>
<pre>service apache2 restart</pre>
<p>you now have secured, access owncloud using your favorite browser by typing on addressbar <strong>https://192.168.1.5 </strong>, it will appear like following screenshot</p>

<a href='http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html/owncloud-ssl-connection' title='ownCloud SSL Connection'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/04/ownCloud-SSL-Connection-200x200.png" class="attachment-thumbnail" alt="ownCloud SSL Connection 200x200 How to Setup OwnCloud Server 5 with SSL Connection" title="ownCloud SSL Connection" /></a>
<a href='http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html/files-owncloud-owncloud-google-chrome_052' title='Files | ownCloud (owncloud) - Google Chrome_052'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/04/Files-ownCloud-owncloud-Google-Chrome_052-200x200.png" class="attachment-thumbnail" alt="Files ownCloud owncloud Google Chrome 052 200x200 How to Setup OwnCloud Server 5 with SSL Connection" title="Files | ownCloud (owncloud) - Google Chrome_052" /></a>
<a href='http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html/files-owncloud-owncloud' title='Files | ownCloud (owncloud)'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/04/Files-ownCloud-owncloud-200x200.png" class="attachment-thumbnail" alt="Files ownCloud owncloud 200x200 How to Setup OwnCloud Server 5 with SSL Connection" title="Files | ownCloud (owncloud)" /></a>

<p>Link Reference:</p>
<ul>
<li><a rel="nofollow" href="http://owncloud.org/" rel="nofollow" target="_blank">OwnCloud Server</a></li>
<li><a rel="nofollow" href="https://owncloud.com/de/documentation/configuration/configuring-ssl" rel="nofollow" target="_blank">OwnCloud SSL</a></li>
<li><a rel="nofollow" href="http://www.ubuntu.com/download/server" rel="nofollow" target="_blank">Ubuntu Server</a></li>
</ul>
<p>&nbsp;</p>
<p>The post <a href="http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html">How to Setup OwnCloud Server 5 with SSL Connection</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2013/04/how-to-setup-owncloud-server-5-with-ssl-connection.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Install OwnCloud 5 in Ubuntu Server 12.10</title>
		<link>http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html</link>
		<comments>http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html#comments</comments>
		<pubDate>Sat, 23 Mar 2013 04:53:11 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[Cloud Server]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[ownCloud]]></category>
		<category><![CDATA[OwnCloud 5]]></category>
		<category><![CDATA[Owncloud Client]]></category>
		<category><![CDATA[Ubuntu Server 12.10]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1088</guid>
		<description><![CDATA[<p>OwnCloud 5 has been released and announced by Owncloud developer, come with new User Interface (UI), but also useful features such as improved contacts, a new search, antivirus checking, an improved calendar and more. Owncloud allows both businesses and individuals to pursue their own independent cloud. In contrast to the established commercial storage services, ownCloud can be [...]</p><p>The post <a href="http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html">How to Install OwnCloud 5 in Ubuntu Server 12.10</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><em>OwnCloud 5</em> has been released and announced by Owncloud developer, come with new User Interface (UI), but also useful features such as improved contacts, a new search, antivirus checking, an improved calendar and more. Owncloud allows both businesses and individuals to pursue their own independent cloud. In contrast to the established commercial storage services, ownCloud can be used on private servers at no extra cost.</p>
<p style="text-align: justify;"><a rel="nofollow" href="http://www.owncloud.org/" rel="nofollow" target="_blank">ownCloud</a>, the world’s most popular open source secure file sync and share software, giving users a flexible, customizable and secure way to host their own cloud file sync and share. ownCloud 5 also support for popular Linux distributions such as Debian, Ubuntu, Fedora, RedHat Enterprise Linux, CentOS and openSUSE.</p>
<p style="text-align: justify;">About the performance, a single fact: some tests determine that <span style="text-decoration: underline;">ownCloud 5</span>.0 is 500% faster than ownCloud 4.5. One improvement that will particularly benefit ownCloud facilities with a large number of users. All thanks to several internal changes, including having rewritten from scratch some key components such as the file system cache.</p>
<p><strong>What&#8217;s new in OwnCloud 5:</strong></p>
<ul>
<li>New design;</li>
<li>New search engine which includes a new Lucene-based full text search engine app;</li>
<li>ownCloud now uses Clam antivirus to prevent distributing infected files;</li>
<li>Option to restore deleted files;</li>
<li>Rewritten photo gallery;</li>
<li>Improved contacts, calendar, bookmarks, app management, versioning and file cache (up to 500% faster);</li>
<li>Faster sync for the desktop client;</li>
<li>Better security;</li>
<li>Enhanced external storage app;</li>
<li>N<a rel="nofollow" href="http://doc.owncloud.com/" rel="nofollow" target="_blank">ew documentation</a>;</li>
<li>For  more dretail about this changes, see <a rel="nofollow" href="https://owncloud.com/blog/latest-owncloud-community-edition-brings-greater-usability-performance-and-integration-to-file-sync-and-share" rel="nofollow" target="_blank">THIS</a> page.</li>
</ul>
<p>Download OwnCloud 5 from <a rel="nofollow" href="https://owncloud.org/install/" rel="nofollow" target="_blank">here </a>or <a rel="nofollow" href="http://demo.owncloud.org/" rel="nofollow" target="_blank">Try owncloud 5</a></p>
<h2>Step by Step Installing OwnCloud Server 5 in Ubuntu Server 12.10</h2>
<p>This guide will shown you step by step installing ownCloud Server 5 in <a title="Ubuntu Server 12.10 Quantal Quetzal Installation Guide" href="http://ubuntuserverguide.com/2012/10/ubuntu-server-12-10-quantal-quetzal-installation-guide.html" target="_blank">Ubuntu Server 12.10</a></p>
<p><strong>Step 1.  Install all owncloud package dependencies</strong></p>
<pre>sudo apt-get install apache2 php5 php5-gd php-xml-parser php5-intl php5-sqlite php5-mysql smbclient curl libcurl3 php5-curl</pre>
<p><strong>Step 2. Download archieve ownCloud Server 5.</strong></p>
<pre>wget http://download.owncloud.org/community/owncloud-5.0.0.tar.bz2</pre>
<p><strong>Step 3 . Move or copy owncloud-5.0.0.tar.bz2 in to web server directory (<em>/var/www/)</em> and extract it in there.</strong></p>
<pre>sudo mv  <span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">owncloud-5.0.0.tar.bz2 /var/www/</span></pre>
<pre>sudo tar -zxvf  <span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">owncloud-5.0.0.tar.bz2</span></pre>
<p><strong>Step 4. Change ownership directory /var/www/owncloud to www-data:www-data</strong></p>
<pre>sudo chown -R www-data:www-data /var/www/owncloud</pre>
<p><strong>Step 5. Restart apache2 daemon with following command:</strong></p>
<pre><span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">sudo service apache2 restart</span></pre>
<p><strong>Step 6. Access and Configure OwnCloud Server 5</strong></p>
<p>Access and configure owncloud server 5 from your favorite browser by typing <em> <strong>http://ip_server/owncloud </strong></em>on address bar</p>

<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/calendar-owncloud-precise' title='Calendar | ownCloud (precise)'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/Calendar-ownCloud-precise-200x200.png" class="attachment-thumbnail" alt="Calendar ownCloud precise 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="Calendar | ownCloud (precise)" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/contacts-owncloud-precise' title='Contacts | ownCloud (precise)'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/Contacts-ownCloud-precise-200x200.png" class="attachment-thumbnail" alt="Contacts ownCloud precise 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="Contacts | ownCloud (precise)" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/files-owncloud-precise' title='Files | ownCloud (precise)'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/Files-ownCloud-precise-200x200.png" class="attachment-thumbnail" alt="Files ownCloud precise 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="Files | ownCloud (precise)" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-5-application' title='ownCloud 5 application'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-5-application-200x200.png" class="attachment-thumbnail" alt="ownCloud 5 application 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud 5 application" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-5-configuration' title='ownCloud 5 configuration'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-5-configuration-200x200.png" class="attachment-thumbnail" alt="ownCloud 5 configuration 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud 5 configuration" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/pictures-owncloud-precise' title='Pictures | ownCloud (precise)'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/Pictures-ownCloud-precise-200x200.png" class="attachment-thumbnail" alt="Pictures ownCloud precise 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="Pictures | ownCloud (precise)" /></a>

<p>In addition to installing owncloud server 5 from source, You can also installing owncloud server 5 from ownCloud repository. add repository owncloud server 5 by running the following command below on your ubuntu server</p>
<p><strong>Owncloud repository for Ubuntu 12.10</strong></p>
<pre>sudo -i</pre>
<pre>echo 'deb http://download.opensuse.org/repositories/isv:ownCloud:community/xUbuntu_12.10/ /' &gt;&gt; /etc/apt/sources.list.d/owncloud.list</pre>
<pre>wget http://download.opensuse.org/repositories/isv:ownCloud:community/xUbuntu_12.10/Release.key</pre>
<pre>apt-key add - &lt; Release.key</pre>
<pre>apt-get update</pre>
<pre>apt-get install owncloud</pre>
<p><strong>Owncloud repository for Ubuntu 12.04</strong></p>
<pre>sudo -i</pre>
<pre>echo 'deb http://download.opensuse.org/repositories/isv:ownCloud:community/xUbuntu_12.04/ /' &gt;&gt; /etc/apt/sources.list.d/owncloud.list</pre>
<pre>wget http://download.opensuse.org/repositories/isv:ownCloud:community/xUbuntu_12.04/Release.key</pre>
<pre>apt-key add - &lt; Release.key</pre>
<pre>apt-get update</pre>
<pre>apt-get install owncloud</pre>
<h2>Install owncloud client to synchronize with the cloud in Ubuntu Desktop 12.04</h2>
<p>To install OwnCloud Client in Ubuntu Desktop you need to add owncloud-client repository:</p>
<pre>sudo -i</pre>
<pre>echo 'deb http://download.opensuse.org/repositories/isv:ownCloud:ownCloud2012/xUbuntu_12.04/ /' &gt;&gt; /etc/apt/sources.list.d/owncloud-client.list</pre>
<pre>wget http://download.opensuse.org/repositories/isv:ownCloud:ownCloud2012/xUbuntu_12.04/Release.key</pre>
<pre>apt-key add - &lt; Release.key</pre>
<pre>apt-get update</pre>
<pre>apt-get install owncloud-client</pre>
<p>Once the owncloud-client is installed, launch the icon should be in your applications. Search with keyword owncloud. Right-Click icon owncloud that appear in taskbar at right top, and choose &#8216;configure&#8217;. window OwnCloud Connection Wizard will be appear</p>

<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-connection-wizard_046' title='ownCloud Connection Wizard_046'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-Connection-Wizard_046-200x200.png" class="attachment-thumbnail" alt="ownCloud Connection Wizard 046 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud Connection Wizard_046" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-connection-wizard_047' title='ownCloud Connection Wizard_047'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-Connection-Wizard_047-200x200.png" class="attachment-thumbnail" alt="ownCloud Connection Wizard 047 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud Connection Wizard_047" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-1-0-5_048' title='ownCloud 1.0.5_048'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-1.0.5_048-200x200.png" class="attachment-thumbnail" alt="ownCloud 1.0.5 048 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud 1.0.5_048" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-folder-wizard_049' title='ownCloud Folder Wizard_049'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-Folder-Wizard_049-200x200.png" class="attachment-thumbnail" alt="ownCloud Folder Wizard 049 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud Folder Wizard_049" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-folder-wizard_050' title='ownCloud Folder Wizard_050'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-Folder-Wizard_050-200x200.png" class="attachment-thumbnail" alt="ownCloud Folder Wizard 050 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud Folder Wizard_050" /></a>
<a href='http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/owncloud-1-0-5_051' title='ownCloud 1.0.5_051'><img width="200" height="200" src="http://ubuntuserverguide.com/wp-content/uploads/2013/03/ownCloud-1.0.5_051-200x200.png" class="attachment-thumbnail" alt="ownCloud 1.0.5 051 200x200 How to Install OwnCloud 5 in Ubuntu Server 12.10" title="ownCloud 1.0.5_051" /></a>

<p>Download Owncloud Client for other Operating system <a rel="nofollow" href="https://owncloud.org/sync-clients/" rel="nofollow" target="_blank">here</a></p>
<h2><strong style="font-size: 13px;">Link Reference:</strong></h2>
<ul>
<li><a rel="nofollow" href="http://doc.owncloud.org/" rel="nofollow" target="_blank">ownCloud Documentation</a></li>
<li><a rel="nofollow" href="http://software.opensuse.org/download.html?project=isv:ownCloud:community&amp;package=owncloud" rel="nofollow" target="_blank">Repository OwnCloud server 5</a></li>
<li><a rel="nofollow" href="https://software.opensuse.org/download/package?project=isv:ownCloud:ownCloud2012&amp;package=owncloud-client" rel="nofollow" target="_blank">Repository OwnCloud Client</a></li>
</ul>
<p>The post <a href="http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html">How to Install OwnCloud 5 in Ubuntu Server 12.10</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2013/03/how-to-install-owncloud-5-in-ubuntu-server-12-10.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Manual Disk Partitioning Guide for Ubuntu Server Edition</title>
		<link>http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html</link>
		<comments>http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html#comments</comments>
		<pubDate>Sat, 23 Feb 2013 04:07:57 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Partition]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Ubuntu Server 12.10]]></category>
		<category><![CDATA[Ubuntu Server 13.04]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=907</guid>
		<description><![CDATA[<p>This guide will explain how to partitioning a harddrive manually in ubuntu server edition (ubuntu server 12.04/12.10/13.04). By default installation of Ubuntu Server edition the installer creates just two partitions; the first for (/ ) the root partition, and the second for Swap partition . If you want creating partitions for installing Ubuntu Server edition, I recommend [...]</p><p>The post <a href="http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html">Manual Disk Partitioning Guide for Ubuntu Server Edition</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">This guide will explain how to partitioning a harddrive manually in ubuntu server edition (<strong>ubuntu server 12.04/12.10/13.04</strong>). <strong></strong>By default installation of Ubuntu Server edition the installer creates just two partitions; the first for (/ ) the root partition, and the second for Swap partition . If you want creating partitions for installing Ubuntu Server edition, I recommend to create the following four partitions on your ubuntu server hardrive.</p>
<ul>
<li><strong>root partition</strong> (/). The bulk of the programs used for running the system will be installed here.</li>
<li><strong>boot partition</strong> (/boot). This is where programs critical for booting the system will reside.</li>
<li><strong>home partition</strong> (/home) the <span style="text-decoration: underline;">partition</span> where your home directory will be located. In the course of using the system, files and folders you create will reside in various folders here</li>
<li><strong>swap partition</strong> (swap):unformatted disk space for use as virtual memory.<em> swap partition</em> should be at least as big as your RAM size,</li>
</ul>
<p>This is screenshot step by step manual disk partioning of ubuntu server edition with following partition table:</p>
<ul>
<li>Hardisk : 32GB</li>
<li>RAM: 1GB</li>
</ul>
<table style="text-align: left; width: 728px; height: 32px;" border="1px #DDDDDD" cellspacing="2" cellpadding="2" align="center">
<tbody>
<tr>
<td style="vertical-align: top; font-weight: bold;">Type</td>
<td style="vertical-align: top; font-weight: bold;">Size</td>
<td style="vertical-align: top; font-weight: bold;">Location</td>
<td style="vertical-align: top; font-weight: bold;">FileSystem</td>
<td style="vertical-align: top; font-weight: bold;">Mount</td>
</tr>
<tr>
<td style="vertical-align: top;">Primary</td>
<td style="vertical-align: top;">20 GB</td>
<td style="vertical-align: top;">Beginning</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/</td>
</tr>
<tr>
<td style="vertical-align: top;">Primary</td>
<td style="vertical-align: top;">200 MB</td>
<td style="vertical-align: top;">Beginning</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/boot</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">10 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/home</td>
</tr>
<tr>
<td style="vertical-align: top;">Primary</td>
<td style="vertical-align: top;">2 GB</td>
<td style="vertical-align: top;">Beginning</td>
<td style="vertical-align: top;">swap</td>
<td style="vertical-align: top;">swap</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>Step 1:</strong> Choose the manual partitioning method at the bottom.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-1016" title="1-Manual Partition Disk Ubuntu Server" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/1-Manual-Partition-Disk-Ubuntu-Server-.png" alt="1 Manual Partition Disk Ubuntu Server  Manual Disk Partitioning Guide for Ubuntu Server Edition" width="560" height="420" /></p>
<p style="text-align: left;"><strong>Step 2:</strong> Choose harddrive you are planning to install ubuntu server and hit enter</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-1018" title="2-Manual Partition Disk Ubuntu Server" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/2-Manual-Partition-Disk-Ubuntu-Server-2.png" alt="2 Manual Partition Disk Ubuntu Server 2 Manual Disk Partitioning Guide for Ubuntu Server Edition" width="560" height="420" /></p>
<p style="text-align: left;"><strong>Step 3:</strong> If you have selected an hardisk to be partitioned for Ubuntu server. Answer [<strong>Yes</strong>] to create new empty partition table to the hard disk.</p>

<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/3-manual-partition-disk-ubuntu-server-3' title='3-Manual Partition Disk Ubuntu Server'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/3-Manual-Partition-Disk-Ubuntu-Server-3-200x150.png" class="attachment-medium" alt="3 Manual Partition Disk Ubuntu Server 3 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="3-Manual Partition Disk Ubuntu Server" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/4-manual-partition-disk-ubuntu-server-4' title='4-Manual Partition Disk Ubuntu Server 4'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/4-Manual-Partition-Disk-Ubuntu-Server-4-200x150.png" class="attachment-medium" alt="4 Manual Partition Disk Ubuntu Server 4 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="4-Manual Partition Disk Ubuntu Server 4" /></a>

<p style="text-align: left;"><strong>Step 4:</strong> In this step we&#8217;ll create <strong>root partition (/), </strong>Select a free space to create new partition.</p>

<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/1-manual-partition-root' title='Create a new Partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/1-Manual-Partition-root-200x150.png" class="attachment-medium" alt="1 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Create a new Partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/2-manual-partition-root' title='New partition size for root'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/2-Manual-Partition-root-200x150.png" class="attachment-medium" alt="2 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="New partition size for root" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/3-manual-partition-root' title='Type for the new partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/3-Manual-Partition-root-200x150.png" class="attachment-medium" alt="3 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Type for the new partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/4-manual-partition-root' title='Location for the new partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/4-Manual-Partition-root-200x150.png" class="attachment-medium" alt="4 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Location for the new partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/5-manual-partition-root' title='Root partition setting'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/5-Manual-Partition-root-200x150.png" class="attachment-medium" alt="5 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Root partition setting" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/6-manual-partition-root' title='Done-Partitioning root'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/6-Manual-Partition-root-200x150.png" class="attachment-medium" alt="6 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Done-Partitioning root" /></a>

<p><strong>Step 5:</strong> Create boot partition <strong>(/boot)</strong></p>

<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/1-manual-partition-root' title='Create a new Partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/1-Manual-Partition-root-200x150.png" class="attachment-medium" alt="1 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Create a new Partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/new-partition-size-for-boot' title='New Partition size for boot'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/New-Partition-size-for-boot-200x150.png" class="attachment-medium" alt="New Partition size for boot 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="New Partition size for boot" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/3-manual-partition-root' title='Type for the new partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/3-Manual-Partition-root-200x150.png" class="attachment-medium" alt="3 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Type for the new partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/4-manual-partition-root' title='Location for the new partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/4-Manual-Partition-root-200x150.png" class="attachment-medium" alt="4 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Location for the new partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/7-boot-partition' title='Boot partition settings'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/7-Boot-Partition-200x150.png" class="attachment-medium" alt="7 Boot Partition 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Boot partition settings" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/done-boot-partitioning' title='Done-Partitioning Boot '><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Done-Boot-Partitioning-200x150.png" class="attachment-medium" alt="Done Boot Partitioning 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Done-Partitioning Boot" /></a>

<p><strong>Step 6: </strong>Create home partition <strong>(/home)</strong></p>
<p>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/1-manual-partition-root' title='Create a new Partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/1-Manual-Partition-root-200x150.png" class="attachment-medium" alt="1 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Create a new Partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/new-partition-size-for-home' title='New partition size for home'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/New-partition-size-for-home-200x150.png" class="attachment-medium" alt="New partition size for home 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="New partition size for home" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/type-for-the-new-partition-logical' title='Type for the new partition - logical'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Type-for-the-new-partition-logical-200x150.png" class="attachment-medium" alt="Type for the new partition logical 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Type for the new partition - logical" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/location-for-home-partition' title='Location for home partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Location-for-home-partition-200x150.png" class="attachment-medium" alt="Location for home partition 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Location for home partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/partition-setting-for-home' title='Partition setting for home'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Partition-setting-for-home-200x150.png" class="attachment-medium" alt="Partition setting for home 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Partition setting for home" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/done-partitioning-home' title='Done partitioning home'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Done-partitioning-home-200x150.png" class="attachment-medium" alt="Done partitioning home 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Done partitioning home" /></a>
<br />
<strong>Step 7:</strong> Create swap partition <strong>(swap)</strong></p>

<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/1-manual-partition-root' title='Create a new Partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/1-Manual-Partition-root-200x150.png" class="attachment-medium" alt="1 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Create a new Partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/new-partition-size-for-swap' title='New partition size for swap'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/New-partition-size-for-swap-200x150.png" class="attachment-medium" alt="New partition size for swap 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="New partition size for swap" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/3-manual-partition-root' title='Type for the new partition'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/3-Manual-Partition-root-200x150.png" class="attachment-medium" alt="3 Manual Partition root 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Type for the new partition" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/partition-disk-swap' title='Partition disk - swap'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Partition-disk-swap-200x150.png" class="attachment-medium" alt="Partition disk swap 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Partition disk - swap" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/partition-setting-for-swap' title='Partition setting for swap'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Partition-setting-for-swap-200x150.png" class="attachment-medium" alt="Partition setting for swap 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Partition setting for swap" /></a>
<a href='http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/finish-partitioning-and-write-changes-to-disk' title='Finish partitioning and write changes to disk'><img width="200" height="150" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Finish-partitioning-and-write-changes-to-disk-200x150.png" class="attachment-medium" alt="Finish partitioning and write changes to disk 200x150 Manual Disk Partitioning Guide for Ubuntu Server Edition" title="Finish partitioning and write changes to disk" /></a>

<p><strong>Step 8:</strong> This is the final step for manual partitioning process , Answer [yes] to Write all changes to hardrive,]</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-1064" title="Write the change to disk" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Write-the-change-to-disk.png" alt="Write the change to disk Manual Disk Partitioning Guide for Ubuntu Server Edition" width="560" height="420" /></p>
<p style="text-align: left;">So that&#8217;s it. I hope you know what you are doing in the next step, thanks <img src='http://ubuntuserverguide.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Manual Disk Partitioning Guide for Ubuntu Server Edition" class='wp-smiley' title="Manual Disk Partitioning Guide for Ubuntu Server Edition" /> </p>
<p>The post <a href="http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html">Manual Disk Partitioning Guide for Ubuntu Server Edition</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Setup Nagios 3.4.4 Network Monitoring On Ubuntu Server 12.04/12.10</title>
		<link>http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html</link>
		<comments>http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html#comments</comments>
		<pubDate>Mon, 04 Feb 2013 05:18:30 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Ubuntu Server 12.10]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=401</guid>
		<description><![CDATA[<p>This guide will shown you how to installing latest version of nagios 3.4.4 on Ubuntu Server 12.04/12.10. Nagios is free and open source tool with GPL License allowing to control and monitor the items and services on a network. When it detects a problem it sends alert messages, either by mail or by other techniques. Step [...]</p><p>The post <a href="http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html">How to Setup Nagios 3.4.4 Network Monitoring On Ubuntu Server 12.04/12.10</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">This guide will shown you how to installing latest version of <strong>nagios</strong> 3.4.4 on Ubuntu Server 12.04/12.10. <em>Nagios</em> is free and open source tool with GPL License allowing to control and monitor the items and services on a network. When it detects a problem it sends alert messages, either by mail or by other techniques.</p>
<h2 style="text-align: justify;">Step by Step Installing and Configure Nagios 3.4.4 in Ubuntu Server 12.04/12.10</h2>
<p><span style="text-align: justify;"><span style="color: #993366;"><strong>Step 1.</strong></span> Before installing <span style="text-decoration: underline;">Nagios</span> 3.4.4 on Ubuntu Server 12.04/12.10, make sure your Ubuntu Server is up to date. Enter the following commands one by one, and install any available updates:</span></p>
<pre>sudo apt-get update</pre>
<pre>sudo apt-get upgrade -y</pre>
<p><span style="color: #993366;"><strong>Step 2. </strong> <span style="color: #000000;">Install</span> </span>Apache 2, PHP5, GCC ( development libraries and compilation), GD ( development libraries) on other package</p>
<pre dir="ltr">sudo apt-get install build-essential apache2 php5-gd wget libgd2-xpm libgd2-xpm-dev libapache2-mod-php5 libssl-dev</pre>
<p dir="ltr"><strong><span style="color: #993366;">Step 3.</span> </strong>Create users and groups for Nagios:</p>
<pre>sudo mkdir -p /etc/nagios /var/nagios</pre>
<pre>sudo groupadd --system --gid 9000 nagios</pre>
<pre>sudo groupadd --system --gid 9001 nagcmd</pre>
<pre>sudo adduser --system --gid 9000 --home /usr/local/nagios nagios</pre>
<pre>sudo usermod --groups nagcmd nagios</pre>
<pre>sudo usermod --append --groups nagcmd www-data</pre>
<pre>sudo chown nagios:nagios /usr/local/nagios /etc/nagios /var/nagios</pre>
<p><strong><span style="color: #993366;">Step 4. </span></strong>Download the source code of both compressed Nagios and the Nagios plugins (visit <a rel="nofollow" href="http://translate.googleusercontent.com/translate_c?depth=1&amp;ei=I-INUfPNC4nPrQec34GoDQ&amp;hl=en&amp;langpair=es%7Cen&amp;rurl=translate.google.com&amp;twu=1&amp;u=http://www.nagios.org/download/&amp;usg=ALkJrhiD3qy3I1ZFPFCJ6JeO9-6e5LvN-A" rel="nofollow" target="_blank">http://www.nagios.org/download/</a> for links to the latest versions). At time of writing, the latest versions of Nagios 3.4.4 and the Nagios plugins 1.4.16</p>
<pre>cd /usr/local/src/</pre>
<pre>wget http://sourceforge.net/projects/nagios/files/nagios-3.x/nagios-3.4.4/nagios-3.4.4.tar.gz</pre>
<pre>wget http://sourceforge.net/projects/nagiosplug/files/nagiosplug/1.4.16/nagios-plugins-1.4.16.tar.gz</pre>
<p><strong><span style="color: #993366;">Step 5.</span> </strong>Extract, Compile and Install source of nagios 3.4.4</p>
<pre>sudo tar -xzvf /usr/local/src/nagios-3.4.4.tar.gz</pre>
<pre>cd /usr/local/src/nagios</pre>
<pre>sudo ./configure --sysconfdir=/etc/nagios --localstatedir=/var/nagios --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-command-group=nagcmd --with-openssl=/usr/bin/openssl --enable-perl-modules --with-mail=/usr/bin/sendemail</pre>
<pre>sudo make all</pre>
<pre>sudo make install</pre>
<pre>sudo make install-init</pre>
<pre>sudo make install-config</pre>
<pre>sudo make install-commandmode</pre>
<p><span style="color: #993366;"><strong>Step 6.</strong> </span>Edit file <em>/etc/objects/contacts.cfg</em> to change the email address that is associated with <em>nagiosadmin</em> contact with the email address where you want to be alerted.</p>
<pre>sudo nano /etc/objects/contacts.cfg</pre>
<p><strong>Example:</strong></p>
<pre>define contact{
               contact_name   nagiosadmin ;
               use            generic-contact ;
               alias          Ubuntu Precise ;
               email          admin@ubuntuprecise.net ;
}</pre>
<p><span style="color: #993366;"><strong>Step 7. </strong><span style="color: #000000;">Edit file <em>/etc/nagios/objects/commands.cfg</em> to change both <strong>sendemail</strong> references to match the correct sendemail syntax:</span></span></p>
<pre>sudo nano /etc/nagios/objects/commands.cfg</pre>
<pre>define command{
 command_name notify-host-by-email
 command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | /usr/bin/sendemail -s srv-mail:25 -f "admin &lt;admin@ubuntuprecise.net&gt;" -t $CONTACTEMAIL$ -u "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **"
}
define command{
command_name notify-service-by-email
command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$" | /usr/bin/sendemail -s srv-mail:25 -f "admin &lt;admin@ubuntuprecise.net&gt;" -t $CONTACTEMAIL$ -u "** $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **"
}</pre>
<p><span style="color: #993366;"><strong>Step 7. </strong></span>Now we need to configure Nagios to access it via web interface.</p>
<ul>
<li>Install the web configuration file in the Apache conf.d directory:</li>
</ul>
<pre style="padding-left: 60px;" dir="ltr">cd /usr/local/src/nagios</pre>
<pre style="padding-left: 60px;" dir="ltr">sudo make install-webconf</pre>
<ul>
<li>Create password for Account <em>nagiosadmin</em> to enter the Nagios web interface. Remember the password you assign to this account &#8211; you will need it later. then restart apache2 daemon</li>
</ul>
<div>
<pre style="padding-left: 60px;" dir="ltr">sudo htpasswd -c /etc/nagios/htpasswd.users nagiosadmin</pre>
<pre style="padding-left: 60px;" dir="ltr">sudo /etc/init.d/apache2 reload</pre>
</div>
<ul>
<li>Edit file /etc/apache2/apache2.conf and add the following line:</li>
</ul>
<pre style="padding-left: 60px;">sudo nano /etc/apache2/apache2.conf</pre>
<pre style="padding-left: 60px;" dir="ltr">DirectoryIndex index.html index.php index.cgi</pre>
<p dir="ltr"><strong><span style="color: #993366;">Step 8. </span></strong><span style="color: #993366;"><span style="color: #000000;">Check your Nagios 3.4.4 configuration file for errors by typing following command. Look for errors in red</span></span></p>
<pre dir="ltr">sudo /usr/local/nagios/bin/nagios -v /etc/nagios/nagios.cfg</pre>
<p dir="ltr"><span style="color: #993366;"><strong>Step 9.</strong></span> Extract, Compile and install Nagios Plugins 1.4.16</p>
<pre dir="ltr">cd /usr/local/src</pre>
<pre dir="ltr">wget http://prdownloads.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.16.tar.gz</pre>
<pre dir="ltr">sudo tar -zxvf /usr/local/src/nagios-plugins-1.4.16.tar.gz</pre>
<pre dir="ltr">cd /usr/local/src/nagios-plugins-1.4.16</pre>
<pre dir="ltr">sudo ./configure --sysconfdir=/etc/nagios --localstatedir=/var/nagios --with-nagios-user=nagios --with-nagios-group=nagios</pre>
<pre dir="ltr">sudo make</pre>
<pre dir="ltr">sudo make install</pre>
<p dir="ltr"><strong><span style="color: #993366;">Step 10</span>.</strong> Set Nagios is started whenever the system boots up, then restart nagios daemon</p>
<pre dir="ltr">sudo /usr/sbin/update-rc.d -f nagios defaults 99</pre>
<pre dir="ltr">sudo ln -s /etc/init.d/nagios /etc/rcS.d/S99nagios</pre>
<pre dir="ltr">sudo /etc/init.d/nagios restart</pre>
<p dir="ltr">If all goes well, we should now be able to enter a Web browser to access Nagios administrator panel. Open a web browser and enter:</p>
<p dir="ltr"><strong>http://domain/nagios/</strong></p>
<p dir="ltr">We ask for the username (nagiosadmin) with the password you have chosen in <strong>step 7.</strong>  If all went well you should see the home page of Nagios Administrator Panel</p>

<a href='http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html/nagios-core-3-4-4-administrator-panel' title='Nagios Core 3.4.4- Administrator Panel'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Nagios-Core-3.4.4-Administrator-Panel-200x109.png" class="attachment-medium" alt="Nagios Core 3.4.4 Administrator Panel 200x109 How to Setup Nagios 3.4.4 Network Monitoring On Ubuntu Server 12.04/12.10" title="Nagios Core 3.4.4- Administrator Panel" /></a>
<a href='http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html/nagios-core-3-4-4-network-status' title='Nagios Core 3.4.4- Network Status'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Nagios-Core-3.4.4-Network-Status-200x109.png" class="attachment-medium" alt="Nagios Core 3.4.4 Network Status 200x109 How to Setup Nagios 3.4.4 Network Monitoring On Ubuntu Server 12.04/12.10" title="Nagios Core 3.4.4- Network Status" /></a>
<a href='http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html/nagios-core-3-4-4-process-info' title='Nagios Core 3.4.4 - Process Info'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/02/Nagios-Core-3.4.4-Process-Info-200x109.png" class="attachment-medium" alt="Nagios Core 3.4.4 Process Info 200x109 How to Setup Nagios 3.4.4 Network Monitoring On Ubuntu Server 12.04/12.10" title="Nagios Core 3.4.4 - Process Info" /></a>

<p dir="ltr"><strong>Link Reference:</strong></p>
<ul>
<li><a rel="nofollow" href="https://help.ubuntu.com/12.04/serverguide/nagios.html" rel="nofollow" target="_blank">Nagios Basic Installation for Ubuntu</a></li>
<li><a rel="nofollow" title="https://help.ubuntu.com/community/Nagios" href="https://help.ubuntu.com/community/Nagios" rel="nofollow" target="_blank">Nagios Ubuntu Wiki</a></li>
<li><a rel="nofollow" href="http://support.nagios.com/" rel="nofollow" target="_blank">Nagios Support Portal</a></li>
<li><a rel="nofollow" href="http://wiki.nagios.org/" rel="nofollow" target="_blank">Nagios Community Wiki</a></li>
</ul>
<p dir="ltr">
<p>The post <a href="http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html">How to Setup Nagios 3.4.4 Network Monitoring On Ubuntu Server 12.04/12.10</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2013/02/how-to-setup-nagios-3-4-4-network-monitoring-on-ubuntu-server-12-0412-10.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Setup Zimbra Collaboration Suite Open Source Edition 8.0.2 in Ubuntu Server 12.04</title>
		<link>http://ubuntuserverguide.com/2013/01/how-to-setup-zimbra-collaboration-suite-open-source-edition-8-0-2-in-ubuntu-server-12-04.html</link>
		<comments>http://ubuntuserverguide.com/2013/01/how-to-setup-zimbra-collaboration-suite-open-source-edition-8-0-2-in-ubuntu-server-12-04.html#comments</comments>
		<pubDate>Mon, 28 Jan 2013 16:17:57 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Mail Server]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Web Mail]]></category>
		<category><![CDATA[Zimbra]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=738</guid>
		<description><![CDATA[<p>This guide shown you how to installing and configure Zimbra Collaboration Suite (ZCS) Open Source Edition 8 as web mail server on Ubuntu Server 12.04 LTS machine. Zimbra Collaboration Suite an open source mail server is not just to send and receive emails but it’s a fully featured which includes easily manage and search large inboxes of emails using folders, [...]</p><p>The post <a href="http://ubuntuserverguide.com/2013/01/how-to-setup-zimbra-collaboration-suite-open-source-edition-8-0-2-in-ubuntu-server-12-04.html">How to Setup Zimbra Collaboration Suite Open Source Edition 8.0.2 in Ubuntu Server 12.04</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">This guide shown you how to installing and configure <em>Zimbra</em> Collaboration Suite (ZCS) Open Source Edition 8 as web mail server on Ubuntu Server 12.04 LTS machine. <strong>Zimbra Collaboration Suite</strong> an open source mail server is not just to send and receive emails but it’s a fully featured which includes easily manage and search large inboxes of emails using folders, tags, filters and conversation views in a rich, innovative user interface.  It also have feature-rich AJAX web interface and is compatible with clients such as Microsoft Outlook, Apple Mail, and Novell Evolution so that mail, contacts, and calendar items can be synchronised from these to the <span style="text-decoration: underline;">Zimbra</span> Collaboration Suite open source edition.</p>
<p style="text-align: justify;">Zimbra is my email server solution of choice, because it’s very easy to install and configure, and the features you get are unmatched by other open source email solutions.  Ubuntu Server 12.04 is the current Ubuntu Server Edition LTS, which will be supported for servers until 2017, so this is a great time to use it on a server you don’t want to have to take offline for frequent updates, like a mail server</p>
<h2>Installing and Configure Zimbra Collaboration Suite (ZCS) Open Source Edition 8</h2>
<p>Login into your server using SSH, Make sure your package repositories and installed programs are up to date:</p>
<pre>sudo apt-get update
sudo apt-get upgrade --show-upgraded</pre>
<p>Install some necessary packages</p>
<pre>sudo apt-get install libgmp3c2 libperl5.14 sqlite3 sysstat -y</pre>
<p>Install BIND9 dns server, it for Network Address translator (NAT)</p>
<pre>sudo apt-get install bind9 -y</pre>
<p>After install bind9 DNS Server reboot your server with following command</p>
<pre>sudo init 6</pre>
<p>After rebooting the server login again into your server then setup DNS records. edit file <span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">/etc/</span><em>bind/named.conf.options</em></p>
<pre>sudo nano /etc/bind/named.conf.options</pre>
<pre>options {
 directory "/var/cache/bind";

 // If there is a firewall between you and nameservers you want
 // to talk to, you may need to fix the firewall to allow multiple
 // ports to talk. See http://www.kb.cert.org/vuls/id/800113
 // If your ISP provided one or more IP addresses for stable
 // nameservers, you probably want to use them as forwarders.
 // Uncomment the following block, and insert the addresses replacing
 // the all-0's placeholder.
 forwarders {
            8.8.8.8;
    };
    auth-nxdomain no; # conform to RFC1035
    listen-on-v6 { any; };
};
zone "zimbra.ubuntuprecise.net" {
      type master;
      file "db.zimbra.ubuntuprecise.net";
};</pre>
<p>Save and exit. and Now, Create file <em>/var/cache/bind/db.zimbra.ubuntuprecise.net</em> don&#8217;t forget to change filename to match with zone file</p>
<pre>sudo touch /var/cache/bind/db.zimbra.ubuntuprecise.net</pre>
<pre>sudo nano /var/cache/bind/db.zimbra.ubuntuprecise.net</pre>
<p>Copy and paste following configuration into file <em>/var/cache/bind/db.zimbra.ubuntuprecise.net</em> :</p>
<pre>$ttl 38400
@       IN   SOA     webmail.zimbra.ubuntuprecise.net. webmail.zimbra.ubuntuprecise.net. (
                     2013012011
                     10800
                     3600
                     604800
                     38400 )
        IN     NS      ns1.zimbra.ubuntuprecise.net.
        IN     NS      ns2.zimbra.ubuntuprecise.net.
        IN     A       192.168.40.2
        IN     MX      10 webmail.zimbra.ubuntuprecise.net.

@       A      192.168.40.2
ns1     A      192.168.40.2
ns2     A      192.168.40.2
webmail A      192.168.40.2</pre>
<p>Edit file <em>/etc/resolv.conf</em> and change nameserver to 127.0.0.1</p>
<pre>sudo nano /etc/resolv.conf</pre>
<pre>search zimbra.ubuntuprecise.net
nameserver 127.0.0.1</pre>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">Restart bind9</span></p>
<div>
<div>
<pre>sudo /etc/init.d/bind9 restart</pre>
</div>
</div>
<p>Now the DNS server is set. To check DNS server works try with following command:</p>
<pre><strong>nslookup <span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">zimbra.ubuntuprecise.net</span></strong></pre>
<pre>Server: 127.0.0.1
Address: 127.0.0.1#53</pre>
<pre>Name: zimbra.ubuntuprecise.net
Address: 192.168.40.2</pre>
<pre><strong>nslookup webmail.<span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">zimbra.ubuntuprecise.net</span></strong></pre>
<pre>Server: 127.0.0.1
Address: 127.0.0.1#53</pre>
<pre>Name: webmail.zimbra.ubuntuprecise.net
Address: 192.168.40.2</pre>
<pre><strong>dig <span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">zimbra.ubuntuprecise.net</span> mx</strong></pre>
<pre>; &lt;&lt;&gt;&gt; DiG 9.8.1-P1 &lt;&lt;&gt;&gt; zimbra.ubuntuprecise.net mx
;; global options: +cmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 18531
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
;;
;; QUESTION SECTION:
;zimbra.ubuntuprecise.net. IN MX
;;
;; ANSWER SECTION:
zimbra.ubuntuprecise.net. 38400 IN MX 10 webmail.zimbra.wingfoss.com.
;;
;; AUTHORITY SECTION:
zimbra.ubuntuprecise.net. 38400 IN NS ns1.zimbra.ubuntuprecise.net.
zimbra.ubuntuprecise.net. 38400 IN NS ns2.zimbra.ubuntuprecise.net.
;;
;; ADDITIONAL SECTION:
ns1.zimbra.ubuntuprecise.net. 38400 IN A 192.168.40.2
ns2.zimbra.ubuntuprecise.net. 38400 IN A 192.168.40.2
;;
;; Query time: 4 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Mon Jan 28 21:14:40 2013
;; MSG SIZE rcvd: 153</pre>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">Download latest version ZCS Open Source Editon</span></p>
<pre>wget http://files2.zimbra.com/downloads/8.0.2_GA/zcs-8.0.2_GA_5569.UBUNTU12_64.20121210115059.tgz</pre>
<pre>tar -xzvf zcs*</pre>
<pre>cd zcs*</pre>
<p>Install <strong>Zimbra Collaboration Suite Open Source Edition 8 </strong>by executing script <em>install.sh</em></p>
<pre>sudo ./install.sh</pre>
<ul>
<li>
<pre>License Agree = Y</pre>
</li>
<li>
<pre>Install zimbra-ldap = Y</pre>
</li>
<li>
<pre>Install zimbra-logger = Y</pre>
</li>
<li>
<pre>Install zimbra-mta = Y</pre>
</li>
<li>
<pre>Install zimbra-snmp = Y</pre>
</li>
<li>
<pre>Install zimbra-store = Y</pre>
</li>
<li>
<pre>Install zimbra-apache = Y</pre>
</li>
<li>
<pre>Install zimbra-spell = Y</pre>
</li>
<li>
<pre>Install zimbra-memchached = N</pre>
</li>
<li>
<pre>Install zimbra-proxy = N</pre>
</li>
<li>
<pre>System will be modified? = Y</pre>
</li>
<li>
<pre>Change domain name = Y = webmail.zimbra.ubuntuprecise.net</pre>
<pre>Main menu</pre>
<pre>1) Common Configuration:
2) zimbra-ldap: Enabled
3) zimbra-store: Enabled
     +Create Admin User: yes
     +Admin user to create: admin@zimbra.ubuntuprecise.net
     ******* +Admin Password UNSET
     +Anti-virus quarantine user: virus-quarantine.rfi7ocq4@zimbra.ubuntuprecise.net
     +Enable automated spam training: yes
     +Spam training user: spam.fr5ekeowkp@zimbra.ubuntuprecise.net
     +Non-spam(Ham) training user: ham.ubskg1jvt@zimbra.ubuntuprecise.net
     +SMTP host: webmail.zimbra.ubuntuprecise.net
     +Web server HTTP port: 80
     +Web server HTTPS port: 443
     +Web server mode: https
     +IMAP server port: 7143
     +IMAP server SSL port: 7993
     +POP server port: 7110
     +POP server SSL port: 7995
     +Use spell check server: yes
     +Spell server URL: http://webmail.zimbra.ubuntuprecise.net:7780/aspell.php
     +Enable version update checks: TRUE
     +Enable version update notifications: TRUE
     +Version update notification email: admin@ubuntuprecise.net
     +Version update source email: admin@ubuntuprecise.net</pre>
<pre>4) zimbra-mta: Enabled
5) zimbra-snmp: Enabled
6) zimbra-logger: Enabled
7) zimbra-spell: Enabled
 <img src='http://ubuntuserverguide.com/wp-includes/images/smilies/icon_cool.gif' alt="icon cool How to Setup Zimbra Collaboration Suite Open Source Edition 8.0.2 in Ubuntu Server 12.04" class='wp-smiley' title="How to Setup Zimbra Collaboration Suite Open Source Edition 8.0.2 in Ubuntu Server 12.04" /> zimbra-proxy: Enabled
9) Default Class of Service Configuration:
r) Start servers after configuration yes
s) Save config to file
x) Expand menu
q) Quit</pre>
<pre>Address unconfigured (**) items (? - help)</pre>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">To change admin password enter number 3 then enter number 4,  </span><em style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">r</em><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;"> to return and put </span><strong style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">a</strong><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;"> to apply Zimbra configuration</span></li>
<li>
<pre>4 = Admin password set = ******</pre>
</li>
<li>
<pre>r for previous menu</pre>
</li>
<li>
<pre>a to apply</pre>
</li>
<li>
<pre>Save config = Y and Enter</pre>
</li>
<li>
<pre>System will be modified? = Y</pre>
</li>
</ul>
<p style="text-align: justify;"><span style="text-align: justify; font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">After done installing ZCS Open Source Editon 8. Access web admin panel ZCS Open Source Editon 8 by opening your favorite browser from computer on your network and navigate to </span><strong style="text-align: justify; font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">[ https://192.168.40.2:7071 ]</strong><span style="text-align: justify; font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;"> and Enter the user </span><em style="text-align: justify; font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;">admin</em><span style="text-align: justify; font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: 13px; line-height: 19px;"> with password.</span></p>
<p style="text-align: center;"><img class="aligncenter  wp-image-944" style="border: 1px solid black;" title="Zimbra Administration - ubuntu server 12.04" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Zimbra-Administration.png" alt="Zimbra Administration How to Setup Zimbra Collaboration Suite Open Source Edition 8.0.2 in Ubuntu Server 12.04" width="639" height="345" /></p>
<p style="text-align: justify;"><strong>Link reference:</strong></p>
<ul>
<li><a rel="nofollow" href="http://www.zimbra.com/products/zimbra-open-source.html" rel="nofollow" target="_blank">Zimbra Open Source</a></li>
<li><a rel="nofollow" href="http://www.zimbra.com/forums/forum.php" rel="nofollow" target="_blank">Zimbra Forum</a></li>
<li><a rel="nofollow" href="http://ubuntuforums.org/showthread.php?t=1866784" rel="nofollow" target="_blank">Ubuntu Zimbra</a></li>
</ul>
<p>&nbsp;</p>
<p>The post <a href="http://ubuntuserverguide.com/2013/01/how-to-setup-zimbra-collaboration-suite-open-source-edition-8-0-2-in-ubuntu-server-12-04.html">How to Setup Zimbra Collaboration Suite Open Source Edition 8.0.2 in Ubuntu Server 12.04</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2013/01/how-to-setup-zimbra-collaboration-suite-open-source-edition-8-0-2-in-ubuntu-server-12-04.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10</title>
		<link>http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html</link>
		<comments>http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html#comments</comments>
		<pubDate>Sun, 20 Jan 2013 15:48:06 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[Chat Server]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Chat]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Jabber]]></category>
		<category><![CDATA[Messaging Server]]></category>
		<category><![CDATA[Openfire]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Ubuntu Server 12.10]]></category>
		<category><![CDATA[XMPP]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=814</guid>
		<description><![CDATA[<p>This guide shown you how to build chat server using Openfire 3.7.1 in ubuntu server 12.10. Openfire is a free and open source real-time collaboration (RTC) instant messaging server. It uses the only widely adopted open protocol for instant messaging, XMPP (also called Jabber). Openfire is incredibly easy to install and configure, but offers rock-solid security and performance. [...]</p><p>The post <a href="http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html">How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">This guide shown you how to build chat server using <span style="text-decoration: underline;">Openfire</span> 3.7.1 in ubuntu server 12.10. <strong>Openfire</strong> is a free and open source real-time collaboration (RTC) instant messaging server. It uses the only widely adopted open protocol for instant messaging, XMPP (also called Jabber). Openfire is incredibly easy to install and configure, but offers rock-solid security and performance. <a rel="nofollow" title="openfire" href="http://www.igniterealtime.org/projects/openfire/index.jsp" rel="nofollow" target="_blank">Openfire</a> licensed under the Open Source Apache License.</p>
<p style="text-align: justify;">In additonal, <em>openfire</em> also available for major platform ( windows, Mac OS and Linux). Follow the step-by-step to install and configure chat/IM server using Openfire 3.7.1 on ubuntu server edition</p>
<h2 style="text-align: justify;">Step-by-Step to Installing and Configure Chat/IM Server using Openfire</h2>
<p><span style="color: #993366;"><strong>Step 1. </strong></span>Login using SSH or Login Directly into ubuntu server 12.10. Before installing Openfire server, make sure your system is up to date. Enter the following commands, one by one, and install any available updates:</p>
<pre>sudo apt-get update</pre>
<pre>sudo apt-get upgrade</pre>
<p><strong><span style="color: #993366;">Step 2.</span>  </strong>Install latest version of Oracle JRE/JDK, use personal package archieve (PPA) <a rel="nofollow" href="http://www.webupd8.org/2012/11/oracle-sun-java-6-installer-available.html" rel="nofollow" target="_blank">WEBUPD8</a> to install it.</p>
<pre><strong>sudo apt-get install python-software-properties</strong></pre>
<pre><strong>sudo add-apt-repository ppa:webupd8team/java</strong></pre>
<pre><strong>sudo apt-get update</strong></pre>
<p>If you are using OpenJDK, remove it to minimise any Java conflicts</p>
<pre><strong>sudo apt-get remove --purge openjdk*</strong></pre>
<p>Then install <strong>Oracle Java 7</strong> version with following command</p>
<pre><strong>sudo apt-get install oracle-java7-installer</strong></pre>
<p><strong><span style="color: #993366;">Step 3.</span> Install MySql Database server</strong></p>
<p>Install latest version MySQL server using apt-get</p>
<pre><strong>sudo apt-get install mysql-server</strong></pre>
<p><strong><strong><span style="color: #993366;">Step 4</span>. </strong>Create new MySQL database for Openfire</strong></p>
<p>Log in to MySQL Server as root.</p>
<pre><strong>sudo mysql -u root p</strong></pre>
<p>Create the database &#8220;dbopenfire&#8221;, add new user &#8220;openfire&#8221; and add new password &#8220;openfirepwd&#8221; for user &#8220;openfire&#8221;.</p>
<pre><strong>mysql&gt;</strong> CREATE DATABASE dbopenfire CHARACTER SET='utf8';
<strong>mysql&gt;</strong> CREATE USER 'openfire'@'localhost' IDENTIFIED BY '<strong>openfirepwd</strong>';
<strong>mysql&gt;</strong> GRANT ALL PRIVILEGES ON dbopenfire.* TO openfire@localhost WITH GRANT OPTION;
<strong>mysql&gt;</strong> FLUSH PRIVILEGES;
<strong>mysql&gt;</strong> quit</pre>
<p><strong><span style="color: #993366;">Step 5.</span> Download and Install openfire 3.7.1</strong></p>
<p>Download deb. package of Openfire 3.7.1 from <a rel="nofollow" href="http://www.igniterealtime.org/downloads/index.jsp" rel="nofollow" target="_blank">ignite realtime download page</a></p>
<pre><strong>cd /tmp</strong></pre>
<pre><strong>wget http://download.igniterealtime.org/openfire/openfire_3.7.1_all.deb</strong></pre>
<p>Install openfire_3.7.1_all.deb with dpkg command:</p>
<pre><strong>sudo dpkg -i openfire_3.7.1_all.deb</strong></pre>
<pre>(Reading database ... 85791 files and directories currently installed.)
Preparing to replace openfire 3.6.4 (using openfire_3.7.1_all.deb) ...
Unpacking replacement openfire ...
Setting up openfire (3.7.1) ...
Installing new version of config file /etc/openfire/security/truststore ...
Installing new version of config file /etc/init.d/openfire ...
Processing triggers for ureadahead ...
ureadahead will be reprofiled on next reboot</pre>
<p>Ignore all installation errors regarding user and folder permissions.it cause depending on your version of JRE/JDK, Now you need to editing file <strong>/etc/init/d/openfire</strong> in line 27. Replace<strong> <em>java-6-sun</em> </strong>with<strong> </strong><em>java-6-oracle<strong> </strong></em>or<strong> </strong><em>java-7-oracle.</em></p>
<pre>sudo apt-get install rpl</pre>
<pre>sudo rpl '<strong>6-sun</strong>' '<strong>7-oracle</strong>' /etc/init.d/openfire</pre>
<pre>sudo service openfire start</pre>
<p><span style="color: #993366;"><strong>Step 6.  <span style="color: #000000;">Allow </span></strong></span><strong>ports for Openfire</strong></p>
<p>You need to setup firewall and allow some ports for openfire on ubuntu server, use <strong>ufw command</strong> to set firewall openfire</p>
<pre>sudo ufw allow 9090/tcp
sudo ufw allow 9091/tcp
sudo ufw allow 5222/tcp
sudo ufw allow 7777/tcp
sudo ufw allow 7443/tcp
sudo ufw allow 7070/tcp
sudo ufw allow 3478/tcp
sudo ufw allow 3479/tcp</pre>
<p>This completes the initial installation steps for Openfire. Next, we&#8217;ll continue with configuration through a web browser</p>
<p><strong><span style="color: #993366;">Step 7.</span>  Configuring </strong><strong>Openfire Server</strong></p>
<p>Configuring Openfire is very easy and can be completed in just a couple of steps. Here&#8217;s how to configure Openfire:</p>
<p>From computer in your network open your favorite browser  and go to :</p>
<pre>http://<strong>mydomain</strong>:9090/setup/index.jsp</pre>
<p>Replace <strong>mydomain</strong> above with your FQDN or IP address of your ubuntu server. The webpage shown below appears:</p>

<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-setup-welcome-to-setup' title='Openfire Setup: Welcome to Setup'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Setup-Welcome-to-Setup-200x109.png" class="attachment-medium" alt="Openfire Setup Welcome to Setup 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Setup: Welcome to Setup" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-setup-server-settings' title='Openfire Setup: Server Settings'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Setup-Server-Settings-200x109.png" class="attachment-medium" alt="Openfire Setup Server Settings 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Setup: Server Settings" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-setup-database-settings' title='Openfire Setup: Database Settings'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Setup-Database-Settings-200x109.png" class="attachment-medium" alt="Openfire Setup Database Settings 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Setup: Database Settings" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-setup-database-settings-standard-connection' title='Openfire Setup: Database Settings - Standard Connection'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Setup-Database-Settings-Standard-Connection-200x109.png" class="attachment-medium" alt="Openfire Setup Database Settings Standard Connection 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Setup: Database Settings - Standard Connection" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-setup-profile-settings' title='Openfire Setup: Profile Settings'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Setup-Profile-Settings-200x109.png" class="attachment-medium" alt="Openfire Setup Profile Settings 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Setup: Profile Settings" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-setup-administrator-account' title='Openfire Setup: Administrator Account'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Setup-Administrator-Account-200x109.png" class="attachment-medium" alt="Openfire Setup Administrator Account 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Setup: Administrator Account" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-setup-setup-complete' title='Openfire Setup: Setup Complete!'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Setup-Setup-Complete-200x109.png" class="attachment-medium" alt="Openfire Setup Setup Complete 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Setup: Setup Complete!" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-admin-console' title='Openfire Admin Console'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Admin-Console-200x109.png" class="attachment-medium" alt="Openfire Admin Console 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Admin Console" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-admin-console-create-user' title='Openfire Admin Console: Create User'><img width="200" height="109" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Admin-Console-Create-User-200x109.png" class="attachment-medium" alt="Openfire Admin Console Create User 200x109 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Admin Console: Create User" /></a>
<a href='http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/openfire-admin-console-user-summary' title='Openfire Admin Console: User Summary'><img width="200" height="108" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/Openfire-Admin-Console-User-Summary-200x108.png" class="attachment-medium" alt="Openfire Admin Console User Summary 200x108 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" title="Openfire Admin Console: User Summary" /></a>

<p><strong><span style="color: #993366;">Step 8.</span> Download and Install IM client for Linux, Windows and Mac OSX</strong></p>
<p>You need to download install IM/VOIP client software on all PC/Laptop  to connect with the Openfire server. You can install any IM client that uses the<a rel="nofollow" href="http://xmpp.org/xmpp-software/clients/" rel="nofollow" target="_blank"> XMPP/Jabber protocol</a> for example the excellent <a rel="nofollow" href="https://apps.ubuntu.com/cat/applications/pidgin/" rel="nofollow" target="_blank">Pidgin</a>, it available for Linux Ubuntu, Windows, and Mac OSX.  for Ubuntu users pidgin can be installed from the Ubuntu Software Center.</p>
<pre><strong>sudo apt-get install pidgin</strong></pre>
<p>If you have done install pidgin,Make sure that you select <strong>XMPP</strong></p>
<p>The native cross plaform client for Openfire is <strong>Spark</strong>, it also available for <strong>Linux, Windows and Mac OSX</strong>. Download spark from <a rel="nofollow" href="http://www.igniterealtime.org/downloads/index.jsp#spark" rel="nofollow" target="_blank">Igniterealtime Download Page</a>, and install it on ubuntu desktop edition (Ubuntu 11.04, Ubuntu 11.10, ubuntu 12.04 and Ubuntu 12.10)</p>
<pre>wget http://download.igniterealtime.org/spark/spark_2_6_3.tar.gz</pre>
<pre>tar -zxvf spark_2_6_3.tar.gz</pre>
<pre>sudo mkdir /opt/spark</pre>
<pre>sudo mv Spark/* /opt/spark/</pre>
<p>Create a desktop launcher file, Open terminal and run following command</p>
<p><span style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px;">sudo nano /usr/share/applications/spark.desktop</span></p>
<pre><strong>[Desktop Entry]</strong>
Name=Spark
Version=2.6.3
GenericName=Spark
X-GNOME-FullName=Spark
Comment=ignite realtime Spark IM client
Type=Application
Categories=Application;Utility;
Path=/opt/spark
Exec=/bin/bash Spark
Terminal=false
StartupNotify=true
Icon=/opt/spark/logo-spark.png
TargetEnvironment=Unity</pre>
<pre>sudo cd /opt/spark</pre>
<pre>sudo wget https://dl.dropbox.com/u/50880014/spark.png</pre>
<p>Now, You will then be able to search for <strong>Spark </strong>in you unity dash and launch Spark.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-898" title="spark ubuntu 12.10" src="http://ubuntuserverguide.com/wp-content/uploads/2013/01/spark-ubuntu-12.10.png" alt="spark ubuntu 12.10 How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10" width="200" height="334" /></p>
<p style="text-align: left;"><strong>Link Reference :</strong></p>
<ul>
<li><a rel="nofollow" href="http://www.igniterealtime.org/projects/openfire/index.jsp" rel="nofollow" target="_blank">Openfire Server</a></li>
<li><a rel="nofollow" href="http://www.igniterealtime.org/projects/spark/index.jsp" rel="nofollow" target="_blank">Spark IM Client</a></li>
<li><a rel="nofollow" href="http://www.ubuntu.com/download/server" rel="nofollow" target="_blank">Ubuntu Server </a></li>
</ul>
<p>The post <a href="http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html">How to Setup Chat Server Using Openfire 3.7.1 in Ubuntu Server 12.10</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2013/01/how-to-setup-chat-server-using-openfire-in-ubuntu-server-12-04.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Install and Configure Lusca as Proxy Server in Ubuntu Server 12.04</title>
		<link>http://ubuntuserverguide.com/2012/12/how-to-install-and-configure-lusca-as-proxy-server-in-ubuntu-server-12-04.html</link>
		<comments>http://ubuntuserverguide.com/2012/12/how-to-install-and-configure-lusca-as-proxy-server-in-ubuntu-server-12-04.html#comments</comments>
		<pubDate>Wed, 19 Dec 2012 06:48:33 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Proxy Server]]></category>
		<category><![CDATA[Cache]]></category>
		<category><![CDATA[Lusca]]></category>
		<category><![CDATA[Proxy]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=829</guid>
		<description><![CDATA[<p>This guide will shown you how to installing and configuring proxy server with lusca in Ubuntu Server 12.04. Lusca is a fork of the Squid-2 development tree. The Lusca project aims to fix the shortcomings in the Squid-2 codebase whilst maintaining the the Squid-2 functionality and stability. This project provides existing Squid-2 users with a migration path [...]</p><p>The post <a href="http://ubuntuserverguide.com/2012/12/how-to-install-and-configure-lusca-as-proxy-server-in-ubuntu-server-12-04.html">How to Install and Configure Lusca as Proxy Server in Ubuntu Server 12.04</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">This guide will shown you how to installing and configuring proxy server with lusca in Ubuntu Server 12.04. Lusca is a fork of the Squid-2 development tree. The Lusca project aims to fix the shortcomings in the Squid-2 codebase whilst maintaining the the Squid-2 functionality and stability. This project provides existing Squid-2 users with a migration path to an actively developed codebase and new users with a stable, predictable software product to deploy.-<em><a rel="nofollow" href="http://www.lusca.org/"> lusca.org</a></em></p>
<p style="text-align: justify;">Installing and configuring of lusca on Ubuntu Server 12.04 is very easy. Now, Lusca package is available on official ubuntu repository . Lusca is recommended installed on fresh installation of ubuntu server.</p>
<h2 style="text-align: justify;">Step-by-step Installing and Configuring Lusca as Proxy Server in Ubuntu Server 12.04</h2>
<p style="text-align: justify;"><strong><span style="color: #800080;">Step 1</span> </strong>. <a title="How to Install Ubuntu Server 12.04 LTS Precise Pangolin – Included Screenshot" href="http://ubuntuserverguide.com/2012/05/how-to-install-ubuntu-server-12-04-lts-precise-pangolin-included-screenshot.html">Install Ubuntu Server 12.04</a> and use manual partition with following partition table ( In this case I have 250 GB HDD and RAM 4 GB)</p>
<table style="text-align: left; width: 500px; height: 32px;" border="0" cellspacing="2" cellpadding="2" align="center">
<tbody>
<tr>
<td style="vertical-align: top; font-weight: bold;">Type</td>
<td style="vertical-align: top; font-weight: bold;">Size</td>
<td style="vertical-align: top; font-weight: bold;">Location</td>
<td style="vertical-align: top; font-weight: bold;">FileSystem</td>
<td style="vertical-align: top; font-weight: bold;">Mount</td>
</tr>
<tr>
<td style="vertical-align: top;">Primary</td>
<td style="vertical-align: top;">30 GB</td>
<td style="vertical-align: top;">Beginning</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/</td>
</tr>
<tr>
<td style="vertical-align: top;">Primary</td>
<td style="vertical-align: top;">500 MB</td>
<td style="vertical-align: top;">Beginning</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/boot</td>
</tr>
<tr>
<td style="vertical-align: top;">Primary</td>
<td style="vertical-align: top;">8192 MB</td>
<td style="vertical-align: top;">Beginning</td>
<td style="vertical-align: top;">swap</td>
<td style="vertical-align: top;">swap</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">25 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">btrfs</td>
<td style="vertical-align: top;">/cache-1</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">25 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">btrfs</td>
<td style="vertical-align: top;">/cache-2</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">25 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">btrfs</td>
<td style="vertical-align: top;">/cache-3</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">25 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">btrfs</td>
<td style="vertical-align: top;">/cache-4</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">25 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">btrfs</td>
<td style="vertical-align: top;">/cache-5</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">46 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/home</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">5 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/opt</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">5 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/srv</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">5 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/tmp</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">5 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/usr</td>
</tr>
<tr>
<td style="vertical-align: top;">Logical</td>
<td style="vertical-align: top;">5 GB</td>
<td style="vertical-align: top;">End</td>
<td style="vertical-align: top;">ext4</td>
<td style="vertical-align: top;">/usr/local</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><span style="color: #800080;"><strong>Step 2.</strong></span> Make sure your ubuntu package repositories and installed programs are up to date.</p>
<pre><strong>sudo apt-get update -y &amp;&amp; sudo apt-get upgrade -y</strong></pre>
<p><span style="color: #800080;"><strong>Step 3</strong>.</span> Install Lusca and other package</p>
<pre><strong>sudo apt-get install lusca squidclient squid-cgi ccze</strong></pre>
<p><span style="color: #800080;"><strong>Step 4. </strong></span>Create lusca file configuration:</p>
<pre><strong>sudo /etc/lusca/squid.conf /etc/lusca/squid.conf.original</strong></pre>
<pre><strong>sudo touch /etc/lusca/squid.conf</strong></pre>
<pre><strong>sudo nano /etc/lusca/squid.conf</strong></pre>
<p><strong>Use the following Lusca File Configuration:</strong></p>
<pre>#=============================================
# Port and Transparent
#=============================================
http_port 3128 transparent
server_http11 on
icp_port 0
#=============================================
# Lusca Cache Directory
#=============================================
cache_dir aufs /cache-1/ 25000 15 256
cache_dir aufs /cache-2/ 25000 15 256
cache_dir aufs /cache-3/ 25000 15 256
cache_dir aufs /cache-4/ 25000 15 256
cache_dir aufs /cache-5/ 25000 15 256
cache_replacement_policy heap LFUDA
memory_replacement_policy heap LFUDA
#=============================================
# Lusca Log Options
#=============================================
emulate_httpd_log on
logformat squid %tl %6tr %&gt;a %Ss/%03Hs %&lt;st %rm %ru %un %Sh/%&lt;A %mt
log_fqdn off
logfile_rotate 14
debug_options ALL,1
cache_access_log /var/log/lusca/access.log
cache_log /var/log/lusca/cache.log
cache_store_log /var/log/lusca/store.log
#=============================================
# DNS and FTP option
#=============================================
#I used DNSAMSQ service for fast dns resolving
#so install by using "apt-get install dnsmasq" first
dns_nameservers 192.168.4.1 127.0.0.1 221.132.112.8
ftp_user anonymous@
ftp_list_width 32
ftp_passive on
ftp_sanitycheck on
#=============================================
# Access Control List (ACL) Option
#=============================================
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl localnet src 192.168.88.0/24
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563 # https, snews
acl SSL_ports port 873 # rsync
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 631 # cups
acl Safe_ports port 873 # rsync
acl Safe_ports port 901 # SWAT
acl purge method PURGE
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow localnet
http_access allow all
http_reply_access allow all
icp_access allow all
#=============================================
# Administrative Parameters
#=============================================
# I used Ubuntu Server so user and group is proxy
cache_effective_user proxy
cache_effective_group proxy
cache_mgr ubuntucontrib@gmail.com
visible_hostname proxy.precise.net
unique_hostname ubuntucontrib@gmail.com
#=============================================
# Accelerator Options
#=============================================
half_closed_clients off
quick_abort_min 0 KB
quick_abort_max 0 KB
vary_ignore_expire on
reload_into_ims on
log_fqdn off
memory_pools off
cache_swap_low 98
cache_swap_high 99
max_filedescriptors 65536
fqdncache_size 16384
retry_on_error on
offline_mode off
pipeline_prefetch on
# If you want to hide your proxy machine from being detected at various site use following
via off
#=============================================
# Options Which Affect The Cache Size
#=============================================
# If you have 4GB memory in Squid box, we will use formula of 1/3
# You can adjust it according to your need. IF squid is taking too much of RAM
# Then decrease it to 128 MB or even less.
cache_mem 8 MB
minimum_object_size 0 bytes
maximum_object_size 100 MB
maximum_object_size_in_memory 128 KB
#=============================================
# SNMP , if you want to generate graphs for -
# SQUID via MRTG
#=============================================
#acl snmppublic snmp_community gl
#snmp_port 3401
#snmp_access allow snmppublic all
#snmp_access allow all
#=============================================
# ZPH Option
#=============================================
tcp_outgoing_tos 0x30 all
zph_mode tos
zph_local 0x30
zph_parent 0
zph_option 136
#=============================================
# ACL Caching Youtube
#=============================================
acl videocache_allow_url url_regex -i \.youtube\.com\/get_video\?
acl videocache_allow_url url_regex -i \.youtube\.com\/videoplayback \.youtube\.com\/videoplay \.youtube\.com\/get_video\?
acl videocache_allow_url url_regex -i \.youtube\.[a-z][a-z]\/videoplayback \.youtube\.[a-z][a-z]\/videoplay \.youtube\.[a-z][a-z]\/get_video\?
acl videocache_allow_url url_regex -i \.googlevideo\.com\/videoplayback \.googlevideo\.com\/videoplay \.googlevideo\.com\/get_video\?
acl videocache_allow_url url_regex -i \.google\.com\/videoplayback \.google\.com\/videoplay \.google\.com\/get_video\?
acl videocache_allow_url url_regex -i \.google\.[a-z][a-z]\/videoplayback \.google\.[a-z][a-z]\/videoplay \.google\.[a-z][a-z]\/get_video\?
acl videocache_allow_url url_regex -i proxy[a-z0-9\-][a-z0-9][a-z0-9][a-z0-9]?\.dailymotion\.com\/
acl videocache_allow_url url_regex -i vid\.akm\.dailymotion\.com\/
acl videocache_allow_url url_regex -i [a-z0-9][0-9a-z][0-9a-z]?[0-9a-z]?[0-9a-z]?\.xtube\.com\/(.*)flv
acl videocache_allow_url url_regex -i \.vimeo\.com\/(.*)\.(flv|mp4)
acl videocache_allow_url url_regex -i va\.wrzuta\.pl\/wa[0-9][0-9][0-9][0-9]?
acl videocache_allow_url url_regex -i \.youporn\.com\/(.*)\.flv
acl videocache_allow_url url_regex -i \.msn\.com\.edgesuite\.net\/(.*)\.flv
acl videocache_allow_url url_regex -i \.tube8\.com\/(.*)\.(flv|3gp)
acl videocache_allow_url url_regex -i \.mais\.uol\.com\.br\/(.*)\.flv
acl videocache_allow_url url_regex -i \.blip\.tv\/(.*)\.(flv|avi|mov|mp3|m4v|mp4|wmv|rm|ram|m4v)
acl videocache_allow_url url_regex -i \.apniisp\.com\/(.*)\.(flv|avi|mov|mp3|m4v|mp4|wmv|rm|ram|m4v)
acl videocache_allow_url url_regex -i \.break\.com\/(.*)\.(flv|mp4)
acl videocache_allow_url url_regex -i redtube\.com\/(.*)\.flv
acl videocache_allow_dom dstdomain .mccont.com .metacafe.com .cdn.dailymotion.com
acl videocache_deny_dom dstdomain .download.youporn.com .static.blip.tv
acl dontrewrite url_regex redbot\.org \.php
acl getmethod method GET
storeurl_access deny dontrewrite
storeurl_access deny !getmethod
storeurl_access deny videocache_deny_dom
storeurl_access allow videocache_allow_url
storeurl_access allow videocache_allow_dom
storeurl_access deny all
storeurl_rewrite_program /etc/squid/storeurl.pl
storeurl_rewrite_children 7
storeurl_rewrite_concurrency 100
acl store_rewrite_list urlpath_regex -i \/(get_video\?|videodownload\?|videoplayback.*id)
acl store_rewrite_list urlpath_regex -i \.flv$ \.mp3$ \.mp4$ \.swf$ \
storeurl_access allow store_rewrite_list
storeurl_access deny all
#=============================================
# Refresh Pattern Options
#=============================================
refresh_pattern -i \.flv$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
refresh_pattern -i \.mp3$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
refresh_pattern -i \.mp4$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
refresh_pattern -i \.swf$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
refresh_pattern -i \.gif$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
refresh_pattern -i \.jpg$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
refresh_pattern -i \.jpeg$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
refresh_pattern -i \.exe$ 10080 80% 10080 override-expire override-lastmod reload-into-ims ignore-reload ignore-no-cache ignore-private ignore-auth
# 1 year = 525600 mins, 1 month = 10080 mins, 1 day = 1440
refresh_pattern (get_video\?|videoplayback\?|videodownload\?|\.flv?) 10080 80% 10080 ignore-no-cache ignore-private override-expire override-lastmod reload-into-ims
refresh_pattern (get_video\?|videoplayback\?id|videoplayback.*id|videodownload\?|\.flv?) 10080 80% 10080 ignore-no-cache ignore-private override-expire override-lastmod reload-into-ims
refresh_pattern \.(ico|video-stats) 10080 80% 10080 override-expire ignore-reload ignore-no-cache ignore-private ignore-auth override-lastmod negative-ttl=10080
refresh_pattern \.etology\? 10080 80% 10080 override-expire ignore-reload ignore-no-cache
refresh_pattern galleries\.video(\?|sz) 10080 80% 10080 override-expire ignore-reload ignore-no-cache
refresh_pattern brazzers\? 10080 80% 10080 override-expire ignore-reload ignore-no-cache
refresh_pattern \.adtology\? 10080 80% 10080 override-expire ignore-reload ignore-no-cache
refresh_pattern ^.*(utm\.gif|ads\?|rmxads\.com|ad\.z5x\.net|bh\.contextweb\.com|bstats\.adbrite\.com|a1\.interclick\.com|ad\.trafficmp\.com|ads\.cubics\.com|ad\.xtendmedia\.com|\.googlesyndication\.com|advertising\.com|yieldmanager|game-advertising\.com|pixel\.quantserve\.com|adperium\.com|doubleclick\.net|adserving\.cpxinteractive\.com|syndication\.com|media.fastclick.net).* 10080 20% 10080 ignore-no-cache ignore-private override-expire ignore-reload ignore-auth negative-ttl=40320 max-stale=10
refresh_pattern ^.*safebrowsing.*google 10080 80% 10080 override-expire ignore-reload ignore-no-cache ignore-private ignore-auth negative-ttl=10080
refresh_pattern ^http://((cbk|mt|khm|mlt)[0-9]?)\.google\.co(m|\.uk) 10080 80% 10080 override-expire ignore-reload ignore-private negative-ttl=10080
refresh_pattern ytimg\.com.*\.jpg 10080 80% 10080 override-expire ignore-reload
refresh_pattern images\.friendster\.com.*\.(png|gif) 10080 80% 10080 override-expire ignore-reload
refresh_pattern garena\.com 10080 80% 10080 override-expire reload-into-ims
refresh_pattern photobucket.*\.(jp(e?g|e|2)|tiff?|bmp|gif|png) 10080 80% 10080 override-expire ignore-reload
refresh_pattern vid\.akm\.dailymotion\.com.*\.on2\? 10080 80% 10080 ignore-no-cache override-expire override-lastmod
refresh_pattern mediafire.com\/images.*\.(jp(e?g|e|2)|tiff?|bmp|gif|png) 10080 80% 10080 reload-into-ims override-expire ignore-private
refresh_pattern ^http:\/\/images|pics|thumbs[0-9]\. 10080 80% 10080 reload-into-ims ignore-no-cache ignore-reload override-expire
refresh_pattern ^http:\/\/www.onemanga.com.*\/ 10080 80% 10080 reload-into-ims ignore-no-cache ignore-reload override-expire
refresh_pattern ^http://v\.okezone\.com/get_video\/([a-zA-Z0-9]) 10080 80% 10080 override-expire ignore-reload ignore-no-cache ignore-private ignore-auth override-lastmod negative-ttl=10080
# Images Facebook
refresh_pattern -i \.facebook.com.*\.(jpg|png|gif) 10080 80% 10080 ignore-reload override-expire ignore-no-cache
refresh_pattern -i \.fbcdn.net.*\.(jpg|gif|png|swf|mp3) 10080 80% 10080 ignore-reload override-expire ignore-no-cache
refresh_pattern static\.ak\.fbcdn\.net*\.(jpg|gif|png) 10080 80% 10080 ignore-reload override-expire ignore-no-cache
refresh_pattern ^http:\/\/profile\.ak\.fbcdn.net*\.(jpg|gif|png) 10080 80% 10080 ignore-reload override-expire ignore-no-cache
# All File
refresh_pattern -i \.(3gp|7z|ace|asx|bin|deb|divx|dvr-ms|ram|rpm|exe|inc|cab|qt) 10080 80% 10080 ignore-no-cache override-expire override-lastmod reload-into-ims
refresh_pattern -i \.(rar|jar|gz|tgz|bz2|iso|m1v|m2(v|p)|mo(d|v)|arj|lha|lzh|zip|tar) 10080 80% 10080 ignore-no-cache override-expire override-lastmod reload-into-ims
refresh_pattern -i \.(jp(e?g|e|2)|gif|pn[pg]|bm?|tiff?|ico|swf|dat|ad|txt|dll) 10080 80% 10080 ignore-no-cache override-expire override-lastmod reload-into-ims
refresh_pattern -i \.(avi|ac4|mp(e?g|a|e|1|2|3|4)|mk(a|v)|ms(i|u|p)|og(x|v|a|g)|rm|r(a|p)m|snd|vob) 10080 80% 10080 ignore-no-cache override-expire override-lastmod reload-into-ims
refresh_pattern -i \.(pp(t?x)|s|t)|pdf|rtf|wax|wm(a|v)|wmx|wpl|cb(r|z|t)|xl(s?x)|do(c?x)|flv|x-flv) 10080 80% 10080 ignore-no-cache override-expire override-lastmod reload-into-ims
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern ^ftp: 10080 95% 10080 override-lastmod reload-into-ims
refresh_pattern . 1440 95% 10080 override-lastmod reload-into-ims
#=============================================</pre>
<p>Set owner file /etc/lusca/squid.conf to user and group proxy</p>
<pre><strong>sudo chown proxy:proxy /etc/lusca/squid.conf</strong></pre>
<p><span style="color: #800080;"><strong>Step 5.</strong></span> Create Store Url File Configuration:</p>
<pre><strong>sudo mkdir /etc/squid/</strong></pre>
<pre><strong>sudo touch /etc/squid/storeurl.pl</strong></pre>
<pre><strong>sudo nano /etc/squid/storeurl.pl</strong></pre>
<p><strong>Use the following store url file configurations</strong></p>
<pre>#!/usr/bin/perl
# ==========================================================================
# $Rev$
# by chudy_fernandez@yahoo.com
# Updates at http://wiki.squid-cache.org/ConfigExamples/DynamicContent/YouTube/Discussion
# ==========================================================================
$|=1;
while (&lt;&gt;) {
 @X = split;
# $X[1] =~ s/&amp;sig=.*//;
 $x = $X[0] . " ";
 $_ = $X[1];
 $u = $X[1];
# ==========================================================================
# Speedtest
# ==========================================================================
#if (m/^http:\/\/(.*)\/speedtest\/(.*\.(jpg|txt))\?(.*)/) {
# print $x . "http://www.speedtest.net.SQUIDINTERNAL/speedtest/" . $2 . "\n";
# ==========================================================================
# Mediafire
# ==========================================================================
#} elseif
if (m/^http:\/\/199\.91\.15\d\.\d*\/\w{12}\/(\w*)\/(.*)/) {
 print $x . "http://www.mediafire.com.SQUIDINTERNAL/" . $1 ."/" . $2 . "\n";
# ==========================================================================
# Fileserve
# ==========================================================================
} elsif (m/^http:\/\/fs\w*\.fileserve\.com\/file\/(\w*)\/[\w-]*\.\/(.*)/) {
 print $x . "http://www.fileserve.com.SQUIDINTERNAL/" . $1 . "./" . $2 . "\n";
# ==========================================================================
# Filesonic
# ==========================================================================
} elsif (m/^http:\/\/s[0-9]*\.filesonic\.com\/download\/([0-9]*)\/(.*)/) {
 print $x . "http://www.filesonic.com.SQUIDINTERNAL/" . $1 . "\n";
# ==========================================================================
# 4shared
# ==========================================================================
} elsif (m/^http:\/\/[a-zA-Z]{2}\d*\.4shared\.com(:8080|)\/download\/(.*)\/(.*\..*)\?.*/) {
 print $x . "http://www.4shared.com.SQUIDINTERNAL/download/$2\/$3\n";
# ==========================================================================
# 4shared preview
# ==========================================================================
} elsif (m/^http:\/\/[a-zA-Z]{2}\d*\.4shared\.com(:8080|)\/img\/(\d*)\/\w*\/dlink__2Fdownload_2F(\w*)_3Ftsid_3D[\w-]*\/preview\.mp3\?sId=\w*/) {
 print $x . "http://www.4shared.com.SQUIDINTERNAL/$2\n";
# ==========================================================================
# Photos-X.ak.fbcdn.net where X a-z
# ==========================================================================
} elsif (m/^http:\/\/photos-[a-z](\.ak\.fbcdn\.net)(\/.*\/)(.*\.jpg)/) {
 print $x . "http://photos" . $1 . "/" . $2 . $3 . "\n";
# ==========================================================================
# YX.sphotos.ak.fbcdn.net where X 1-9, Y a-z
# ==========================================================================
} elsif (m/^http:\/\/[a-z][0-9]\.sphotos\.ak\.fbcdn\.net\/(.*)\/(.*)/) {
 print $x . "http://photos.ak.fbcdn.net/" . $1 ."/". $2 . "\n";
# ==========================================================================
# maps.google.com
# ==========================================================================
} elsif (m/^http:\/\/(cbk|mt|khm|mlt|tbn)[0-9]?(.google\.co(m|\.uk|\.id).*)/) {
 print $x . "http://" . $1 . $2 . "\n";
# ==========================================================================
# Compatibility for old cached get_video?video_id
# ==========================================================================
} elsif (m/^http:\/\/([0-9.]{4}|.*\.youtube\.com|.*\.googlevideo\.com|.*\.video\.google\.com).*?(videoplayback\?id=.*?|video_id=.*?)\&amp;(.*?)/) {
 $z = $2; $z =~ s/video_id=/get_video?video_id=/;
 print $x . "http://video-srv.youtube.com.SQUIDINTERNAL/" . $z . "\n";
# ==========================================================================
# Youtube fix
# ==========================================================================
} elsif (m/^http:\/\/([0-9.]{4}|.*\.youtube\.com|.*\.googlevideo\.com|.*\.video\.google\.com)\/videoplayback\?(.*)/) {
 $p_str = $2;
 $tag = "";
 $alg = "";
 $id = "";
 $range = "";
 if ($p_str =~ m/(itag=[0-9]*)/){$tag = "&amp;".$1}
 if ($p_str =~ m/(algorithm=[a-z]*\-[a-z]*)/){$alg = "&amp;".$1}
 if ($p_str =~ m/(id=[a-zA-Z0-9]*)/){$id = "&amp;".$1}
 if ($p_str =~ m/(range=[0-9\-]*)/){$range = "&amp;".$1; $range =~ s/-//; $range =~ s/range=//; }
 print $x . "http://video-srv.youtube.com.SQUIDINTERNAL/" . $tag . "&amp;" . $alg . "&amp;" . $id . "&amp;" . $range . "\n";
# ==========================================================================
# Google Analytic
# ==========================================================================
} elsif (m/^http:\/\/www\.google-analytics\.com\/__utm\.gif\?.*/) {
 print $x . "http://www.google-analytics.com/__utm.gif\n";
# ==========================================================================
# Cache High Latency Ads
# ==========================================================================
} elsif (m/^http:\/\/([a-z0-9.]*)(\.doubleclick\.net|\.quantserve\.com|\.googlesyndication\.com|yieldmanager|cpxinteractive)(.*)/) {
 $y = $3;$z = $2;
 for ($y) {
 s/pixel;.*/pixel/;
 s/activity;.*/activity/;
 s/(imgad[^&amp;]*).*/\1/;
 s/;ord=[?0-9]*//;
 s/;&amp;timestamp=[0-9]*//;
 s/[&amp;?]correlator=[0-9]*//;
 s/&amp;cookie=[^&amp;]*//;
 s/&amp;ga_hid=[^&amp;]*//;
 s/&amp;ga_vid=[^&amp;]*//;
 s/&amp;ga_sid=[^&amp;]*//;
 # s/&amp;prev_slotnames=[^&amp;]*//
 # s/&amp;u_his=[^&amp;]*//;
 s/&amp;dt=[^&amp;]*//;
 s/&amp;dtd=[^&amp;]*//;
 s/&amp;lmt=[^&amp;]*//;
 s/(&amp;alternate_ad_url=http%3A%2F%2F[^(%2F)]*)[^&amp;]*/\1/;
 s/(&amp;url=http%3A%2F%2F[^(%2F)]*)[^&amp;]*/\1/;
 s/(&amp;ref=http%3A%2F%2F[^(%2F)]*)[^&amp;]*/\1/;
 s/(&amp;cookie=http%3A%2F%2F[^(%2F)]*)[^&amp;]*/\1/;
 s/[;&amp;?]ord=[?0-9]*//;
 s/[;&amp;]mpvid=[^&amp;;]*//;
 s/&amp;xpc=[^&amp;]*//;
 # yieldmanager
 s/\?clickTag=[^&amp;]*//;
 s/&amp;u=[^&amp;]*//;
 s/&amp;slotname=[^&amp;]*//;
 s/&amp;page_slots=[^&amp;]*//;
}
 print $x . "http://" . $1 . $2 . $y . "\n";
# ==========================================================================
# Cache high latency ads
# ==========================================================================
} elsif (m/^http:\/\/(.*?)\/(ads)\?(.*?)/) {
 print $x . "http://" . $1 . "/" . $2 . "\n";
# ==========================================================================
# spicific servers starts here....
# ==========================================================================
} elsif (m/^http:\/\/(www\.ziddu\.com.*\.[^\/]{3,4})\/(.*?)/) {
 print $x . "http://" . $1 . "\n";
# ==========================================================================
# cdn, varialble 1st path
# ==========================================================================
} elsif (($u =~ /filehippo/) &amp;&amp; (m/^http:\/\/(.*?)\.(.*?)\/(.*?)\/(.*)\.([a-z0-9]{3,4})(\?.*)?/)) {
 @y = ($1,$2,$4,$5);
 $y[0] =~ s/[a-z0-9]{2,5}/cdn./;
 print $x . "http://" . $y[0] . $y[1] . "/" . $y[2] . "." . $y[3] . "\n";
# ==========================================================================
# Rapidshare
# ==========================================================================
} elsif (($u =~ /rapidshare/) &amp;&amp; (m/^http:\/\/(([A-Za-z]+[0-9-.]+)*?)([a-z]*\.[^\/]{3}\/[a-z]*\/[0-9]*)\/(.*?)\/([^\/\?\&amp;]{4,})$/)) {
 print $x . "http://cdn." . $3 . "/SQUIDINTERNAL/" . $5 . "\n";
} elsif (($u =~ /maxporn/) &amp;&amp; (m/^http:\/\/([^\/]*?)\/(.*?)\/([^\/]*?)(\?.*)?$/)) {
 print $x . "http://" . $1 . "/SQUIDINTERNAL/" . $3 . "\n";
# ==========================================================================
# like porn hub variables url and center part of the path, filename etention 3 or 4 with or without ? at the end
# ==========================================================================
} elsif (($u =~ /tube8|pornhub|xvideos/) &amp;&amp; (m/^http:\/\/(([A-Za-z]+[0-9-.]+)*?(\.[a-z]*)?)\.([a-z]*[0-9]?\.[^\/]{3}\/[a-z]*)(.*?)((\/[a-z]*)?(\/[^\/]*){4}\.[^\/\?]{3,4})(\?.*)?$/)) {
 print $x . "http://cdn." . $4 . $6 . "\n";
#...spicific servers end here.
# ==========================================================================
# Photos-X.ak.fbcdn.net where X a-z
# ==========================================================================
} elsif (m/^http:\/\/photos-[a-z].ak.fbcdn.net\/(.*)/) {
 print $x . "http://photos.ak.fbcdn.net/" . $1 . "\n";
# ==========================================================================
# For yimg.com video
# ==========================================================================
} elsif (m/^http:\/\/(.*yimg.com)\/\/(.*)\/([^\/\?\&amp;]*\/[^\/\?\&amp;]*\.[^\/\?\&amp;]{3,4})(\?.*)?$/) {
 print $x . "http://cdn.yimg.com//" . $3 . "\n";
# ==========================================================================
# For yimg.com doubled
# ==========================================================================
} elsif (m/^http:\/\/(.*?)\.yimg\.com\/(.*?)\.yimg\.com\/(.*?)\?(.*)/) {
 print $x . "http://cdn.yimg.com/" . $3 . "\n";
# ==========================================================================
# For yimg.com with &amp;sig=
# ==========================================================================
} elsif (m/^http:\/\/(.*?)\.yimg\.com\/(.*)/) {
 @y = ($1,$2);
 $y[0] =~ s/[a-z]+[0-9]+/cdn/;
 $y[1] =~ s/&amp;sig=.*//;
 print $x . "http://" . $y[0] . ".yimg.com/" . $y[1] . "\n";
# ==========================================================================
# Youjizz. We use only domain and filename
# ==========================================================================
} elsif (($u =~ /media[0-9]{2,5}\.youjizz/) &amp;&amp; (m/^http:\/\/(.*)(\.[^\.\-]*?\..*?)\/(.*)\/([^\/\?\&amp;]*)\.([^\/\?\&amp;]{3,4})((\?|\%).*)?$/)) {
 @y = ($1,$2,$4,$5);
 $y[0] =~ s/(([a-zA-A]+[0-9]+(-[a-zA-Z])?$)|(.*cdn.*)|(.*cache.*))/cdn/;
 print $x . "http://" . $y[0] . $y[1] . "/" . $y[2] . "." . $y[3] . "\n";
# ==========================================================================
# General purpose for cdn servers. add above your specific servers.
# ==========================================================================
} elsif (m/^http:\/\/([0-9.]*?)\/\/(.*?)\.(.*)\?(.*?)/) {
 print $x . "http://squid-cdn-url//" . $2 . "." . $3 . "\n";
# ==========================================================================
# Generic http://variable.domain.com/path/filename."ex" "ext" or "exte" with or withour "? or %"
# ==========================================================================
} elsif (m/^http:\/\/(.*)(\.[^\.\-]*?\..*?)\/(.*)\.([^\/\?\&amp;]{2,4})((\?|\%).*)?$/) {
 @y = ($1,$2,$3,$4);
 $y[0] =~ s/(([a-zA-A]+[0-9]+(-[a-zA-Z])?$)|(.*cdn.*)|(.*cache.*))/cdn/;
 print $x . "http://" . $y[0] . $y[1] . "/" . $y[2] . "." . $y[3] . "\n";
# ==========================================================================
# generic http://variable.domain.com/...
# ==========================================================================
} elsif (m/^http:\/\/(([A-Za-z]+[0-9-]+)*?|.*cdn.*|.*cache.*)\.(.*?)\.(.*?)\/(.*)$/) {
 print $x . "http://cdn." . $3 . "." . $4 . "/" . $5 . "\n";
# ==========================================================================
# spicific extention that ends with ?
# ==========================================================================
} elsif (m/^http:\/\/(.*?)\/(.*?)\.(jp(e?g|e|2)|gif|png|tiff?|bmp|ico|flv|on2)(.*)/) {
 print $x . "http://" . $1 . "/" . $2 . "." . $3 . "\n";
# ==========================================================================
# all that ends with ;
# ==========================================================================
} elsif (m/^http:\/\/(.*?)\/(.*?)\;(.*)/) {
 print $x . "http://" . $1 . "/" . $2 . "\n";
} else {
 print $x . $_ . "sucks\n";
}
}
#=================================EOF=======================================</pre>
<p>Change Owner and permision file <em>/etc/squid/storeurl.pl</em></p>
<pre><strong>sudo chown proxy:proxy /etc/squid/storeurl.pl</strong></pre>
<pre><strong>sudo chmod +x /etc/squid/storeurl.pl</strong></pre>
<p><span style="color: #800080;"><strong>Step 6. </strong></span>Change owner and permission lusca cache directory</p>
<pre><strong>sudo chown proxy:proxy /cache-{1,2,3,4,5}</strong></pre>
<pre><strong>sudo chmod 777 /cache-{1,2,3,4,5}</strong></pre>
<p><strong><span style="color: #800080;">Step 7.</span> Debug</strong> lusca, to check any erros with following command</p>
<pre><strong>lusca -d1</strong></pre>
<p><span style="color: #800080;"><strong>Step 8.</strong> </span>IF ni have error Restart lusca daemon with following command</p>
<pre><strong>sudo /etc/init.d/lusca restart</strong></pre>
<p><strong>or</strong></p>
<pre><strong>sudo service lusca restart</strong></pre>
<p><span style="color: #800080;"><strong>Step 9.</strong></span> Monitoring lusca <em>access.log :</em></p>
<pre><strong>sudo tail -f /var/log/lusca/access.log | ccze</strong></pre>
<p><img class="aligncenter size-full wp-image-848" title="Log access.log - Proxy Lusca" src="http://ubuntuserverguide.com/wp-content/uploads/2012/12/Log-access.log-Proxy-Lusca.png" alt="Log access.log Proxy Lusca How to Install and Configure Lusca as Proxy Server in Ubuntu Server 12.04" width="564" height="415" /></p>
<p>you can also monitoring lusca using command : <strong>squidclient mgr:info</strong></p>
<p>Link reference:</p>
<ul>
<li><a rel="nofollow" title="Lusca web/proxy cache" href="http://www.lusca.org/">Lusca Web/Proxy Cache</a></li>
<li><a rel="nofollow" title="Lusca Project" href="http://code.google.com/p/lusca-cache/">Lusca Project</a></li>
<li><a rel="nofollow" href="https://apps.ubuntu.com/cat/applications/lusca/">Lusca for Ubuntu</a></li>
</ul>
<p>The post <a href="http://ubuntuserverguide.com/2012/12/how-to-install-and-configure-lusca-as-proxy-server-in-ubuntu-server-12-04.html">How to Install and Configure Lusca as Proxy Server in Ubuntu Server 12.04</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2012/12/how-to-install-and-configure-lusca-as-proxy-server-in-ubuntu-server-12-04.html/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>How to Install ZpanelX Web Hosting Control Panel on Ubuntu Server 12.04</title>
		<link>http://ubuntuserverguide.com/2012/11/how-to-install-zpanelx-web-hosting-control-panel-on-ubuntu-server-12-04.html</link>
		<comments>http://ubuntuserverguide.com/2012/11/how-to-install-zpanelx-web-hosting-control-panel-on-ubuntu-server-12-04.html#comments</comments>
		<pubDate>Wed, 21 Nov 2012 04:00:02 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Web Server]]></category>
		<category><![CDATA[Control Panel]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Zpanelx]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=723</guid>
		<description><![CDATA[<p>About Zpanel Zpanel is free and open source web hosting control panel designed to work on platform Linux, Unix, Mac OSX and Windows OS based servers or computers. It easy to use and manage web hosting server for SOHO (Small Office Home Office) or professional servers. ZpanelX support for unlimited resellers and  flawlessly integrates with MySQL Server, [...]</p><p>The post <a href="http://ubuntuserverguide.com/2012/11/how-to-install-zpanelx-web-hosting-control-panel-on-ubuntu-server-12-04.html">How to Install ZpanelX Web Hosting Control Panel on Ubuntu Server 12.04</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><h3><strong>About Zpanel</strong></h3>
<p style="text-align: justify;"><strong><a rel="nofollow" title="zpanel - Web hosting control panel " href="http://zpanelcp.com" rel="nofollow" target="_blank">Zpanel</a></strong> is free and open source web hosting control panel designed to work on platform Linux, Unix, Mac OSX and Windows OS based servers or computers. It easy to use and manage web hosting server for SOHO (Small Office Home Office) or professional servers.</p>
<p style="text-align: justify;"><strong>ZpanelX</strong> support for unlimited resellers and  flawlessly integrates with MySQL Server, Apache2, hMailServer (on Microsoft Windows), Posfix (on Linux Distribution) and Filezilla (on Microsoft Windows) or ProFTPd (on Linux Distribution). For more detail about <em>Zpanelx</em> feature  you can check out @<a rel="nofollow" title="zpanel feature" href="http://www.zpanelcp.com/page/features" rel="nofollow" target="_blank"><span style="text-decoration:underline;">Zpanel</span>_Feature_Page</a></p>
<h2 style="text-align: justify;">Step-by-Step to Install ZpanelX 10.0.0 on Ubuntu Server 12.04</h2>
<p style="text-align: justify;">This guide will show Step-by-step to install Zpanelx 10 web hosting control panel  in ubuntu 12.04 LTS Server edition. There are two methods  to installing Zpanelx: <strong>Methods 1)</strong>. Install automatically using script auto-installer . <strong>Methods 2)</strong> Install manually, direct download source Zpanelx then install and config manually. It is recommended that you only install ZPanelx 10 on a fresh installation of Ubuntu Server. On this case my <strong>IP Address</strong> : 192.168.56.2 and <strong>Hostname :</strong> preciseserver</p>
<h3><strong>Method 1 : Install automatically using script auto-installer</strong></h3>
<p><span style="color: #800080;"><strong>Step 1.</strong></span> Login to your server  using ssh and make sure you have all the latest security updates for Ubuntu Server 12.04 by running following commands</p>
<pre><strong>sudo apt-get update</strong></pre>
<pre><strong>sudo apt-get upgrade</strong></pre>
<p><span style="color: #800080;"><strong>Step 2.</strong> </span>Download script Zpanelx10 auto-installer for Ubuntu 12.04. This script work on Ubuntu server 12.04 x64 and Ubuntu server 12.04 x86.</p>
<pre><strong>wget https://dl.dropbox.com/u/50880014/ZPX_ubuntu_12-04_auto_installer.v1.02.zip</strong></pre>
<p><span style="color: #800080;"><strong>Step 3.</strong> </span>Install package <strong>tofrodos </strong> using apt-get command.</p>
<pre><strong>sudo apt-get install tofrodos</strong></pre>
<p style="text-align: justify;">Tofrodos comprises one program, &#8220;fromdos&#8221; alias &#8220;todos&#8221;, which converts text files to and from these formats. Use &#8220;fromdos&#8221; to convert DOS text files to the Unix format, and &#8220;todos&#8221; to convert Unix text files to the DOS format.</p>
<p><span style="color: #800080;"><strong>Step 4.</strong></span> Unzip <em>ZPX_ubuntu_12-04_auto_installer.v1.02.zip</em> then convert these script from DOS text files to the Unix format using <strong>fromdos</strong> command.</p>
<pre><strong>unzip ZPX_ubuntu_12-04_auto_installer.v1.02.zip</strong></pre>
<pre><strong>sudo fromdos ZPX_ubuntu_12-04_auto_installer.sh</strong></pre>
<p><strong><span style="color: #800080;">Step 5.</span> </strong>Change the permission of the install script so it can be executed.</p>
<pre><strong>chmod +x ZPX_ubuntu_12-04_auto_installer.sh</strong></pre>
<p>Run the installation script to disable AppArmor daemon</p>
<pre><strong>sudo ./ZPX_ubuntu_12-04_auto_installer.sh</strong></pre>
<p>Reboot your computer</p>
<pre><strong>sudo init 6</strong></pre>
<p><strong> <span style="color: #800080;">Step 6. </span></strong>After reboot, run again  installation script.</p>
<pre><strong>sudo ./ZPX_ubuntu_12-04_auto_installer.sh</strong></pre>
<p>This script ask for all of the required information (such as IP address, Hostname/domain and Mysql password)</p>
<pre>===================================================
= Starting Auto Installer for ZPX on Ubuntu 12.04 =
===================================================
=-------------------------------------------------=
= By Xengulai (xengulai@xengulai.com) =
=-------------------------------------------------=
===================================================
Variable collection:
Enter Server Public IP Address: 192.168.56.2
Enter server name:
(this should be the reverse lookup of 192.168.56.2)
(ex. zeus.zpanelcp.com): preciseserver
Enter FQDN for ZPX (ex. panel.zpanelcp.com): preciseserver
Enter MySQL root password: reloaded
Updating Aptitude Repos: Done.
Creating initial folder structure: Done.
Downloading / Extracting ZPX From SF to Temp Directory at /opt/zpanel: Done.
Copying ZpanelX files to /etc/zpanel: Done.
Registering 'zppy' client: Done.
Installing main packages: Done.
Setting Zpanel MySQL access: Done.
Importing Zpanel Core Database: Done.
Setting up Apache configuration to work with ZPX: Done.
Setting up Network info for ZPX and Compiling Default VHOST: Done.
Configuring Postfix and Dovecot: Done.
Configuring Roundcube: Done.
Installing and Configuring ProFTPD: Done.
Installing and Configuring BIND: Done.
Compiling zsudo: Done.
Setting cron for daemon.php: Done.
Registering ZPPY Client: Done.
Removing temp files: Done.
Restarting all necessary services:
-- Apache2 Web Server Restarted Successfully
-- Postfix Server Restarted Successfully
-- Dovecot Server Restarted Successfully
-- ProFTPD Server Restarted Successfully
-- MySQL Server Restarted Successfully
-- Bind9 Server Restarted Successfully
Installing ballen/rustus zppy repo and modules:
-- gatekeeper: installed
-- system_logviewer: installed
-- kfm: installed
-- ftp_browser: installed
-- visitor_stats: installed
=====================================================================
= Installation and Configuration of ZPX on Ubuntu 12.04 is Complete =
=====================================================================
=====================================================================
= Install Log can be found at /home/precise/zpx_install.log
=====================================================================
=====================================================================
= Please REBOOT the server and open: =
= http://preciseserver/zpanel
= or =
= http://192.168.56.2/zpanel
= =
= USER: zadmin =
= PASS: password (Change on 1st login!) =
=====================================================================
=====================================================================
= This script is not written by official ZPX Support =
= Please do not ask them for official support on this =
=====================================================================
=...................................................................=
= By Xengulai (xengulai@xengulai.com) =
=...................................................................=</pre>
<p><strong><span style="color: #800080;"> Step 7.</span> </strong>Download and Install post-installation patches/sql script</p>
<pre><strong>wget https://dl.dropbox.com/u/50880014/post-install_patches.zip</strong></pre>
<pre><strong>unzip post-install_patches.zip</strong></pre>
<pre><strong>mysql -u root -p YOUR_ROOT_MYSQL_PASSWORD &lt; /home/precise/post-install_patches.sql</strong></pre>
<pre><strong>sudo cp -R /home/precise/panel/* /etc/zpanel/panel/* </strong></pre>
<h3>
<p>The post <a href="http://ubuntuserverguide.com/2012/11/how-to-install-zpanelx-web-hosting-control-panel-on-ubuntu-server-12-04.html">How to Install ZpanelX Web Hosting Control Panel on Ubuntu Server 12.04</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2012/11/how-to-install-zpanelx-web-hosting-control-panel-on-ubuntu-server-12-04.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Create Bootable Ubuntu Server 12.10 Installer USB Drive</title>
		<link>http://ubuntuserverguide.com/2012/11/how-to-create-ubuntu-server-12-10-installer-bootable-usb-drive.html</link>
		<comments>http://ubuntuserverguide.com/2012/11/how-to-create-ubuntu-server-12-10-installer-bootable-usb-drive.html#comments</comments>
		<pubDate>Sun, 18 Nov 2012 03:15:11 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Bootable Installer]]></category>
		<category><![CDATA[Ubuntu Server 12.10]]></category>
		<category><![CDATA[USB Drive]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=514</guid>
		<description><![CDATA[<p>This tutorial will explain how to make bootable installer usb flash drive for ubuntu server 12.10 in ubuntu desktop. In order to make a Bootable Ubuntu Server USB Stick you will need: A USB drive with at least 700 MB in size. Ubuntu Server 12.10 ISO image. Download here To create bootable ubuntu server 12.10 usb drive [...]</p><p>The post <a href="http://ubuntuserverguide.com/2012/11/how-to-create-ubuntu-server-12-10-installer-bootable-usb-drive.html">How to Create Bootable Ubuntu Server 12.10 Installer USB Drive</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>This tutorial will explain how to make bootable installer usb flash drive for ubuntu server 12.10 in ubuntu desktop. In order to make a Bootable Ubuntu Server USB Stick you will need:</p>
<ul>
<li>A USB drive with at least 700 MB in size.</li>
<li>Ubuntu Server 12.10 ISO image. Download <a rel="nofollow" title="download ubuntu server" href="http://www.ubuntu.com/download/server">here</a></li>
</ul>
<p style="text-align: justify;"><span style="text-align: justify;">To create bootable ubuntu server 12.10 usb drive installer in ubuntu desktop very easy, for this tutorial we will use Unetbootin. Unetbootin (Universal Netboot Installer abbreviation) is a program that runs on Windows or Linux, and can create </span><acronym style="text-align: justify;" title="Universal Serial Bus">USB</acronym><span style="text-align: justify;"> Installation Linux distributions ( such us ubuntu, debian, linuxmint, fedora etc ).</span></p>
<p><strong>Unmount and format usb flash drive using Gparted</strong></p>
<p>Open gparted, select USB flash drive</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-763" title="Select USB flash drive" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/Select-USB-flash-drive-.png" alt="Select USB flash drive  How to Create Bootable Ubuntu Server 12.10 Installer USB Drive" width="628" height="532" /></p>
<p>Unmount USB flash drive</p>
<p><img class="aligncenter  wp-image-762" title="Unmount USB Flash drive" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/Unmount-USB-Flash-drive.png" alt="Unmount USB Flash drive How to Create Bootable Ubuntu Server 12.10 Installer USB Drive" width="622" height="423" /></p>
<p>Format USB flash drive to filesystem FAT32</p>
<p><img class="aligncenter size-full wp-image-764" title="Format USB Flash Drive to fat32" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/Format-USB-Flash-Drive-to-fat32.png" alt="Format USB Flash Drive to fat32 How to Create Bootable Ubuntu Server 12.10 Installer USB Drive" width="628" height="532" /><br />
if no action, apply all operation from menu <strong><em>Edit -&gt; Apply all operations</em></strong>. close Gparted</p>
<p>Install unetbootin using personal packge archieve (PPA)</p>
<pre><strong>sudo apt-add-repository ppa:gezakovacs/ppa</strong></pre>
<pre><strong>sudo apt-get update</strong></pre>
<pre><strong>sudo apt-get install unetbootin</strong></pre>
<p style="text-align: justify;">Launch Unetbootin (require root authentication), select the Ubuntu Server 12.10 <acronym title="International Organization for Standardization">ISO</acronym> image previously downloaded to the hard disk, Check the installation destination is your <acronym title="Universal Serial Bus">USB</acronym> Flash Drive. Click OK to start copying all file required for installer to USB Flash drive</p>
<p>
<a href='http://ubuntuserverguide.com/2012/11/how-to-create-ubuntu-server-12-10-installer-bootable-usb-drive.html/unetbootin-ubuntu-server-12-04' title='UNetbootin - Ubuntu Server 12.04'><img width="200" height="147" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/UNetbootin-Ubuntu-Server-12.04-200x147.png" class="attachment-medium" alt="UNetbootin Ubuntu Server 12.04 200x147 How to Create Bootable Ubuntu Server 12.10 Installer USB Drive" title="UNetbootin - Ubuntu Server 12.04" /></a>
<a href='http://ubuntuserverguide.com/2012/11/how-to-create-ubuntu-server-12-10-installer-bootable-usb-drive.html/unetbootin-extracting-and-copying-ubuntu-installer' title='Unetbootin - Extracting and Copying Ubuntu Server 12.10 installer'><img width="200" height="147" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/Unetbootin-Extracting-and-Copying-ubuntu-installer--200x147.png" class="attachment-medium" alt="Unetbootin Extracting and Copying ubuntu installer  200x147 How to Create Bootable Ubuntu Server 12.10 Installer USB Drive" title="Unetbootin - Extracting and Copying Ubuntu Server 12.10 installer" /></a>
<br />
Besides Unetbootin, in ubuntu there are a few app that can use for creating ubuntu server bootable on usb drive such as (start up disk creator and multisystem).</p>
<p>If you want to create bootable installer Ubuntu Server usb drive in Windows 7, you need to download <a rel="nofollow" href="http://www.pendrivelinux.com/downloads/Universal-USB-Installer/Universal-USB-Installer-1.9.1.5.exe"><strong>universal usb installer</strong></a> App. launch <strong>Universal USB Installer</strong>, Browse and select Ubuntu Server 12.10 ISO image Installer and  follow the onscreen instructions.</p>
<p>Now, you have ubuntu server 12.10 installer on USB stick. To install ubuntu server 12.10 from usb stick, plug in your usb stick to your computer and boot from USB drive. <a title="Ubuntu Server 12.10 Quantal Quetzal Installation Guide" href="http://ubuntuserverguide.com/2012/10/ubuntu-server-12-10-quantal-quetzal-installation-guide.html">Read the Ubuntu Server 12.10 Installation instructions</a>.</p>
<p>The post <a href="http://ubuntuserverguide.com/2012/11/how-to-create-ubuntu-server-12-10-installer-bootable-usb-drive.html">How to Create Bootable Ubuntu Server 12.10 Installer USB Drive</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2012/11/how-to-create-ubuntu-server-12-10-installer-bootable-usb-drive.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Install Zentyal 3.0 on Ubuntu Server 12.04 LTS</title>
		<link>http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html</link>
		<comments>http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html#comments</comments>
		<pubDate>Mon, 12 Nov 2012 06:44:36 +0000</pubDate>
		<dc:creator>ncode</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Zentyal]]></category>

		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=403</guid>
		<description><![CDATA[<p>This guide will show how to install zentyal 3.0 in ubuntu 12.04.  Zentyal, developer of the Linux Small Business Server of the same name, offers small and medium businesses affordable and easy-to-use network infrastructure solutions. By using Zentyal server and its cloud-based services, SMBs are able to improve the reliability and security of their computer [...]</p><p>The post <a href="http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html">How to Install Zentyal 3.0 on Ubuntu Server 12.04 LTS</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">This guide will show how to install zentyal 3.0 in ubuntu 12.04<strong>.  </strong>Zentyal, developer of the Linux Small Business Server of the same name, offers small and medium businesses affordable and easy-to-use network infrastructure solutions. By using Zentyal server and its cloud-based services, SMBs are able to improve the reliability and security of their computer network and to reduce their IT investments and operational costs.</p>
<p style="text-align: justify;"><strong>Zentyal</strong> 3.0 has been released announced by <em>Zentyal</em> Development Team, come with a new Single Sign-On feature, based on Kerberos OSS (open source software). This feature removes the need for users to enter credentials every time they wants to access network services such as email, file sharing, or browse the Internet through a proxy. Because of Samba4 integration, this feature works out of the box for Windows desktops. In additonal, with Zentyal can also install and configure using a web interface, services like Squid, Dansguardian, L7-Filter, Snort or Asterisk etc.</p>
<h2>Install Zentyal 3.0</h2>
<p>There are two methods to install Zentyal 3.0:</p>
<p style="text-align: justify;"><strong>First Method. </strong>Download distribution Zentyal 3.0 (based on Ubuntu Server 12.04 LTS) for both 32-bit and 64-bit from <a rel="nofollow" title="download zentyal 3.0 distro" href="http://www.zentyal.org/downloads">Zentyal download page</a>  (require registration) and install it on your machine. The process is largely unchanged from <a title="How to Install Ubuntu Server 12.04 LTS Precise Pangolin – Included Screenshot" href="http://ubuntuserverguide.com/2012/05/how-to-install-ubuntu-server-12-04-lts-precise-pangolin-included-screenshot.html">installing Ubuntu Server 12.04 LTS</a>.</p>
<p><strong>Second Method.</strong> Install Zentyal 3.0 from Personal Package Archives (PPA). To installing module any of zentyal 3.0 in ubuntu server 12.04 add the following ppa:</p>
<pre><strong>sudo apt-get install -y python-software-properties</strong></pre>
<pre><strong>sudo apt-add-repository ppa:zentyal/3.0</strong></pre>
<pre><strong>sudo apt-get update</strong></pre>
<pre><strong>sudo apt-get install -y zentyal</strong></pre>
<p style="text-align: justify;">During the installation we have to choose the port that will be used for connections Zentyal HTTPS, default 443. After the installation of Zentyal 3.0 go to another computer on the network. Open a browser  then type IP address of the Ubuntu Server where you have installed using protocol HTTPS [https://ipserver]</p>

<a href='http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html/untrusted-connection-zentyal-3-0' title='Untrusted Connection - Zentyal 3.0'><img width="200" height="168" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/Untrusted-Connection-Zentyal-3.0-200x168.png" class="attachment-medium" alt="Untrusted Connection Zentyal 3.0 200x168 How to Install Zentyal 3.0 on Ubuntu Server 12.04 LTS" title="Untrusted Connection - Zentyal 3.0" /></a>
<a href='http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html/login-to-zentyal-3-0' title='login to Zentyal 3.0'><img width="200" height="168" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/login-to-Zentyal-3.0-200x168.png" class="attachment-medium" alt="login to Zentyal 3.0 200x168 How to Install Zentyal 3.0 on Ubuntu Server 12.04 LTS" title="login to Zentyal 3.0" /></a>
<a href='http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html/zentyal-dashboard' title='Zentyal - Dashboard'><img width="200" height="151" src="http://ubuntuserverguide.com/wp-content/uploads/2012/11/Zentyal-Dashboard--200x151.png" class="attachment-medium" alt="Zentyal Dashboard  200x151 How to Install Zentyal 3.0 on Ubuntu Server 12.04 LTS" title="Zentyal - Dashboard" /></a>

<p>If you want to install a few zentyal 3.0 modules you can also install any module of the following list by running command:</p>
<pre><strong>sudo apt-get install zentyal-&lt;modulename&gt;</strong></pre>
<p><strong>List of zentyal-&lt;module&gt;</strong></p>
<table class="aligncenter" style="text-align: left; width: 728px; height: 32px;" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td style="vertical-align: top;">
<pre>zentyal-antivirus
zentyal-asterisk
zentyal-ca
zentyal-dhcp
zentyal-dns
zentyal-ebackup
zentyal-firewall
zentyal-ftp
zentyal-ids
zentyal-jabber
zentyal-l7-protocols</pre>
</td>
<td style="vertical-align: top;">
<pre>zentyal-ltsp
zentyal-mail
zentyal-mailfilter
zentyal-monitor
zentyal-network
zentyal-ntp
zentyal-nut
zentyal-objects
zentyal-openvpn
zentyal-printers
zentyal-remoteservices</pre>
</td>
<td style="vertical-align: top;">
<pre>zentyal-samba
zentyal-services
zentyal-software
zentyal-squid
zentyal-trafficshaping
zentyal-users
zentyal-usercorner
zentyal-webserver
zentyal-radius
zentyal-webmail
zentyal-zarafa</pre>
</td>
</tr>
</tbody>
</table>
<p>Link Reference:</p>
<ul>
<li><a rel="nofollow" href="https://launchpad.net/~zentyal">Zentyal Developer</a></li>
<li><a rel="nofollow" href="http://trac.zentyal.org/wiki/Documentation/Community/Installation/InstallationGuide">Zentyal Installation Guide</a></li>
</ul>
<p>The post <a href="http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html">How to Install Zentyal 3.0 on Ubuntu Server 12.04 LTS</a> appeared first on <a href="http://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuserverguide.com/2012/11/how-to-instal-zentyal-3-0-on-ubuntu-server-12-04-lts.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.585 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-21 15:14:38 -->

<!-- Compression = gzip -->