<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.raspberrytorte.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ajd</id>
		<title>SingletonMillerWiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.raspberrytorte.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ajd"/>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Special:Contributions/Ajd"/>
		<updated>2026-07-01T03:30:39Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.4</generator>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=567</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=567"/>
				<updated>2012-08-22T17:50:08Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SD card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SD card to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly, create a directory on the Linux host to mount the location that will receive the backup. e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mount -t cifs //hostname/sharename -o username=xxxx,password=yyyy /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: the hostname can be substituted with the IP address of the machine receiving the backup.&lt;br /&gt;
&lt;br /&gt;
Thirdly, insert the SD card into the machine doing the backup and note its device assignment; as per the Easy CD card set up. Make sure all partions are dismounted. For the following illustration, assume that the SD card to be backed up is &amp;#039;&amp;#039;sdb&amp;#039;&amp;#039;. If the SD card does not get mounted, &amp;#039;&amp;#039;df -h&amp;#039;&amp;#039; does not recognise it. &amp;#039;&amp;#039;sfdisk -l&amp;#039;&amp;#039; can be used to see unmounted devices.&lt;br /&gt;
&lt;br /&gt;
Finally, use the &amp;#039;&amp;#039;dd&amp;#039;&amp;#039; comand to backup the SD card image&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dd bs=1M if=/dev/sdb of=/media/cifshares/SD_Card_Image.img &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: I&amp;#039;ve now successfully put an image back onto an SD card. So it does work.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Time spent backing up is always saved in rebuilding.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
#[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=340</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=340"/>
				<updated>2012-06-30T19:47:50Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SD card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SD card to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly, create a directory on the Linux host to mount the location that will receive the backup. e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mount -t cifs //hostname/sharename -o username=xxxx,password=yyyy /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: the hostname can be substituted with the IP address of the machine receiving the backup.&lt;br /&gt;
&lt;br /&gt;
Thirdly, insert the SD card into the machine doing the backup and note its device assignment; as per the Easy CD card set up. Make sure all partions are dismounted. For the following illustration, assume that the SD card to be backed up is &amp;#039;&amp;#039;sdb&amp;#039;&amp;#039;. If the SD card does not get mounted, &amp;#039;&amp;#039;df -h&amp;#039;&amp;#039; does not recognise it. &amp;#039;&amp;#039;sfdisk -l&amp;#039;&amp;#039; can be used to see unmounted devices.&lt;br /&gt;
&lt;br /&gt;
Finally, use the &amp;#039;&amp;#039;dd&amp;#039;&amp;#039; comand to backup the SD card image&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dd bs=1M if=/dev/sdb of=/media/cifshares/SD_Card_Image.img &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: As yet I haven&amp;#039;t actually tried to reload a saved image. So be warned.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Time spent backing up is always saved in rebuilding.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
#[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=339</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=339"/>
				<updated>2012-06-30T19:46:07Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SD card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SD card to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly, create a directory on the Linux host to mount the location that will receive the backup. e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mount -t cifs //hostname/sharename -o username=xxxx,password=yyyy /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: the hostname can be substituted with the IP address of the machine receiving the backup.&lt;br /&gt;
&lt;br /&gt;
Thirdly, insert the SD card into the machine doing the backup and note its device assignment; as per the Easy CD card set up. Make sure all partions are dismounted. For the following illustration, assume that the SD card to be backed up is &amp;#039;&amp;#039;sdb&amp;#039;&amp;#039;. If the SD card does not get mounted, &amp;#039;&amp;#039;sf -h&amp;#039;&amp;#039; does not recognise it. &amp;#039;&amp;#039;sfdisk -l&amp;#039;&amp;#039; can be used to see unmounted devices.&lt;br /&gt;
&lt;br /&gt;
Finally, use the &amp;#039;&amp;#039;dd&amp;#039;&amp;#039; comand to backup the SD card image&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dd bs=1M if=/dev/sdb of=/media/cifshares/SD_Card_Image.img &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: As yet I haven&amp;#039;t actually tried to reload a saved image. So be warned.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Time spent backing up is always saved in rebuilding.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
#[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=178</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=178"/>
				<updated>2012-06-14T20:41:41Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=47&amp;amp;t=5814&amp;amp;p=90752]&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get install rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
For a list of option see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The example above indicates that the remote machine is on a LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=177</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=177"/>
				<updated>2012-06-14T20:40:00Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
[[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=47&amp;amp;t=5814&amp;amp;p=90752]]&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get install rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
For a list of option see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The example above indicates that the remote machine is on a LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=176</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=176"/>
				<updated>2012-06-14T20:39:40Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=47&amp;amp;t=5814&amp;amp;p=90752]&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get install rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
For a list of option see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The example above indicates that the remote machine is on a LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=175</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=175"/>
				<updated>2012-06-14T20:12:00Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Needs a reference. RPi website down&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The above command needs checking. The RPi website was down when I tried to check.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
