I have files in the nand flash memory of my Gumstix Overo that i want to copy to a SD card, but i can't access them through the overo terminal, so i wanted to copy them through the linux terminal but i don't know how. Can someone help me?
I have done the mount command and it gives me this:
debian@OCR-1:~$ mount
rootfs on / type rootfs (rw)
/proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
mdev on /dev type tmpfs (rw,relatime)
devpts on /dev/pts type devpts (rw,relatime,mode=600)
none on /debug type debugfs (rw,relatime)
ubi0:rootfs on /mnt/rootfs type ubifs (ro,noatime)
/dev/mmcblk0p1 on /var/log type ext3 (rw,relatime,errors=continue,commit=1,barrier=1,data=ordered)
/dev/mmcblk0p4 on /var/archive type ext3 (ro,noatime,errors=continue,barrier=1,data=ordered)
debian@OCR-1:~$
but i don't know if this helps me access nand.
After i put an empty sd card, it doesn't appear on the mount command:
debian@OCR-1:~$ mount
rootfs on / type rootfs (rw)
/proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
mdev on /dev type tmpfs (rw,relatime)
devpts on /dev/pts type devpts (rw,relatime,mode=600)
none on /debug type debugfs (rw,relatime)
ubi0:rootfs on /mnt/rootfs type ubifs (ro,noatime)
debian@OCR-1:~$
mountto see what filesystems are mounted. Check manuals and if that doesn't help, contact support/mnt/rootfsfor example?dd, unless you are trying to write to it as a block device. To simply copy files, usecp./dev/mmcblk0p1is the block device, and it's mounted on/var/log/.