I have tried a few different options to get the ArchLinux OS files on the TP. Finally broke down and just put it into usb mode and copied the files over to it.
Download the ArchLinuxARM-armv5te-latest.tar.gz -
http://archlinuxarm.org/developers/downloads Extract the archive and put the folders into /tmp/archlinuxarm
I couldn't think of a good way to do this on the device. It does not have an application to extract the archive.
Jeanfrancis (I believe he is the developer of the Funtoo on TP) suggested using ssh to scp the file from your computer to the TP. While that is a great idea, I did not want to get distracted down another rabbit hole to learn how to setup ssh. I've done it once, but I am by no means comfortable doing it yet.
Once I downloaded and extracted the archive on my HDD, I put the TP into USB Drive mode. Open a terminal and navigate to the directory where you extracted the archive.
Make a folder in your TouchPad downloads folder for the files.
CODE
mkdir /media/"HP TOUCHPAD"/downloads/archlinuxarm
Then copy folders from the HDD to your archlinuxarm folder on the TP.
CODE
cp -rv ./bin ./boot ./dev ./etc ./home ./lib ./media ./mnt ./opt ./proc ./root ./run ./sbin ./srv ./sys ./tmp ./usr ./var /media/"HP TOUCHPAD"/downloads/archlinuxarm
While we are here, let's get ready for the next step. We will need the file uImage.ArchLinuxARM on the TP.
CODE
cp ./uImage.ArchLinuxARM /media/"HP TOUCHPAD"/downloads
Exit USB mode and open novaterm.
Now the files are on the TP, we can move them to the /media/archlinux folder where they belong. The reason we put them in downloads is because that folder is accessable in USB mode and the final folder is not.
At the novaterm prompt
CODE
mkdir -m 755 /media/archlinux
mount -t ext3 /dev/store/archlinuxarm /media/archlinux
cd /media/internal/downloads/archlinuxarm
cp -rv ./bin ./boot ./dev ./etc ./home ./lib ./media ./mnt ./opt ./proc ./root ./run ./sbin ./srv ./sys ./tmp ./usr ./var /media/archlinux
After that, cd to /media/archlinux and ls to see that it worked. It did.
CODE
BPHPTP archlinux # cd /media/archlinux
BPHPTP archlinux # ls -al
drwxr-xr-x 21 root root 4096 Dec 16 14:50 .
drwxrwxrwt 12 root root 540 Dec 16 14:45 ..
drwxr-xr-x 2 root root 4096 Dec 16 14:46 bin
drwxr-xr-x 2 root root 4096 Dec 16 14:46 boot
drwxr-xr-x 2 root root 4096 Dec 16 14:46 dev
drwxr-xr-x 32 root root 4096 Dec 16 14:46 etc
drwxr-xr-x 2 root root 4096 Dec 16 14:46 home
drwxr-xr-x 10 root root 4096 Dec 16 14:46 lib
drwx------ 2 root root 16384 Dec 16 00:06 lost+found
drwxr-xr-x 2 root root 4096 Dec 16 14:46 media
drwxr-xr-x 2 root root 4096 Dec 16 14:46 mnt
drwxr-xr-x 2 root root 4096 Dec 16 14:46 opt
drwxr-xr-x 2 root root 4096 Dec 16 14:46 proc
drwxr-xr-x 2 root root 4096 Dec 16 14:46 root
drwxr-xr-x 2 root root 4096 Dec 16 14:46 run
drwxr-xr-x 2 root root 4096 Dec 16 14:46 sbin
drwxr-xr-x 4 root root 4096 Dec 16 14:46 srv
drwxr-xr-x 2 root root 4096 Dec 16 14:46 sys
drwxr-xr-x 2 root root 4096 Dec 16 14:46 tmp
drwxr-xr-x 9 root root 4096 Dec 16 14:50 usr
drwxr-xr-x 13 root root 4096 Dec 16 14:50 var
Now a little housekeeping.
CODE
cd /media/internal/downloads
rm -r ./archlinuxarm
rm -r ./moboot
Move uImage.ArchLinuxARM to /boot. You'll need to mount /boot rw first
though. Open novaterm, again.
CODE
mount -o remount,rw /boot
cp /media/internal/downloads/uImage.ArchLinuxARM /boot
cd /boot
ls -al
uImage.ArchLinuxARM is there, YEAH!

Almost there.
Edited by amenditman, 16 December 2011 - 06:55 PM.