For a list of option see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The example above indicates that the remote machine is on a LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=174</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=174"/>
				<updated>2012-06-14T20:09:46Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Needs a reference. RPi website down&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The above command needs checking. The RPi website was down when I tried to check.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
For a list of option see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The example above indicates that the remote machine is on a local LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=173</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=173"/>
				<updated>2012-06-14T20:06:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Needs a reference. RPi website down&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The above command needs checking. The RPi website was down when I tried to check.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For a list of options. The example above indicates that the remote machine is on a local LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=172</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=172"/>
				<updated>2012-06-14T20:04:53Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;The above command needs checking. The RPi website was down when I tried to check.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For a list of options. The example above indicates that the remote machine is on a local LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=171</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=171"/>
				<updated>2012-06-14T20:03:47Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;br /&gt;
&lt;br /&gt;
Firstly, install the remote desktop package on you RPi:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo app-get rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above command needs checking. The RPi website was down when I tried to check.&lt;br /&gt;
&lt;br /&gt;
Haveing installed the remote desktop on the RPi the remote machine is accessed by something such as the example below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rdesktop -x:l -r sound:remote hostname&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;hostname&amp;#039;&amp;#039; can be replaced by an IP address&lt;br /&gt;
&lt;br /&gt;
see&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
man rdesktop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For a list of options. The example above indicates that the remote machine is on a local LAN, i.e. -x:l gives maximum bandwidth and that the sound is to be left on the remote machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=170</id>
		<title>Remote Desktop</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Desktop&amp;diff=170"/>
				<updated>2012-06-14T19:42:04Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: Created page with &amp;quot;Category: RaspberryPi  This describes hoy to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
This describes hoy to use your RPi as a remote terminal to a Windows machine. It assumes that the Widows machine has Remote Desktop installed and enabled.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=169</id>
		<title>ListOfRaspberryPiHow-Tos</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=169"/>
				<updated>2012-06-14T19:40:12Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:RaspberryPi]]&lt;br /&gt;
== Topics ==&lt;br /&gt;
This page is a list to the available RaspberryPi How-Tos.&lt;br /&gt;
&lt;br /&gt;
;[[Setup:RPI]]&lt;br /&gt;
: initial setup and configuration and updates.&lt;br /&gt;
&lt;br /&gt;
;[[HDMI Configuration]]&lt;br /&gt;
: HDMI references and example problem/solution&lt;br /&gt;
;[[AddingUsers:RPi]]&lt;br /&gt;
: add a user and assign super user privledges.&lt;br /&gt;
&lt;br /&gt;
;[[Updating the RPi Software]]&lt;br /&gt;
: Up to date software offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Updating RPi Firmware]]&lt;br /&gt;
: Up to date firmware offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Static IP Config]]&lt;br /&gt;
: network static IP address is useful if you RPi is to be accessed remotely&lt;br /&gt;
&lt;br /&gt;
;[[Enable SSH]]&lt;br /&gt;
: enable SSH to allow remote login&lt;br /&gt;
&lt;br /&gt;
;[[Setup VNC]]&lt;br /&gt;
: to access via remote desktop &lt;br /&gt;
&lt;br /&gt;
;[[Expand Image to fill SD card]]&lt;br /&gt;
: Use the spare space assuming your SD card is larger than the default image you installed.&lt;br /&gt;
&lt;br /&gt;
;[[Backup SD Image]]&lt;br /&gt;
: So you don&amp;#039;t undo all your great work in a &amp;#039;&amp;#039;flash&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
;[[Enable Sound]]&lt;br /&gt;
: As of {{REVISIONDAY2}}/{{REVISIONMONTH}}/{{REVISIONYEAR}} the sound driver is still Alpha and is disabled by default, use this guide to enable and test sound on your RPi.&lt;br /&gt;
&lt;br /&gt;
;[[Playing Music]]&lt;br /&gt;
: Finally something useful to do with your RPi&lt;br /&gt;
&lt;br /&gt;
;[[Playing Videos]]&lt;br /&gt;
: Playing videos is a fun thing to do!&lt;br /&gt;
&lt;br /&gt;
;[[Accessing Network Shares]]&lt;br /&gt;
: SD cards just aren&amp;#039;t big enough.&lt;br /&gt;
&lt;br /&gt;
;[[Run Quake]]&lt;br /&gt;
: Just in case you get bored or are planning a LAN party.&lt;br /&gt;
&lt;br /&gt;
;[[Setting up a Torrent Server]]&lt;br /&gt;
: Setup your RPi to get he latest RPi distro using torrents.&lt;br /&gt;
&lt;br /&gt;
;[[Remote Desktop]]&lt;br /&gt;
: Use your RPi as a remote terminal to a Windows machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Remote_Login&amp;diff=168</id>
		<title>Remote Login</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Remote_Login&amp;diff=168"/>
				<updated>2012-06-14T19:36:53Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: Created page with &amp;quot;==Remote Login==  This describes how to use your RPi as a terminal to a remote Windows machine.  It assumes that the Windows machine has remote login facilities and that they tur...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Remote Login==&lt;br /&gt;
