How-TO:Reveal Hidden Partition
From Gen4Wiki
The X04 series has a hidden partition on the hard drive, which contains the Operating System. This partition can be revealed to show it contents; that is the goal of this tutorial.
Requirements:
- Linux
- Hard Drive From Archos Unit (504 would be the easiest since it is a 2.5" hard drive, not a 1.8" hard drive)
- Hard Drive Enclosure
- On the Linux machine, in a bash shell, type "ls /dev/hd*"
Example:
Linux ~ # ls /dev/hd* /dev/hda /dev/hda1 /dev/hda2 /dev/hda3 /dev/hda4 /dev/hda5 /dev/hda6
- Connect the enclosure with the hard drive to the Linux machine.
- On the Linux machine, in a bash shell, type "ls /dev/hd*", again
Example:
Linux~ # ls /dev/hd* /dev/hda /dev/hda2 /dev/hda4 /dev/hda6 /dev/hdc /dev/hda1 /dev/hda3 /dev/hda5 /dev/hdb /dev/hdc1
In this example, the Archos hard drive is /dev/hdc
- Partition the Drive
Linux~ # cfdisk /dev/hdc
Notice the unallocated space at end of the hard drive. Select the unallocated space and select NEW. Make it a Primary Partition,and select WRITE.
- Mount the partition
Make a directory for the new partition:
Linux~ # mkdir /mnt/archos
Mount the partition (as read-only)
Linux~ # mount /dev/hdc2 /mnt/archos -o ro
- Looking at the files
Linux~ # cd /mnt/archos Linux~ # ls
