<?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>Tutoriale Linux &#187; instalare</title>
	<atom:link href="http://www.linux-tutorial.eu/tag/instalare/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linux-tutorial.eu</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 10:38:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Instalare PHP din surse</title>
		<link>http://www.linux-tutorial.eu/php/instalare-php-din-surse/</link>
		<comments>http://www.linux-tutorial.eu/php/instalare-php-din-surse/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 20:04:05 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[instalare]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[surse]]></category>

		<guid isPermaLink="false">http://www.linux-tutorial.eu/?p=213</guid>
		<description><![CDATA[Obtineti codul sursa ce va fi compilat si instalat, in acest tutorial folosim versiunea 5.3.8: http://ro.php.net/distributions/php-5.3.8.tar.bz2 root@bsdpc[~/work] # wget http://ro.php.net/distributions/php-5.3.8.tar.bz2 root@bsdpc[~/work] # tar jxvf php-5.3.8.tar.bz2 root@bsdpc[~/work] # cd php-5.3.8/ root@bsdpc[~/work/php-5.3.8] # ./configure --with-mysql=/usr/local/mysql/ \ 2> --with-apxs2=/usr/local/apache2/bin/apxs \ 2> --with-openssl --with-bz2 --enable-ftp \ 2> --enable-mbstring --enable-bcmath --enable-calendar \ 2> --enable-mbregex --enable-magic-quotes \ 2> --with-pear --enable-sockets root@bsdpc[~/work/php-5.3.8] [...]]]></description>
		<wfw:commentRss>http://www.linux-tutorial.eu/php/instalare-php-din-surse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalare Apache Web Server din surse</title>
		<link>http://www.linux-tutorial.eu/apache/instalare-apache-web-server-din-surse/</link>
		<comments>http://www.linux-tutorial.eu/apache/instalare-apache-web-server-din-surse/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 07:02:07 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[accf_data]]></category>
		<category><![CDATA[accf_http]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[instalare]]></category>
		<category><![CDATA[kldload]]></category>
		<category><![CDATA[surse]]></category>

		<guid isPermaLink="false">http://www.linux-tutorial.eu/?p=207</guid>
		<description><![CDATA[Obtineti codul sursa care va fi compilat si instalat, in acest tutorial folosim versiunea 2.2.21: http://mirrors.hostingromania.ro/apache.org//httpd/httpd-2.2.21.tar.bz2 root@bsdpc[~/work] # wget http://mirrors.hostingromania.ro/apache.org//httpd/httpd-2.2.21.tar.bz2 root@bsdpc[~/work] # tar jxvf httpd-2.2.21.tar.bz2 root@bsdpc[~/work] # cd httpd-2.2.21 root@bsdpc[~/work/httpd-2.2.21] # ./configure --enable-so \ 2> --enable-suexec --enable-dav \ 2> --with-suexec-caller=nobody \ 2> --enable-ssl --enable-rewrite \ 2> --enable-cache --enable-mem-cache \ 2> --enable-disk-cache --with-mpm=prefork root@bsdpc[~/work/httpd-2.2.21] # make [...]]]></description>
		<wfw:commentRss>http://www.linux-tutorial.eu/apache/instalare-apache-web-server-din-surse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalare MySQL din surse</title>
		<link>http://www.linux-tutorial.eu/baze-de-date/mysql/instalare-mysql-din-surse/</link>
		<comments>http://www.linux-tutorial.eu/baze-de-date/mysql/instalare-mysql-din-surse/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 10:41:28 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[instalare]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[surse]]></category>

		<guid isPermaLink="false">http://www.linux-tutorial.eu/?p=181</guid>
		<description><![CDATA[Obtineti codul sursa care va fi compilat si instalat, in acest tutorial folosim versiunea 5.5.18 http://mysql.easynet.be/Downloads/MySQL-5.5/mysql-5.5.18.tar.gz root@bsdpc[~/work] # wget http://mysql.easynet.be/Downloads/MySQL-5.5/mysql-5.5.18.tar.gz root@bsdpc[~/work] # cd mysql-5.5.18/ root@bsdpc[~/work/mysql-5.5.18] # cmake . root@bsdpc[~/work/mysql-5.5.18] # make root@bsdpc[~/work/mysql-5.5.18] # make install root@bsdpc[~/work/mysql-5.5.18] # cp support-files/mysql.server /etc/rc.d/mysql root@bsdpc[~/work/mysql-5.5.18] # cp support-files/my-medium.cnf /etc/my.cnf root@bsdpc[~/work/mysql-5.5.18] # chmod 711 /etc/rc.d/mysql root@bsdpc[~/work/mysql-5.5.18] # pw user add [...]]]></description>
		<wfw:commentRss>http://www.linux-tutorial.eu/baze-de-date/mysql/instalare-mysql-din-surse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalare FreeBSD</title>
		<link>http://www.linux-tutorial.eu/unix/freebsd/instalare-freebsd/</link>
		<comments>http://www.linux-tutorial.eu/unix/freebsd/instalare-freebsd/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 14:21:15 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[instalare]]></category>

		<guid isPermaLink="false">http://www.linux-tutorial.eu/?p=23</guid>
		<description><![CDATA[In acest tutorial prezentam instalarea rapida a sistemului de operare FreeBSD 8.2 Scrieti un CD cu imaginea pentru instalare care poate fi obtinuta de la adresa: FreeBSD-8.2-RELEASE-i386-disc1.iso Porniti sistemul si alegeti mediul de bootare de pe CD/DVD dupa care vi se va cere: sa selectati tara (Imaginea 1) sa selectati tipul tastaturii (Imaginea 2) selectati [...]]]></description>
		<wfw:commentRss>http://www.linux-tutorial.eu/unix/freebsd/instalare-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