&lt;br /&gt;
This describes how to use your RPi as a terminal to a remote Windows machine.&lt;br /&gt;
&lt;br /&gt;
It assumes that the Windows machine has remote login facilities and that they turned on.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=167</id>
		<title>ListOfRaspberryPiHow-Tos</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=167"/>
				<updated>2012-06-14T19:35:00Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:RaspberryPi]]&lt;br /&gt;
== Topics ==&lt;br /&gt;
This page is a list to the available RaspberryPi How-Tos.&lt;br /&gt;
&lt;br /&gt;
;[[Setup:RPI]]&lt;br /&gt;
: initial setup and configuration and updates.&lt;br /&gt;
&lt;br /&gt;
;[[HDMI Configuration]]&lt;br /&gt;
: HDMI references and example problem/solution&lt;br /&gt;
;[[AddingUsers:RPi]]&lt;br /&gt;
: add a user and assign super user privledges.&lt;br /&gt;
&lt;br /&gt;
;[[Updating the RPi Software]]&lt;br /&gt;
: Up to date software offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Updating RPi Firmware]]&lt;br /&gt;
: Up to date firmware offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Static IP Config]]&lt;br /&gt;
: network static IP address is useful if you RPi is to be accessed remotely&lt;br /&gt;
&lt;br /&gt;
;[[Enable SSH]]&lt;br /&gt;
: enable SSH to allow remote login&lt;br /&gt;
&lt;br /&gt;
;[[Setup VNC]]&lt;br /&gt;
: to access via remote desktop &lt;br /&gt;
&lt;br /&gt;
;[[Expand Image to fill SD card]]&lt;br /&gt;
: Use the spare space assuming your SD card is larger than the default image you installed.&lt;br /&gt;
&lt;br /&gt;
;[[Backup SD Image]]&lt;br /&gt;
: So you don&amp;#039;t undo all your great work in a &amp;#039;&amp;#039;flash&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
;[[Enable Sound]]&lt;br /&gt;
: As of {{REVISIONDAY2}}/{{REVISIONMONTH}}/{{REVISIONYEAR}} the sound driver is still Alpha and is disabled by default, use this guide to enable and test sound on your RPi.&lt;br /&gt;
&lt;br /&gt;
;[[Playing Music]]&lt;br /&gt;
: Finally something useful to do with your RPi&lt;br /&gt;
&lt;br /&gt;
;[[Playing Videos]]&lt;br /&gt;
: Playing videos is a fun thing to do!&lt;br /&gt;
&lt;br /&gt;
;[[Accessing Network Shares]]&lt;br /&gt;
: SD cards just aren&amp;#039;t big enough.&lt;br /&gt;
&lt;br /&gt;
;[[Run Quake]]&lt;br /&gt;
: Just in case you get bored or are planning a LAN party.&lt;br /&gt;
&lt;br /&gt;
;[[Setting up a Torrent Server]]&lt;br /&gt;
: Setup your RPi to get he latest RPi distro using torrents.&lt;br /&gt;
&lt;br /&gt;
;[[Remote Login]]&lt;br /&gt;
: Use your RPi as a remote terminal to a Windows machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=166</id>
		<title>ListOfRaspberryPiHow-Tos</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=166"/>
				<updated>2012-06-14T19:34:44Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:RaspberryPi]]&lt;br /&gt;
== Topics ==&lt;br /&gt;
This page is a list to the available RaspberryPi How-Tos.&lt;br /&gt;
&lt;br /&gt;
;[[Setup:RPI]]&lt;br /&gt;
: initial setup and configuration and updates.&lt;br /&gt;
&lt;br /&gt;
;[[HDMI Configuration]]&lt;br /&gt;
: HDMI references and example problem/solution&lt;br /&gt;
;[[AddingUsers:RPi]]&lt;br /&gt;
: add a user and assign super user privledges.&lt;br /&gt;
&lt;br /&gt;
;[[Updating the RPi Software]]&lt;br /&gt;
: Up to date software offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Updating RPi Firmware]]&lt;br /&gt;
: Up to date firmware offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Static IP Config]]&lt;br /&gt;
: network static IP address is useful if you RPi is to be accessed remotely&lt;br /&gt;
&lt;br /&gt;
;[[Enable SSH]]&lt;br /&gt;
: enable SSH to allow remote login&lt;br /&gt;
&lt;br /&gt;
;[[Setup VNC]]&lt;br /&gt;
: to access via remote desktop &lt;br /&gt;
&lt;br /&gt;
;[[Expand Image to fill SD card]]&lt;br /&gt;
: Use the spare space assuming your SD card is larger than the default image you installed.&lt;br /&gt;
&lt;br /&gt;
;[[Backup SD Image]]&lt;br /&gt;
: So you don&amp;#039;t undo all your great work in a &amp;#039;&amp;#039;flash&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
;[[Enable Sound]]&lt;br /&gt;
: As of {{REVISIONDAY2}}/{{REVISIONMONTH}}/{{REVISIONYEAR}} the sound driver is still Alpha and is disabled by default, use this guide to enable and test sound on your RPi.&lt;br /&gt;
&lt;br /&gt;
;[[Playing Music]]&lt;br /&gt;
: Finally something useful to do with your RPi&lt;br /&gt;
&lt;br /&gt;
;[[Playing Videos]]&lt;br /&gt;
: Playing videos is a fun thing to do!&lt;br /&gt;
&lt;br /&gt;
;[[Accessing Network Shares]]&lt;br /&gt;
: SD cards just aren&amp;#039;t big enough.&lt;br /&gt;
&lt;br /&gt;
;[[Run Quake]]&lt;br /&gt;
: Just in case you get bored or are planning a LAN party.&lt;br /&gt;
&lt;br /&gt;
;[[Setting up a Torrent Server]]&lt;br /&gt;
: Setup your RPi to get he latest RPi distro using torrents.&lt;br /&gt;
&lt;br /&gt;
;[[Remot Login]]&lt;br /&gt;
: Use your RPi as a remote terminal to a Windows machine.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=165</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=165"/>
				<updated>2012-06-14T19:30:07Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SD card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SD card to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly, create a directory on the Linux host to mount the location that will receive the backup. e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mount -t cifs //hostname/sharename -o username=xxxx,password=yyyy /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: the hostname can be substituted with the IP address of the machine receiving the backup.&lt;br /&gt;
