Did it automount the card? It may have mounted it with a nodev or
something. Type 'mount' from root and report the results.
then mount /dev/mmcb** /mnt etc..
Regards,
--
Robert Nelson
http://www.rcn-ee.com/
Okay, with the mmc card umounted,
sudo mkdir -p /tmp/disk1
sudo mount /media/sdb2 /tmp/disk1
"mount" to verify it isn't mounted with nodev
then
sudo su (switch to superuser)
tar xpjf Angstrom-Beagleboard-demo-image-glibc-ipk-2008.1-test.20080920-beagleboard.rootfs.tar.bz2
-C /tmp/disk1/
exit (out of supersuser)
sudo umount /tmp/disk1
replace
> sudo mount /media/sdb2 /tmp/disk1
with
sudo /dev/sdb2 /tmp/disk1
sudo mount /dev/sdb2 /tmp/disk1
have you tried another card?
____________________________________________________________________________
This email and any files transmitted with it are confidential and are
intended solely for the use of the individual or entity to which they are
addressed. Access to this e-mail by anyone else is unauthorised. If you are
not the intended recipient, any disclosure, copying, distribution or any
action taken or omitted to be taken in reliance on it, is prohibited. E-mail
messages are not necessarily secure. Archos does not accept responsibility
for any changes made to this message after it was sent.
and this is still with the Knoppix (live-dvd) and knoppix thru vmware?
Mark -
That's very strange it switched between rw & ro, I've attached a line
by line console log of what i did in ubuntu to get it correctly untar
onto the SD card.
Regards,
--
Robert Nelson
http://www.rcn-ee.com/
****************************
SD card is
Fat32 : /dev/sdd1
ext3 : /dev/sdd2
Insert Card Ubuntu auto mounts..
voodoo@voodoo-desktop:~$ mount
/dev/sda1 on / type ext3 (rw,relatime,errors=remount-ro)
/dev/sdd2 on /media/disk type ext3 (rw,nosuid,nodev,uhelper=hal)
/dev/sdd1 on /media/disk-1 type vfat
(rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=1000,utf8,umask=077,flush)
voodoo@voodoo-desktop:~$
We need to remove nosuid,nodev.. so let's umount it.
voodoo@voodoo-desktop:~$ sudo umount /media/disk/ (ext3)
voodoo@voodoo-desktop:~$ mount
/dev/sda1 on / type ext3 (rw,relatime,errors=remount-ro)
/dev/sdd1 on /media/disk-1 type vfat
(rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=1000,utf8,umask=077,flush)
voodoo@voodoo-desktop:~$
Create tmp directory
voodoo@voodoo-desktop:~$ sudo mkdir -p /tmp/disk1/
Mount ext3 partition
voodoo@voodoo-desktop:~$ sudo mount /dev/sdd2 /tmp/disk1/
voodoo@voodoo-desktop:~$ mount
/dev/sda1 on / type ext3 (rw,relatime,errors=remount-ro)
/dev/sdd1 on /media/disk-1 type vfat
(rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=1000,utf8,umask=077,flush)
/dev/sdd2 on /tmp/disk1 type ext3 (rw)
voodoo@voodoo-desktop:~$
Switch to Superuser
voodoo@voodoo-desktop:~$ sudo su
untar to mounted drive
root@voodoo-desktop:/home/voodoo# tar xpjf
/home/voodoo/Angstrom-Beagleboard-demo-image-glibc-ipk-2008.1-test-20080920-beagleboard.rootfs.tar.bz2
-C /tmp/disk1/
root@voodoo-desktop:/home/voodoo# mount
/dev/sda1 on / type ext3 (rw,relatime,errors=remount-ro)
/dev/sdd1 on /media/disk-1 type vfat
(rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=1000,utf8,umask=077,flush)
/dev/sdd2 on /tmp/disk1 type ext3 (rw)
root@voodoo-desktop:/home/voodoo#
exit superuser, sync and umount,
root@voodoo-desktop:/home/voodoo# exit
voodoo@voodoo-desktop:~$ sync
voodoo@voodoo-desktop:~$ sudo umount /tmp/disk1/
http://shop3.frys.com/product/5448039?site=sr:SEARCH:MAIN_RSLT_PG
Regards,
> -----Original Message-----
> From: beagl...@googlegroups.com
> [mailto:beagl...@googlegroups.com] On Behalf Of Mark K.
> Sent: Wednesday, December 03, 2008 1:20 PM
> To: Beagle Board
> Subject: [beagleboard] Re: Linux Partition on SD Card is "Read Only File
System"
>
>