A prebuilt AVR32 Linux image for the STK1000 can be found in the BSP CD at /BSP-CD/builds/stk1000/avr32-linux-image.img.gz. Building the AVR32 Linux file system for the STK1000 describes how to build your own file system image.
df to see how it is mounted
# df Filesystem 1k-blocks ... Mounted on /dev/hda1 ... ... ... ... ... ... ... /dev/sda1 ... ... /media/usbdisk-1
In this this example we will assume that /dev/sda1 is mounted on /media/usbdisk-1.
# sudo umount /media/usbdisk-1 # sudo /sbin/e2fsck /dev/sda1 # sudo /sbin/mkfs.ext2 /dev/sda1 # sudo mount /dev/sda1 /media/usbdisk-1
# mkdir /tmp/avr32_image_source # cd /tmp/avr32_image_source # cp /bsp-cd/builds/avr32-linux-image.img.gz . # gunzip avr32-linux-image.img.gz
# mkdir /tmp/avr32_image # sudo mount -o loop /tmp/avr32_image_source/avr32-linux-image.img /tmp/avr32_image
# sudo cp -a /tmp/avr32_image/* /media/usbdisk-1
# sudo umount /dev/sda1
# sudo umount /tmp/avr32-image