&lt;br /&gt;
Thirdly, insert the SD card into the machine doing the backup and note its device assignment; as per the Easy CD card set up. Make sure all partions are dismounted. For the following illustration, assume that the SD card to be backed up is &amp;#039;&amp;#039;sdb&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
Finally, use the &amp;#039;&amp;#039;dd&amp;#039;&amp;#039; comand to backup the SD card image&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dd bs=1M if=/dev/sdb of=/media/cifshares/SD_Card_Image.img &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: As yet I haven&amp;#039;t actually tried to reload a saved image. So be warned.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Time spent backing up is always saved in rebuilding.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=164</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=164"/>
				<updated>2012-06-14T19:27:54Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: /* Linux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SD card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SD card to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly, create a directory on the Linux host to mount the location that will receive the backup. e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mount -t cifs //hostname/sharename -o username=xxxx,password=yyyy /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: the hostname can be substituted with the IP address of the machine receiving the backup.&lt;br /&gt;
&lt;br /&gt;
Thirdly, insert the SD card into the machine doing the backup and note its device assignment; as per the Easy CD card set up. Make sure all partions are dismounted. For the following illustration, assume that the SD card to be backed up is sdb.&lt;br /&gt;
&lt;br /&gt;
Finally, use the dd comand to backup the SD card image&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dd bs=1M if=/dev/sdb of=/media/cifshares/SD_Card_Image.img &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: As yet I haven&amp;#039;t actually tried to reload a saved image. So be warned.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Time spent backing up is always saved in rebuilding.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=163</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=163"/>
				<updated>2012-06-14T19:27:11Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SD card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SDd to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly, create a directory on the Linux host to mount the location that will receive the backup. e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mount -t cifs //hostname/sharename -o username=xxxx,password=yyyy /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: the hostname can be substituted with the IP address of the machine receiving the backup.&lt;br /&gt;
&lt;br /&gt;
Thirdly, insert the SD card into the machine doing the backup and note its device assignment; as per the Easy CD card set up. Make sure all partions are dismounted. For the following illustration, assume that the SD card to be backed up is sdb.&lt;br /&gt;
&lt;br /&gt;
Finally, use the dd comand to backup the SD card image&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dd bs=1M if=/dev/sdb of=/media/cifshares/SD_Card_Image.img &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: As yet I haven&amp;#039;t actually tried to reload a saved image. So be warned.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Time spent backing up is always saved in rebuilding.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=162</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=162"/>
				<updated>2012-06-14T19:25:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SD card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SDd to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly, create a directory on the Linux host to mount the location that will receive the backup. e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mount -t cifs //hostname/sharename -o username=xxxx,password=yyyy /media/cifshares&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thirdly, insert the SD card into the machine doing the backup and note its device assignment; as per the Easy CD card set up. Make sure all partions are dismounted. For the following illustration, assume that the SD card to be backed up is sdb.&lt;br /&gt;
&lt;br /&gt;
Finally, use the dd comand to backup the SD card image&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dd bs=1M if=/dev/sdb of=/media/cifshares/SD_Card_Image.img &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: As yet I haven&amp;#039;t actually tried to reload a saved image. So be warned.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Time spent backing up is always saved in rebuilding.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=161</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=161"/>
				<updated>2012-06-14T19:11:03Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SC card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
This uses the method given Raspberry Pi Easy SD Card Set Up referenced above: but in reverse. Any Linux machine can be used and it assumes the SD Card being backed up is not mounted. So if you only have one SD card you can&amp;#039;t use your Pi, you have to use another Linux machine. However, if you have two SD cards capable of booting a Pi, use the one you aren&amp;#039;t backing up to boot Pi and the backup the other, via a USB - SD card reader.&lt;br /&gt;
&lt;br /&gt;
If you are using another Linux machine you can back it up to that machine or to anything, such as a NAS, that it can see. If your using your Pi it will have to be backed up to some form of extarnal storage, such as a USB HDD or a NAS.&lt;br /&gt;
&lt;br /&gt;
The instruction here back up the SDd to a mount point on the Linux machine doing the backup.&lt;br /&gt;
&lt;br /&gt;
Firstly mount the location that will receive the backup:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Tim spent backing up is always saved in rebuilding.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=160</id>
		<title>HDMI Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=160"/>
				<updated>2012-06-13T20:10:52Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
[http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851 http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/R-Pi_ConfigurationFile http://elinux.org/R-Pi_ConfigurationFile]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/RPi_config.txt http://elinux.org/RPi_config.txt]&lt;br /&gt;
&lt;br /&gt;
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693 http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example Problem:&lt;br /&gt;
1920 x 1080 @ 60Hz Monitor&lt;br /&gt;
Image format provided by RasPi, as above. Reported by monitor and by RasPi.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tvservice -s&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reduced image size.&lt;br /&gt;
&lt;br /&gt;
lxde -&amp;gt; Preferences -&amp;gt; Monitor reports 1824 x 984&lt;br /&gt;
&lt;br /&gt;
Solution (Information obtained from above references):&lt;br /&gt;
Generated a /boot/config.txt file&lt;br /&gt;
added line&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This put the image at full 1920 x 1080. This also put the image right to the edges; this is too close. Edited the config.txt to read.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
overscan_left=5&lt;br /&gt;
overscan_right=5&lt;br /&gt;
overscan_top=5&lt;br /&gt;
overscan_bottom=5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This gave the image a 5 pixel border.&lt;br /&gt;
&lt;br /&gt;
Occasionally the RasPi reboots with a centralised colour reference square, but generally boots normally.&lt;br /&gt;
&lt;br /&gt;
References above also give information as to disable the RasPi HDMI Hot-Plug Detection which will enable the HDMI output even if no Monitor is detected.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=159</id>
		<title>HDMI Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=159"/>
				<updated>2012-06-13T20:08:27Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
[http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851 http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/R-Pi_ConfigurationFile http://elinux.org/R-Pi_ConfigurationFile]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/RPi_config.txt http://elinux.org/RPi_config.txt]&lt;br /&gt;
&lt;br /&gt;
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693 http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example Problem:&lt;br /&gt;
1920 x 1080 @ 60Hz Monitor&lt;br /&gt;
Image format provided by RasPi, as above. Reported by monitor and by RasPi.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tvservice -s&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reduced image size.&lt;br /&gt;
&lt;br /&gt;
lxde -&amp;gt; Preferences -&amp;gt; Monitor reports 1824 x 984&lt;br /&gt;
&lt;br /&gt;
Solution (Information obtained from above references):&lt;br /&gt;
Generated a /boot/config.txt file&lt;br /&gt;
added line&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This put the image at full 1920 x 1080. This put the image right to the edges, but was a too close. Edited the config.txt to read.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
overscan_left=5&lt;br /&gt;
overscan_right=5&lt;br /&gt;
overscan_top=5&lt;br /&gt;
overscan_bottom=5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This gave the image a 5 pixel border.&lt;br /&gt;
&lt;br /&gt;
Occasionally the RasPi reboots with a centralised colour reference square, but generally boots normally.&lt;br /&gt;
&lt;br /&gt;
References above also give information as to disable the RasPi HDMI Hot-Plug Detection which will enable the HDMI output even if no Monitor is detected.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=158</id>
		<title>HDMI Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=158"/>
				<updated>2012-06-13T20:07:26Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
[http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851 http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/R-Pi_ConfigurationFile http://elinux.org/R-Pi_ConfigurationFile]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/RPi_config.txt http://elinux.org/RPi_config.txt]&lt;br /&gt;
&lt;br /&gt;
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693 http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example Problem:&lt;br /&gt;
1920 x 1080 @ 60Hz Monitor&lt;br /&gt;
Image format provided by RasPi, as above. Reported by monitor and by RasPi.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tvservice -s&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reduced image size.&lt;br /&gt;
&lt;br /&gt;
lxde -&amp;gt; Preferences -&amp;gt; Monitor reports 1824 x 984&lt;br /&gt;
&lt;br /&gt;
Solution (Information obtained from above references):&lt;br /&gt;
Generated a /boot/config.txt file&lt;br /&gt;
added line&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This put the image at full 1920 x 1080. This put the image right to the edges, but was a too close. Edited the config.txt to read.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
overscan_left=5&lt;br /&gt;
overscan_right=5&lt;br /&gt;
overscan_top=5&lt;br /&gt;
overscan_bottom=5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This gave the image a 5 pixel border.&lt;br /&gt;
&lt;br /&gt;
Occasionally the RasPi reboots with a centralised colour reference square, but generally boots normally.&lt;br /&gt;
&lt;br /&gt;
References above also give information as to disable the RasPi HDMI Hot-Plug Detection which will eneble the HDMI output even if no Monitor is detected.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=157</id>
		<title>ListOfRaspberryPiHow-Tos</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=157"/>
				<updated>2012-06-13T20:04:56Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:RaspberryPi]]&lt;br /&gt;
== Topics ==&lt;br /&gt;
This page is a list to the available RaspberryPi How-Tos.&lt;br /&gt;
&lt;br /&gt;
;[[Setup:RPI]]&lt;br /&gt;
: initial setup and configuration and updates.&lt;br /&gt;
&lt;br /&gt;
;[[HDMI Configuration]]&lt;br /&gt;
: HDMI references and example problem/solution&lt;br /&gt;
;[[AddingUsers:RPi]]&lt;br /&gt;
: add a user and assign super user privledges.&lt;br /&gt;
&lt;br /&gt;
;[[Updating the RPi Software]]&lt;br /&gt;
: Up to date software offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Updating RPi Firmware]]&lt;br /&gt;
: Up to date firmware offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Static IP Config]]&lt;br /&gt;
: network static IP address is useful if you RPi is to be accessed remotely&lt;br /&gt;
&lt;br /&gt;
;[[Enable SSH]]&lt;br /&gt;
: enable SSH to allow remote login&lt;br /&gt;
&lt;br /&gt;
;[[Setup VNC]]&lt;br /&gt;
: to access via remote desktop &lt;br /&gt;
&lt;br /&gt;
;[[Expand Image to fill SD card]]&lt;br /&gt;
: Use the spare space assuming your SD card is larger than the default image you installed.&lt;br /&gt;
&lt;br /&gt;
;[[Backup SD Image]]&lt;br /&gt;
: So you don&amp;#039;t undo all your great work in a &amp;#039;&amp;#039;flash&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
;[[Enable Sound]]&lt;br /&gt;
: As of {{REVISIONDAY2}}/{{REVISIONMONTH}}/{{REVISIONYEAR}} the sound driver is still Alpha and is disabled by default, use this guide to enable and test sound on your RPi.&lt;br /&gt;
&lt;br /&gt;
;[[Playing Music]]&lt;br /&gt;
: Finally something useful to do with your RPi&lt;br /&gt;
&lt;br /&gt;
;[[Playing Videos]]&lt;br /&gt;
: Playing videos is a fun thing to do!&lt;br /&gt;
&lt;br /&gt;
;[[Accessing Network Shares]]&lt;br /&gt;
: SD cards just aren&amp;#039;t big enough.&lt;br /&gt;
&lt;br /&gt;
;[[Run Quake]]&lt;br /&gt;
: Just in case you get bored or are planning a LAN party.&lt;br /&gt;
&lt;br /&gt;
;[[Setting up a Torrent Server]]&lt;br /&gt;
: Setup your RPi to get he latest RPi distro using torrents.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=156</id>
		<title>HDMI Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=156"/>
				<updated>2012-06-13T20:03:41Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
[http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851 http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/R-Pi_ConfigurationFile http://elinux.org/R-Pi_ConfigurationFile]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/RPi_config.txt http://elinux.org/RPi_config.txt]&lt;br /&gt;
&lt;br /&gt;
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693 http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Original Problem:&lt;br /&gt;
1920 x 1080 @ 60Hz Monitor&lt;br /&gt;
Image format provided by RasPi, as above. Reported by monitor and by RasPi.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tvservice -s&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reduced image size.&lt;br /&gt;
&lt;br /&gt;
lxde -&amp;gt; Preferences -&amp;gt; Monitor reports 1824 x 984&lt;br /&gt;
&lt;br /&gt;
Solution (Information obtained from above references):&lt;br /&gt;
Generated a /boot/config.txt file&lt;br /&gt;
added line&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This put the image at full 1920 x 1080. This put the image right to the edges, but was a too close. Edited the config.txt to read.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
overscan_left=5&lt;br /&gt;
overscan_right=5&lt;br /&gt;
overscan_top=5&lt;br /&gt;
overscan_bottom=5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This gave the image a 5 pixel border.&lt;br /&gt;
&lt;br /&gt;
Occasionally the RasPi reboots with a centralised colour reference square, but generally boots normally.&lt;br /&gt;
&lt;br /&gt;
References above also give information as to disable the RasPi HDMI Hot-Plug Detection which will eneble the HDMI output even if no Monitor is detected.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=155</id>
		<title>HDMI Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=HDMI_Configuration&amp;diff=155"/>
				<updated>2012-06-13T19:59:50Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
&lt;br /&gt;
[http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851 http://www.69b.org/prox-pi.php/rpo/phpBB3/viewtopic.php?f=5&amp;amp;t=5851]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/R-Pi_ConfigurationFile http://elinux.org/R-Pi_ConfigurationFile]&lt;br /&gt;
&lt;br /&gt;
[http://elinux.org/RPi_config.txt http://elinux.org/RPi_config.txt]&lt;br /&gt;
&lt;br /&gt;
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693 http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&amp;amp;t=7693]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Original Problem:&lt;br /&gt;
1920 x 1080 @ 60Hz Monitor&lt;br /&gt;
Image format provided by RasPi, as above. Reported by monitor and by RasPi.&lt;br /&gt;
&lt;br /&gt;
tvservice -s&lt;br /&gt;
&lt;br /&gt;
Reduced image size.&lt;br /&gt;
&lt;br /&gt;
lxde -&amp;gt; Preferences -&amp;gt; Monitor reprts 1824 x 984&lt;br /&gt;
&lt;br /&gt;
Solution (Information obtained from above references):&lt;br /&gt;
Generated a /boot/config.txt file&lt;br /&gt;
added line&lt;br /&gt;
&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
&lt;br /&gt;
This put the image at full 1920 x 1080. This put the image right to the edges, but was a too close. Edited the config.txt to read.&lt;br /&gt;
&lt;br /&gt;
disable_overscan=1&lt;br /&gt;
overscan_left=5&lt;br /&gt;
overscan_right=5&lt;br /&gt;
overscan_top=5&lt;br /&gt;
overscan_bottom=5&lt;br /&gt;
&lt;br /&gt;
This gave the image a 5 pixel border.&lt;br /&gt;
&lt;br /&gt;
Occasionally the RasPi reboots with a centralised colour reference square, but generally boots normally.&lt;br /&gt;
&lt;br /&gt;
References above also give information as to disable the RasPi HDMI Hot-Plug Detection which will eneble the HDMI output even if no Monitor is detected.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=132</id>
		<title>Backup SD Image</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=Backup_SD_Image&amp;diff=132"/>
				<updated>2012-06-08T19:23:56Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: RaspberryPi]]&lt;br /&gt;
At some point in your use of the RPi, you&amp;#039;re going to think &amp;quot;I&amp;#039;ve made a whole heap of changes to my RPi build, what if it breaks and I lose everything? How do I stop that happening?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The answer is &amp;#039;you can&amp;#039;t&amp;#039; hardware fails, power glitches, &amp;lt;code&amp;gt; sudo rm -rf * &amp;lt;/code&amp;gt;, human error, all these types of thing can corrupt your precious SD card.&lt;br /&gt;
&lt;br /&gt;
The solution is &amp;#039;back it up&amp;#039;. &lt;br /&gt;
&lt;br /&gt;
The ideal solution is to create an device image of your current SD card so you can completely rebuilt it rather than starting from a vanilla debian or fedora build.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
[http://elinux.org/RPi_Easy_SD_Card_Setup http://elinux.org/RPi_Easy_SD_Card_Setup]&lt;br /&gt;
&lt;br /&gt;
== Creating an SD Image ==&lt;br /&gt;
You&amp;#039;ve probably already used an image tool to burn your SD card from an process similar to [[Setup:RPI]].&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
I used the windows tool [https://launchpad.net/win32-image-writer win32-image-writer].&lt;br /&gt;
win32-image-writer can also be used to create an image file.&lt;br /&gt;
&lt;br /&gt;
# Shutdown you RPI using &amp;lt;code&amp;gt; sudo shutdown -h now &amp;lt;/code&amp;gt;.&lt;br /&gt;
# Remove the power from the micro USB connection&lt;br /&gt;
# Remove the SD card from the RPi slot.&lt;br /&gt;
# Insert the SD card into your Windows PC card slot&lt;br /&gt;
# Run the &amp;#039;&amp;#039;win32-image-writer&amp;#039;&amp;#039; utility on the windows PC&lt;br /&gt;
::* Select the SD card in the &amp;#039;&amp;#039;device&amp;#039;&amp;#039; drop down. If you have more than one device, be careful to select to correct one.&lt;br /&gt;
::* Select the Imager Name to write to, make sure you select a *.img filename.&lt;br /&gt;
::* Press &amp;#039;&amp;#039;read&amp;#039;&amp;#039; button to burn a binary image of the SC card to the file.&lt;br /&gt;
&lt;br /&gt;
The process is slow and the imager file generated will be approximated the same size as the SC card capacity. This is because the image is a binary clone of the SD card.&lt;br /&gt;
The img file may be zipped to reduce its size after the process is completed.&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
Coming Soon. Done: but needs writing up.&lt;br /&gt;
&lt;br /&gt;
== Regular Backup ==&lt;br /&gt;
If you make regular changes to your RPi its worthwhile spending the time creating these images. Tim spent backing up is always saved in rebuilding.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=131</id>
		<title>ListOfRaspberryPiHow-Tos</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=131"/>
				<updated>2012-06-08T19:17:07Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:RaspberryPi]]&lt;br /&gt;
== Topics ==&lt;br /&gt;
This page is a list to the available RaspberryPi How-Tos.&lt;br /&gt;
&lt;br /&gt;
;[[Setup:RPI]]&lt;br /&gt;
: initial setup and configuration and updates.&lt;br /&gt;
&lt;br /&gt;
;[[HDMI Configuration]]&lt;br /&gt;
: Coming Soon. I&amp;#039;ve done what I wanted, need to write it up&lt;br /&gt;
&lt;br /&gt;
;[[AddingUsers:RPi]]&lt;br /&gt;
: add a user and assign super user privledges.&lt;br /&gt;
&lt;br /&gt;
;[[Updating the RPi Software]]&lt;br /&gt;
: Up to date software offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Updating RPi Firmware]]&lt;br /&gt;
: Up to date firmware offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Static IP Config]]&lt;br /&gt;
: network static IP address is useful if you RPi is to be accessed remotely&lt;br /&gt;
&lt;br /&gt;
;[[Enable SSH]]&lt;br /&gt;
: enable SSH to allow remote login&lt;br /&gt;
&lt;br /&gt;
;[[Setup VNC]]&lt;br /&gt;
: to access via remote desktop &lt;br /&gt;
&lt;br /&gt;
;[[Expand Image to fill SD card]]&lt;br /&gt;
: Use the spare space assuming your SD card is larger than the default image you installed.&lt;br /&gt;
&lt;br /&gt;
;[[Backup SD Image]]&lt;br /&gt;
: So you don&amp;#039;t undo all your great work in a &amp;#039;&amp;#039;flash&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
;[[Enable Sound]]&lt;br /&gt;
: As of {{REVISIONDAY2}}/{{REVISIONMONTH}}/{{REVISIONYEAR}} the sound driver is still Alpha and is disabled by default, use this guide to enable and test sound on your RPi.&lt;br /&gt;
&lt;br /&gt;
;[[Playing Music]]&lt;br /&gt;
: Finally something useful to do with your RPi&lt;br /&gt;
&lt;br /&gt;
;[[Accessing Network Shares]]&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
;[[Run Quake]]&lt;br /&gt;
: Just in case you get bored or are planning a LAN party.&lt;br /&gt;
&lt;br /&gt;
;[[Setting up a Torrent Server]]&lt;br /&gt;
: Setup your RPi to get he latest RPi distro using torrents.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	<entry>
		<id>http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=130</id>
		<title>ListOfRaspberryPiHow-Tos</title>
		<link rel="alternate" type="text/html" href="http://wiki.raspberrytorte.com/index.php?title=ListOfRaspberryPiHow-Tos&amp;diff=130"/>
				<updated>2012-06-08T19:15:59Z</updated>
		
		<summary type="html">&lt;p&gt;Ajd: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:RaspberryPi]]&lt;br /&gt;
== Topics ==&lt;br /&gt;
This page is a list to the available RaspberryPi How-Tos.&lt;br /&gt;
&lt;br /&gt;
;[[Setup:RPI]]&lt;br /&gt;
: initial setup and configuration and updates.&lt;br /&gt;
&lt;br /&gt;
;[[HDMI Configuration]]&lt;br /&gt;
: coming Soon&lt;br /&gt;
&lt;br /&gt;
;[[AddingUsers:RPi]]&lt;br /&gt;
: add a user and assign super user privledges.&lt;br /&gt;
&lt;br /&gt;
;[[Updating the RPi Software]]&lt;br /&gt;
: Up to date software offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Updating RPi Firmware]]&lt;br /&gt;
: Up to date firmware offers perfromance and security benefits&lt;br /&gt;
&lt;br /&gt;
;[[Static IP Config]]&lt;br /&gt;
: network static IP address is useful if you RPi is to be accessed remotely&lt;br /&gt;
&lt;br /&gt;
;[[Enable SSH]]&lt;br /&gt;
: enable SSH to allow remote login&lt;br /&gt;
&lt;br /&gt;
;[[Setup VNC]]&lt;br /&gt;
: to access via remote desktop &lt;br /&gt;
&lt;br /&gt;
;[[Expand Image to fill SD card]]&lt;br /&gt;
: Use the spare space assuming your SD card is larger than the default image you installed.&lt;br /&gt;
&lt;br /&gt;
;[[Backup SD Image]]&lt;br /&gt;
: So you don&amp;#039;t undo all your great work in a &amp;#039;&amp;#039;flash&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
;[[Enable Sound]]&lt;br /&gt;
: As of {{REVISIONDAY2}}/{{REVISIONMONTH}}/{{REVISIONYEAR}} the sound driver is still Alpha and is disabled by default, use this guide to enable and test sound on your RPi.&lt;br /&gt;
&lt;br /&gt;
;[[Playing Music]]&lt;br /&gt;
: Finally something useful to do with your RPi&lt;br /&gt;
&lt;br /&gt;
;[[Accessing Network Shares]]&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
;[[Run Quake]]&lt;br /&gt;
: Just in case you get bored or are planning a LAN party.&lt;br /&gt;
&lt;br /&gt;
;[[Setting up a Torrent Server]]&lt;br /&gt;
: Setup your RPi to get he latest RPi distro using torrents.&lt;/div&gt;</summary>
		<author><name>Ajd</name></author>	</entry>

	</feed>