<?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>Jens Olsson &#187; Linux</title>
	<atom:link href="http://jens.yelles.se/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://jens.yelles.se</link>
	<description>My Underground Development</description>
	<lastBuildDate>Tue, 16 Aug 2011 09:27:53 +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>Backup and restore MySQL tables/database</title>
		<link>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/</link>
		<comments>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 21:04:23 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Restore]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=201</guid>
		<description><![CDATA[If you have a lagre database that you will take backup on you might find it hard to do so with example phpmyadmin. MySQL made commando for this so you easy can do this in your terminal on both Windows and Linux. I will first go with Linux. OBS: The commando are the same for [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a lagre database that you will take backup on you might find it hard to do so with example phpmyadmin. MySQL made commando for this so you easy can do this in your terminal on both Windows and Linux. I will first go with Linux. OBS: The commando are the same for both Linux and Windows.</p>
<p><strong>MySQLdump commando</strong></p>
<blockquote><p>mysqldump -u username -ppassword database_name table_name &gt; /your/way/to/sql/file/file_name.sql</p></blockquote>
<p><strong>SQL for restore table/database</strong></p>
<blockquote><p>mysql -u username -ppassword database_name &lt; /your/way/to/sql/file/file_name.sql</p></blockquote>
<p>If you want to backup full database just dont write the table name on first commando.</p>
<p>If you use Windows you have to go to you bin folder who is in your mysql folder. For example in EasyPHP the way is:</p>
<p>c:\program\easyphp-folder\mysql\bin</p>
<p>From there run the commando. Also if you did not understand, you first run the location in simple CMD and then run the commando.</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HowTo install OneSwarm on Ubuntu, Linux</title>
		<link>http://jens.yelles.se/2009/03/23/howto-install-oneswarm-on-ubuntu/</link>
		<comments>http://jens.yelles.se/2009/03/23/howto-install-oneswarm-on-ubuntu/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 12:11:45 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OneSwarm]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=78</guid>
		<description><![CDATA[This will lern you how to install OneSwarm on Ubuntu, Linux. First check that you have Java installed: sudo apt-get install sun-java6-bin sun-java6-jre Then you start the download, either you go to: http://oneswarm.cs.washington.edu/download.html Else for 32-bit OS, making folder Program, download, install and run it: mkdir Program wget http://oneswarm.cs.washington.edu/builds/OneSwarm_0_5_linux_x86.tar.gz tar zxvf OneSwarm_0_5_linux_x86.tar.gz cd OneSwarm ./OneSwarm [...]]]></description>
			<content:encoded><![CDATA[<p>This will lern you how to install OneSwarm on Ubuntu, Linux.</p>
<p>First check that you have Java installed:</p>
<blockquote><p>sudo apt-get install sun-java6-bin sun-java6-jre</p></blockquote>
<p>Then you start the download, either you go to: <a href="http://oneswarm.cs.washington.edu/download.html">http://oneswarm.cs.washington.edu/download.html</a></p>
<p>Else for 32-bit OS, making folder Program, download, install and run it:</p>
<blockquote><p>mkdir Program</p>
<p>wget http://<span class="posthilit">oneswarm</span>.cs.washington.edu/builds/OneSwarm_0_5_linux_x86.tar.gz</p>
<p>tar zxvf OneSwarm_0_5_linux_x86.tar.gz</p>
<p>cd OneSwarm</p>
<p>./OneSwarm</p></blockquote>
<p>If 64-bit do the same just download the 64-bit file:</p>
<blockquote><p>mkdir Program</p>
<p>wget http://<span class="posthilit">oneswarm</span>.cs.washington.edu/builds/OneSwarm_0_5_linux_x86_64.tar.gz</p>
<p>tar zxvf OneSwarm_0_5_linux_x86_64.tar.gz</p>
<p>cd OneSwarm</p>
<p>./OneSwarm</p></blockquote>
<p>Ask if any questions appear. <img src='http://jens.yelles.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/03/23/howto-install-oneswarm-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

