by Sinatics » Thu Nov 29, 2012 8:15 pm 
			
			SOLVED and UPDATE to help others:
Alright, This is what I did to fix my issue. This is for the V2 Pink PogoPlug:
1. Use Gparted to create ext3 partition on thumb drive
2. Use live CD (Knopppix) to run the following commands on the thumb drive:
$this->bbcode_second_pass_code('', '
sudo su
')
**find usb mount point in file browser** 
$this->bbcode_second_pass_code('', '
cd /media/<mount point>
wget http://archlinuxarm.org/os/ArchLinuxARM-armv5te-latest.tar.gz
tar xvzf ArchLinuxARM-armv5te-latest.tar.gz
sync
umount /media/<mount point>
')
SSH into pogoplug with no flash drive inserted and run the following to make ext3 file systems bootable:
$this->bbcode_second_pass_code('', '
/usr/sbin/fw_setenv usb_rootfstype ext3
')
Insert flash drive into pogoplug and reboot then SSH in and run these commands:
$this->bbcode_second_pass_code('', '
pacman -Syu
pacman -Sy udevil
systemctl enable devmon@root.service
systemctl start devmon@root.service
')
At this point you should be able to plug in a ntfs/fat32/ext3 formated drive and have it automount. You can find its mount point by running $this->bbcode_second_pass_code('', 'df -H') hope this helped a few people since I was super confused when I got my pogoplug a few days ago.
**If this process still doesn't work for you try a different flash drive. I tried using an older 2GB Sandisk Cruzer and an older 1GB PNY flash drives -- Both of which had issues. I finally got this working with a newer 2GB PNY flash drive. YMMV, I plan to switch out to a SanDisk Cruzer Fit 16GB in a few days when I get it in the mail. Hope this has been helpful!
			
				Last edited by 
Sinatics on Fri Nov 30, 2012 4:00 am, edited 3 times in total.