Difference between revisions of "Pidora Installation"

From CDOT Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
{{Pidora}}[[Category:Pidora 18 (Raspberry Pi Fedora Remix)]]
 
{{Pidora}}[[Category:Pidora 18 (Raspberry Pi Fedora Remix)]]
  
{{admon/note|Info Note|For the most up to date information on using the Installer, please visit the [[:fedora:Fedora ARM Installer|Fedora ARM Installer Wiki Page]]}}
+
== SD Card Installation Using the dd Command ==
 +
 
 +
The image can also be installed using the Unix/Linux dd command.
 +
 
 +
Needed:
 +
* A computer with at least 5 GB of free disk space, running some form of Unix or Linux.
 +
* An SD or SDHC card, with a capacity of 2GB or more. (Good-quality class 4 cards usually work well).
 +
* An SD/SDHC card writer, either built in to the computer or connected to a USB port.
 +
* An Internet connection.
 +
 
 +
{{Admon/important|Danger of Data Loss / System Damage|The selected device will be overwritten. If you select the wrong device, you may lose data. Exercise care when using <code>dd</code>.}}
 +
 
 +
Steps:
 +
# Download the image.
 +
# Decompress the image with a Zip-compatible program such as "unzip" (Linux) or WinZip (Windows).
 +
# Insert your SD/SDHC card into the card reader, and attach to the computer if necessary.
 +
# For running <code>dd</code> on Windows, see this [http://www.myraspberrypiexperience.com/using-dd-for-windows/ tutorial]
 +
# Identify the device node of the SD card (this will be something like <code>/dev/sdc</code> or <code>/dev/mmcblk0</code>).
 +
#* Do not use a partition device node (for example: use <code>/dev/sdc</code> or <code>/dev/mmcblk0</code>, not <code>/dev/sdc1</code> or <code>/dev/mmcblk0p1</code>).
 +
#* An easy way to identify the card is to list the device nodes (<code>ls -l /dev/sd* /dev/mmcblk*</code>) before and after inserting the SD card. Device nodes that that appear when the card is inserted correspond to the card.
 +
# Ensure that the device is unmounted.
 +
# Copy the image file to the card: <code>dd if=''NameOfImageFile'' of=/dev/''DeviceNode'' bs=4M</code>. Note that a block size (''bs'') of 4MB is used. Most SD cards have an erase block size of 4MB and if you do not include this parameter, the image will be copied at extremely slow speeds. On UNIX systems, such as Mac OS X, the ''bs'' parameter needs lowercase units (e.g. <code>bs=4m</code>)
 +
# Ensure that the image is fully written onto the card: <code>sync</code>
 +
# Remove the card.
 +
 
 +
 
 +
 
  
 
== SD Card Installation Using the Installer ==
 
== SD Card Installation Using the Installer ==
 +
 +
{{Admon/important|Out of Date|Due to lack of maintenance, this installer is not working properly.  Please use <code>dd</code> method instead.  We will release a fixed version soon.}}
 +
 +
{{admon/note|Info Note|For the most up to date information on using the Installer, please visit the [[:fedora:Fedora ARM Installer|Fedora ARM Installer Wiki Page]]}}
  
 
The easiest way to install the Remix is to use the <!-- [[:fedora:Fedora_ARM_Installer|installer]] --> installer program.
 
The easiest way to install the Remix is to use the <!-- [[:fedora:Fedora_ARM_Installer|installer]] --> installer program.
Line 31: Line 61:
 
# Click "Install".
 
# Click "Install".
 
# Wait until the program states that the installation is complete before removing the card.
 
# Wait until the program states that the installation is complete before removing the card.
 
=== SD Card Installation Using the dd Command ===
 
 
The image can also be installed using the Unix/Linux dd command.
 
 
Needed:
 
* A computer with at least 5 GB of free disk space, running some form of Unix or Linux.
 
* An SD or SDHC card, with a capacity of 2GB or more. (Good-quality class 4 cards usually work well).
 
* An SD/SDHC card writer, either built in to the computer or connected to a USB port.
 
* An Internet connection.
 
 
{{Admon/important|Danger of Data Loss / System Damage|The selected device will be overwritten. If you select the wrong device, you may lose data. Exercise care when using <code>dd</code>.}}
 
 
Steps:
 
# Download the image.
 
# Decompress the image with a Zip-compatible program such as "unzip" (Linux) or WinZip (Windows).
 
# Insert your SD/SDHC card into the card reader, and attach to the computer if necessary.
 
# Identify the device node of the SD card (this will be something like <code>/dev/sdc</code> or <code>/dev/mmcblk0</code>).
 
