<?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>Web Tech Tips</title>
	<atom:link href="http://techblog.deeblake.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.deeblake.com</link>
	<description>development, sys admin and more</description>
	<lastBuildDate>Fri, 13 Jan 2012 19:39:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to compile PHP on a Linux Server</title>
		<link>http://techblog.deeblake.com/php/how-to-compile-php-on-a-linux-server/</link>
		<comments>http://techblog.deeblake.com/php/how-to-compile-php-on-a-linux-server/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 17:18:52 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=144</guid>
		<description><![CDATA[Compiling PHP on a Linux server can be a bear of a project. The first time you try doing it, you might just frustrated and just want to install PHP with a RPM package. But you don&#8217;t get any flexibility with RPM packages, you just get the default install. With a custom PHP install (compiling), [...]]]></description>
			<content:encoded><![CDATA[<p>Compiling PHP on a Linux server can be a bear of a project. The first time you try doing it, you might just frustrated and just want to <a href="http://oss.oracle.com/projects/php/dist/documentation/installation.html" target="_blank">install PHP with a RPM package</a>. But you don&#8217;t get any flexibility with RPM packages, you just get the default install.</p>
<p>With a custom PHP install (compiling), you can pick which PHP options you want and don&#8217;t want. Do you need cURL (now default as of PHP 5.2+)? Using MySQL/phpMyAdmin? Then you will want to compile PHP with <a href="http://php.net/manual/en/book.mcrypt.php" target="_blank">mcrypt</a> and <a href="http://us.php.net/manual/en/book.mbstring.php" target="_blank">mbstring</a>. These are just a couple of examples, but you will have plenty to choose from. We&#8217;ll learn about these options very soon&#8230;</p>
<p>So let&#8217;s start with the install. For my installation, I&#8217;m on a Red Hat Enterprise Linux 5 Server (RHEL5). So the paths/configurations I use are specific to that operating system (OS). I&#8217;m running MySQL 5+ and Apache 2+. For this installation you will need to have ssh access to your server. If you have a shared hosting account, you might have ssh access, but most likely you will not have the proper privileges to compile PHP. I&#8217;ll break this down into steps, to hopefully simplify the process.</p>
<ol>
<li>ssh to your server (if you don&#8217;t have an ssh client, try <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">PuTTY</a>. It&#8217;s free.)</li>
<li>Become root on the server (if you have root access), by typing <em>su - </em>and then enter the root password. Or use <a href="http://linux.about.com/od/commands/l/blcmdl8_sudo.htm" target="_blank">sudo</a> if that is an option.</li>
<li>cd /usr/local/src</li>
<li>In a browser go to <a href="http://php.net/downloads.php">php.net</a> to get the source download URL (this changes depending on PHP version and the mirror location). In this example the download URL is http://us.php.net/get/php-5.3.8.tar.bz2/from/this/mirror</li>
<li>Now download the file by typing <em>wget http://us.php.net/get/php-5.3.8.tar.bz2/from/this/mirror</em></li>
<li>Extract the PHP source files: <em>tar xjvf php-5.3.8.tar.bz2</em></li>
<li><em>cd</em> <em>php-5.3.8</em></li>
<li>Now that you have the PHP source, and have extracted the files, you can find out what you&#8217;re install options are by typing:<br />
<em>./configure &#8211;h</em>.<br />
You&#8217;ll get a really long list (a bit overwhelming) of compile options. You can dig through each of these options, or just go with what I&#8217;m going to do. The nice thing is that once you have compiled PHP once, it&#8217;s fairly painless to re-compile PHP with new options should you miss something.</li>
<li>So here&#8217;s my configure command (notice that this is specific to 64bit RHEL). Note you should copy this into Notepad or similar to make sure all of the line breaks are ok:<br />
./configure &#8211;build=x86_64-redhat-linux-gnu &#8211;host=x86_64-redhat-linux-gnu &#8211;target=x86_64-redhat-linux-gnu &#8211;program-prefix= &#8211;prefix=/usr &#8211;exec-prefix=/usr &#8211;bindir=/usr/bin &#8211;sbindir=/usr/sbin &#8211;sysconfdir=/etc &#8211;datadir=/usr/share &#8211;includedir=/usr/include &#8211;libdir=/usr/lib64 &#8211;libexecdir=/usr/libexec &#8211;localstatedir=/var &#8211;sharedstatedir=/usr/com &#8211;mandir=/usr/share/man &#8211;infodir=/usr/sh<br />
are/info &#8211;cache-file=../config.cache &#8211;with-libdir=lib64 &#8211;with-config-file-path=/etc &#8211;with-config-file-scan-dir=/etc/php.d &#8211;disa<br />
ble-debug &#8211;with-pic &#8211;disable-rpath &#8211;with-pear &#8211;with-bz2 &#8211;with-curl &#8211;with-exec-dir=/usr/bin &#8211;with-freetype-dir=/usr &#8211;with-<br />
png-dir=/usr &#8211;enable-gd-native-ttf &#8211;without-gdbm &#8211;with-gettext &#8211;with-gmp &#8211;with-iconv &#8211;with-jpeg-dir=/usr &#8211;with-openssl &#8211;with<br />
-pspell &#8211;with-pcre-regex=/usr &#8211;with-zlib &#8211;with-layout=GNU &#8211;enable-exif &#8211;enable-ftp &#8211;enable-magic-quotes &#8211;enable-sockets &#8211;ena<br />
ble-sysvsem &#8211;enable-sysvshm &#8211;enable-sysvmsg &#8211;enable-wddx &#8211;with-kerberos &#8211;enable-ucd-snmp-hack &#8211;with-unixODBC=shared,/usr &#8211;enable-shmop &#8211;enable-calendar &#8211;with-mime-magic=/usr/share/file/magic.mime &#8211;without-sqlite &#8211;with-libxml-dir=/usr &#8211;enable-force-cgi-<br />
redirect &#8211;enable-pcntl &#8211;with-imap=shared &#8211;with-imap-ssl &#8211;enable-mbstring=shared &#8211;enable-mbregex &#8211;with-ncurses=shared &#8211;with-gd<br />
=shared &#8211;enable-bcmath=shared &#8211;enable-dba=shared &#8211;with-db4=/usr &#8211;with-xmlrpc=shared &#8211;with-ldap=shared &#8211;with-ldap-sasl &#8211;with-m<br />
ysql=shared,/usr &#8211;with-mysqli=shared,/usr/lib64/mysql/mysql_config &#8211;enable-dom=shared &#8211;with-pgsql=shared &#8211;with-snmp=shared,/usr<br />
&#8211;enable-soap=shared &#8211;with-xsl=shared,/usr &#8211;enable-xmlreader=shared &#8211;enable-xmlwriter=shared &#8211;enable-fastcgi &#8211;enable-pdo=shared<br />
&#8211;with-pdo-odbc=shared,unixODBC,/usr &#8211;with-pdo-mysql=shared,/usr/lib64/mysql/mysql_config &#8211;with-pdo-pgsql=shared,/usr &#8211;with-pdo-sqlite=shared,/usr &#8211;enable-dbase=shared &#8211;enable-mbstring &#8211;with-mcrypt=/usr/local/bin/mcrypt &#8211;with-apxs2=/usr/sbin/apxs</li>
<li>Note that you will most likely get a lot of errors after executing this command, but no need to panic. In most cases, the packages you are installing are dependent on &#8220;devel&#8221; packages. For example, you might get this error: <em>Error: configure: error: Cannot find pspell</em>. To fix this you need to install the pspell devel package: <em>yum install aspell-devel</em>. Here are a couple of sites that will help with dependencies: <a href="http://www.lifelinux.com/error-compiling-php-on-centos-x64/" target="_blank">http://www.lifelinux.com/error-compiling-php-on-centos-x64/</a> and <a href="http://www.mickgenie.com/blog/php-compilation-error/" target="_blank">http://www.mickgenie.com/blog/php-compilation-error/</a></li>
<li>So you&#8217;ll need to go back and forth between installing devel packages with yum, and then running your configure command again. Once your configure command has run successfully, move on to the next step.</li>
<li>Now type <em>make</em></li>
<li>Then <em>make test</em> (really important to do this step)</li>
<li>Finally <em>make install</em></li>
<li>Optional step: <em>libtool &#8211;finish /usr/local/src/php-5.3.8/libs</em></li>
<li>cp all modules from /usr/local/src/php-5.3.8/modules/*.so to /usr/lib64/php/modules/<em><br />
</em></li>
<li>cp /usr/local/src/php-5.3.8/php-recommended to /etc/php.ini (this file contains configuration settings, like file upload size limits)</li>
<li>edit /etc/php.ini to set modules path to /usr/lib64/php/modules/</li>
<li>edit /etc/php.ini to set include_path for pear (if you installed pear)</li>
<li>Now restart Apache: <em>/usr/sbin/apachectl restart</em></li>
<li>To test your php install, you should do two things:</li>
<ol>
<li>Type <em>php -v</em> (you should list out your new PHP version, in this case PHP 5.3.8)</li>
<li>Go to your document root, and create a php file with this code: <em>&lt;?php phpinfo(); ?&gt;</em>, then load that file in a browser. This will give you a full configuration listing on PHP, Apache and MySQL</li>
</ol>
</ol>
<div>So hopefully everything worked out for you. There are many things that can go (temporarily) wrong with PHP compiles. But once you successfully compile PHP once, you&#8217;ll have a better handle on how to do it in the future.</div>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/php/how-to-compile-php-on-a-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset auto increment index in MySQL</title>
		<link>http://techblog.deeblake.com/mysql/reset-auto-increment-index-in-mysql/</link>
		<comments>http://techblog.deeblake.com/mysql/reset-auto-increment-index-in-mysql/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 22:07:46 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=139</guid>
		<description><![CDATA[To reset the auto increment value back to &#8220;1&#8243;  in the &#8220;mytable&#8221; database table: ALTER TABLE mytable AUTO_INCREMENT=1]]></description>
			<content:encoded><![CDATA[<p>To reset the auto increment value back to &#8220;1&#8243;  in the &#8220;mytable&#8221; database table:</p>
<p>ALTER TABLE mytable AUTO_INCREMENT=1</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/mysql/reset-auto-increment-index-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to migrate WordPress</title>
		<link>http://techblog.deeblake.com/wordpress/how-to-migrate-wordpress/</link>
		<comments>http://techblog.deeblake.com/wordpress/how-to-migrate-wordpress/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 22:01:58 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[migration]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=133</guid>
		<description><![CDATA[How to migrate WordPress to a different Linux server. First migrate the database (use database name &#8220;wpdb&#8221; for this example): User either phpMyAdmin or mysql command line to do a database export (export both data and structure). Here&#8217;s a mysql command line exampl example: # mysql -u username -p wpdb &#62; /home/john/wpdb.sql After you are [...]]]></description>
			<content:encoded><![CDATA[<p>How to migrate WordPress to a different Linux server.</p>
<p>First migrate the database (use database name &#8220;wpdb&#8221; for this example):</p>
<ol>
<li>User either phpMyAdmin or mysql command line to do a database export (export both data and structure). Here&#8217;s a mysql command line exampl example:<br />
# mysql -u username -p wpdb &gt; /home/john/wpdb.sql</p>
<p>After you are prompted for &#8220;username&#8217;s&#8221; password, the contents of the database will be dumped to /home/john/wpdb.sql</li>
<li>Create the &#8220;wpdb&#8221; database on the new server, and then import the data: mysql -u username -p wpdb &lt; wpdb.sql</li>
<li>Set up a new database user for this database. It needs to be the same username/password you have in your wp-config.php WordPress file.</li>
<li>From the linux command line, grant privileges for this user to use the &#8220;wpdb&#8221; database:GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON wpdb.* TO &#8216;username&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;password&#8217;;(you may need to also reload the mysql GRANT tables by typing: FLUSH PRIVILEGES;)</li>
<li>Now update the database entries:UPDATE wp_options SET option_value = replace(option_value, &#8216;http://old-domain.com&#8217;, &#8216;http://new-domain.com&#8217;) WHERE option_name = &#8216;home&#8217;;UPDATE wp_options SET option_value = replace(option_value, &#8216;http://old-domain.com&#8217;, &#8216;http://new-domain.com&#8217;) WHERE option_name = &#8216;siteurl&#8217;;UPDATE wp_posts SET guid = replace(guid, &#8216;http://old-domain.com&#8217;,&#8221;);UPDATE wp_posts SET post_content = replace(post_content, &#8216;http://old-domain.com&#8217;, &#8221;);</li>
<li>Using the Worpress Dashboard, update the upload directory by going to Settings&#8211;&gt;Miscellaneous Settings</li>
</ol>
<p>Next migrate the site files:</p>
<ol>
<li>cd to the document root of the WordPress site</li>
<li>tar -cvf myWordpressSite.tar *</li>
<li>scp or ftp the tar file to your new server</li>
<li>cd to the document root on the new server</li>
<li>tar -xvf myWordpressSite.tar</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/wordpress/how-to-migrate-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a new system user on Solaris 9</title>
		<link>http://techblog.deeblake.com/linuxunix/add-a-new-system-user-on-solaris-9/</link>
		<comments>http://techblog.deeblake.com/linuxunix/add-a-new-system-user-on-solaris-9/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 21:35:43 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=130</guid>
		<description><![CDATA[Here&#8217;s how to add a new system user &#8220;john&#8221; on Solaris 9: login as root useradd -g modern -m -d /export/home/john -s /usr/bin/bash john now create a password: passwd john]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to add a new system user &#8220;john&#8221; on Solaris 9:</p>
<ol>
<li>login as root</li>
<li>useradd -g modern -m -d /export/home/john -s /usr/bin/bash john</li>
<li>now create a password: passwd john</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/linuxunix/add-a-new-system-user-on-solaris-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get webserver info from Linux command line</title>
		<link>http://techblog.deeblake.com/apache/get-webserver-info-from-linux-command-line/</link>
		<comments>http://techblog.deeblake.com/apache/get-webserver-info-from-linux-command-line/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 21:28:53 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=128</guid>
		<description><![CDATA[Here&#8217;s how you can get basic webserver info for another server. Please note that this won&#8217;t work if the website uses a CDN. # telnet www.example.com 80 Trying 216.44.201.135&#8230; Connected to www.litaxforum.com (216.44.201.135). Escape character is &#8216;^]&#8217;. /* NOW TYPE THIS: */ GET / HTTP/1.1 /* THEN HIT ENTER TWICE AND YOU GET ALL INFO [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how you can get basic webserver info for another server. Please note that this won&#8217;t work if the website uses a CDN.</p>
<p># telnet www.example.com 80<br />
Trying 216.44.201.135&#8230;<br />
Connected to www.litaxforum.com (216.44.201.135).<br />
Escape character is &#8216;^]&#8217;.</p>
<p>/* NOW TYPE THIS: */<br />
GET / HTTP/1.1<br />
/* THEN HIT ENTER TWICE AND YOU GET ALL INFO */</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/apache/get-webserver-info-from-linux-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update Red Hat or Fedora DNS</title>
		<link>http://techblog.deeblake.com/linuxunix/update-red-hat-or-fedora-dns/</link>
		<comments>http://techblog.deeblake.com/linuxunix/update-red-hat-or-fedora-dns/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 21:24:19 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[red hat]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=126</guid>
		<description><![CDATA[To update DNS on a Fedora or Red Hat server: If NetworkManager is running, you need to edit: /etc/sysconfig/network-scripts/ifcfg-eth0 by changing the DNS entry on reboot the above will update /etc/resolv.conf If there is no network manager, then you just need to edit: /etc/resolv.conf]]></description>
			<content:encoded><![CDATA[<p>To update DNS on a Fedora or Red Hat server:</p>
<p>If NetworkManager is running, you need to edit:</p>
<p>/etc/sysconfig/network-scripts/ifcfg-eth0 by changing the DNS entry</p>
<p>on reboot the above will update /etc/resolv.conf</p>
<p>If there is no network manager, then you just need to edit:</p>
<p>/etc/resolv.conf</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/linuxunix/update-red-hat-or-fedora-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to shutdown a RHEL5 server</title>
		<link>http://techblog.deeblake.com/linuxunix/how-to-shutdown-a-rhel5-server/</link>
		<comments>http://techblog.deeblake.com/linuxunix/how-to-shutdown-a-rhel5-server/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 16:35:27 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[red hat]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=112</guid>
		<description><![CDATA[As root, use this command: /sbin/shutdown -h now After shutting everything down, the -h option halts the machine, or alternatively the -r option reboots If the computer does not power itself down, be careful not to turn off the computer until a message appears indicating that the system is halted (I believe you will see [...]]]></description>
			<content:encoded><![CDATA[<p>As root, use this command:</p>
<p>/sbin/shutdown -h now</p>
<p>After shutting everything down, the -h option halts the machine, or alternatively<br />
the -r option reboots</p>
<p>If the computer does not power itself down, be careful not to turn off the computer until a message appears indicating that the system is halted (I believe you will see an &#8220;ok&#8221; prompt). Failure to wait for this message can mean that not all the hard drive partitions are unmounted, which can<br />
 lead to file system corruption.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/linuxunix/how-to-shutdown-a-rhel5-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Fedora 12 to Fedora 13</title>
		<link>http://techblog.deeblake.com/linuxunix/upgrade-fedora-12-to-fedora-13/</link>
		<comments>http://techblog.deeblake.com/linuxunix/upgrade-fedora-12-to-fedora-13/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 21:31:58 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[preupgrade]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=95</guid>
		<description><![CDATA[This upgrade was not as simple as upgrading from 10 to 11 or 11 to 12 (I used the yum/preupgrade update method for both of those). Upgrading F12 to 13 was more involved. My /boot partition was not big enough to complete the installation via yum/preupgrade (F13 wants 500Mb /boot partition). Instead I had to [...]]]></description>
			<content:encoded><![CDATA[<p>This upgrade was not as simple as upgrading from <a href="http://techblog.deeblake.com/?p=91" target="_self">10 to 11</a> or <a href="http://techblog.deeblake.com/?p=94" target="_self">11 to 12</a> (I used the yum/preupgrade update method for both of those).</p>
<p>Upgrading F12 to 13 was more involved. My /boot partition was not big enough to complete the installation via yum/preupgrade (F13 wants 500Mb /boot partition). Instead I had to switch repositories to complete the upgrade. Here&#8217;s the steps (please note this is on a i386 machine):</p>
<ol>
<li>Since my /boot partition was limited, I have to follow these directions for force the the download of the installer: <a href="http://fedoraproject.org/wiki/PreUpgrade#Method_2:_Trick_preupgrade_into_downloading_the_installer" target="_blank">http://fedoraproject.org/wiki/PreUpgrade#Method_2:_Trick_preupgrade_into_downloading_the_installer</a></li>
<li>yum update rpm</li>
<li>yum -y update</li>
<li>yum clean all</li>
<li>
wget ftp://download.fedora.redhat.com/pub/fedora/linux/releases/13/Fedora/i386/os/Packages/fedora-release-*.noarch.rpm
</li>
<li>rpm -Uvh fedora-release-*.noarch.rpm
</li>
<li>Now get out of the graphical interface:  ctrl + alt + F2</li>
<li>login as root</li>
<li>telinit 3</li>
<li>yum upgrade</li>
<li>yum groupupdate Base</li>
<li>/sbin/grub-install &#8211;recheck /dev/sda</li>
<li>/sbin/grub-install /dev/sda</li>
<li>cd /etc/rc.d/init.d; for f in *; do /sbin/chkconfig $f resetpriorities; done
</li>
<li>reboot</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/linuxunix/upgrade-fedora-12-to-fedora-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Fedora 11 to Fedora 12</title>
		<link>http://techblog.deeblake.com/linuxunix/upgrade-fedora-11-to-fedora-12/</link>
		<comments>http://techblog.deeblake.com/linuxunix/upgrade-fedora-11-to-fedora-12/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 21:30:32 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[preupgrade]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=93</guid>
		<description><![CDATA[This upgrade was pretty straight forward for me. I used the &#8220;preupgrade-cli&#8221; method. Here&#8217;s the step: su - yum update rpm yum -y update yum -y install preupgrade yum clean all preupgrade-cli &#8220;Fedora 12 (Constantine)&#8221; Once you have gone through the preupgrade, you will be asked to reboot: reboot Upgrading from Fedora 10 to 11 [...]]]></description>
			<content:encoded><![CDATA[<p>This upgrade was pretty straight forward for me. I used the &#8220;preupgrade-cli&#8221; method. Here&#8217;s the step:</p>
<ol>
<li>su -</li>
<li>yum update rpm</li>
<li>yum -y update</li>
<li>yum -y install preupgrade</li>
<li>yum clean all</li>
<li>preupgrade-cli &#8220;Fedora 12 (Constantine)&#8221;</li>
<li>Once you have gone through the preupgrade, you will be asked to reboot: reboot</li>
</ol>
<p>Upgrading from Fedora 10 to 11 requires the same steps, except changing step 6 to the <a href="http://fedoraproject.org/wiki/Releases/Names" target="_blank">appropriate version info</a>.</p>
<p>Upgrading from Fedora 12 to 13 was more involved for me, since the /boot partition of the PC was too small. I used this method for that upgrade: <a href="http://techblog.deeblake.com/?p=95" target="_self">http://techblog.deeblake.com/?p=95</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/linuxunix/upgrade-fedora-11-to-fedora-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Fedora 10 to Fedora 11</title>
		<link>http://techblog.deeblake.com/linuxunix/upgrade-fedora-10-to-fedora-11/</link>
		<comments>http://techblog.deeblake.com/linuxunix/upgrade-fedora-10-to-fedora-11/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 21:29:35 +0000</pubDate>
		<dc:creator>dee</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[preupgrade]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://techblog.deeblake.com/?p=91</guid>
		<description><![CDATA[This upgrade was pretty straight forward for me. I used the &#8220;preupgrade-cli&#8221; method. Here&#8217;s the steps: su - yum update rpm yum -y update yum -y install preupgrade yum clean all preupgrade-cli &#8220;Fedora 11 (Leonidas)&#8221; Once you have gone through the preupgrade, you will be asked to reboot: reboot After reboot you will be lead [...]]]></description>
			<content:encoded><![CDATA[<p>This upgrade was pretty straight forward for me. I used the &#8220;preupgrade-cli&#8221; method. Here&#8217;s the steps:</p>
<ol>
<li>su -</li>
<li>yum update rpm</li>
<li>yum -y update</li>
<li>yum -y install preupgrade</li>
<li>yum clean all</li>
<li>preupgrade-cli &#8220;Fedora 11 (Leonidas)&#8221;</li>
<li>Once you have gone through the preupgrade, you will be asked to reboot: reboot</li>
<li>After reboot you will be lead through the actual upgrade.</li>
</ol>
<p>I found that after my upgrade I had no internet connection. I fixed this through the GUI by clicking System-&gt;Administration-&gt;Network and then checking &#8220;Activate device when computer starts&#8221;. Then you will need to restart network services.</p>
<p>Upgrading from Fedora 11 to 12 requires the same steps, except changing step 6 to the <a href="http://fedoraproject.org/wiki/Releases/Names" target="_blank">appropriate version info</a>.</p>
<p>Upgrading from Fedora 12 to 13 was more involved for me, since the /boot partition of the PC was too small. I used this method for that upgrade: <a href="http://techblog.deeblake.com/?p=95" target="_self">http://techblog.deeblake.com/?p=95</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.deeblake.com/linuxunix/upgrade-fedora-10-to-fedora-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

