Difference between revisions of "Raspberry Pi Disk Partitions"
Chris Tyler (talk | contribs) (Created page with 'Disk partitions in use on the Raspberry Pi: * sda1 - Fedora 13 with a lot of experiments ;-) - ctyler and paulw * sda2 * sda3 * sda5 * sda6 * sda7 * sda8 * sda9 If you want a d…') |
Chris Tyler (talk | contribs) |
||
Line 11: | Line 11: | ||
If you want a disk partition, claim it by filling in the list above. | If you want a disk partition, claim it by filling in the list above. | ||
+ | |||
+ | Recommendation for copying partitions: | ||
+ | * Claim a partition above | ||
+ | * Make sure it's empty! | ||
+ | * Format it with 'mkfs' | ||
+ | * Mount it: /mnt/whatever | ||
+ | * Copy it: cp -x -R -p -v / /mnt/whatever | ||
+ | ** The -x prevents the copy from proceeding to other filesystems | ||
+ | * Copy /boot/cmdline.txt to /boot/cmdline.PARTITIONID | ||
+ | * Edit /boot/cmdline.PARTITIONID to say: root=/dev/PARTITIONID | ||
+ | * Whenever you want to boot from your partition: cp /boot/cmdline.PARTITIONID /boot/cmdline.txt | ||
+ | * Change /etc/motd in your partition to tell people which partition they're on |
Revision as of 10:20, 23 November 2011
Disk partitions in use on the Raspberry Pi:
- sda1 - Fedora 13 with a lot of experiments ;-) - ctyler and paulw
- sda2
- sda3
- sda5
- sda6
- sda7
- sda8
- sda9
If you want a disk partition, claim it by filling in the list above.
Recommendation for copying partitions:
- Claim a partition above
- Make sure it's empty!
- Format it with 'mkfs'
- Mount it: /mnt/whatever
- Copy it: cp -x -R -p -v / /mnt/whatever
- The -x prevents the copy from proceeding to other filesystems
- Copy /boot/cmdline.txt to /boot/cmdline.PARTITIONID
- Edit /boot/cmdline.PARTITIONID to say: root=/dev/PARTITIONID
- Whenever you want to boot from your partition: cp /boot/cmdline.PARTITIONID /boot/cmdline.txt
- Change /etc/motd in your partition to tell people which partition they're on