#* Do not use a partition device node (for example: use <code>/dev/sdc</code> or <code>/dev/mmcblk0</code>, not <code>/dev/sdc1</code> or <code>/dev/mmcblk0p1</code>).
 
#* An easy way to identify the card is to list the device nodes (<code>ls -l /dev/sd* /dev/mmcblk*</code>) before and after inserting the SD card. Device nodes that that appear when the card is inserted correspond to the card.
 
# Ensure that the device is unmounted.
 
# Copy the image file to the card: <code>dd if=''NameOfImageFile'' of=/dev/''DeviceNode'' bs=4M</code>. Note that a block size (''bs'') of 4MB is used. Most SD cards have an erase block size of 4MB and if you do not include this parameter, the image will be copied at extremely slow speeds. On UNIX systems, such as Mac OS X, the ''bs'' parameter needs lowercase units (e.g. <code>bs=4m</code>)
 
# Ensure that the image is fully written onto the card: <code>sync</code>
 
# Remove the card.
 

Latest revision as of 17:07, 6 April 2015

Pidora-horizontal.png

SD Card Installation Using the dd Command

The image can also be installed using the Unix/Linux dd command.

Needed:

  • A computer with at least 5 GB of free disk space, running some form of Unix or Linux.
  • An SD or SDHC card, with a capacity of 2GB or more. (Good-quality class 4 cards usually work well).
  • An SD/SDHC card writer, either built in to the computer or connected to a USB port.
  • An Internet connection.
Important.png
Danger of Data Loss / System Damage
The selected device will be overwritten. If you select the wrong device, you may lose data. Exercise care when using dd.

Steps:

  1. Download the image.
  2. Decompress the image with a Zip-compatible program such as "unzip" (Linux) or WinZip (Windows).
  3. Insert your SD/SDHC card into the card reader, and attach to the computer if necessary.
  4. For running dd on Windows, see this tutorial
  5. Identify the device node of the SD card (this will be something like /dev/sdc or /dev/mmcblk0).
    • Do not use a partition device node (for example: use /dev/sdc or /dev/mmcblk0, not /dev/sdc1 or /dev/mmcblk0p1).
    • An easy way to identify the card is to list the device nodes (ls -l /dev/sd* /dev/mmcblk*) before and after inserting the SD card. Device nodes that that appear when the card is inserted correspond to the card.
  6. Ensure that the device is unmounted.
  7. Copy the image file to the card: dd if=NameOfImageFile of=/dev/DeviceNode bs=4M. Note that a block size (bs) of 4MB is used. Most SD cards have an erase block size of 4MB and if you do not include this parameter, the image will be copied at extremely slow speeds. On UNIX systems, such as Mac OS X, the bs parameter needs lowercase units (e.g. bs=4m)
  8. Ensure that the image is fully written onto the card: sync
  9. Remove the card.



SD Card Installation Using the Installer

Important.png
Out of Date
Due to lack of maintenance, this installer is not working properly. Please use dd method instead. We will release a fixed version soon.
Note.png
Info Note
For the most up to date information on using the Installer, please visit the Fedora ARM Installer Wiki Page

The easiest way to install the Remix is to use the installer program.

For the most up to date information on using the Installer, please visit the Fedora ARM Installer Wiki Page

Needed:

  • A computer with at least 5 GB of free disk space, running one of these operating systems:
    • Fedora
    • Windows Vista or Windows 7
    • Other Linux
  • An SD or SDHC card, with a capacity of 2GB or more. (Good-quality class 4 cards usually work well). You may use a MicroSD card with an adapter.
  • An SD/SDHC card writer, either built in to the computer or connected to a USB port.
  • An Internet connection.
Important.png
Danger of Data Loss / System Damage
The selected device will be overwritten. If you select the wrong device, you may lose data. Exercise care when using the installer program.

Steps:

  1. Download the installer:
    • On a Fedora 18 (or higher) system: yum install fedora-arm-installer
    • For other operating systems, see the Fedora ARM Installer wiki page.
  2. Run the installer.
  3. Click the refresh (circle-arrow) button beside the Download list to retrieve a list of available images.
  4. Select the image you wish to install ("Pidora 18") -- or, if you have already downloaded the image file, browse to that file's location.
  5. Click the refresh (circle-arrow) button beside the Device list to retrieve a list of possible target devices for the installation.
  6. Select the device on which you wish to install the image (WARNING: all data on this device will be deleted! - be sure you have selected the correct device).
  7. Click "Install".
  8. Wait until the program states that the installation is complete before removing the card.