|
2008-01-27
, 06:43
|
Posts: 479 |
Thanked: 58 times |
Joined on Dec 2007
@ Dubai, UAE
|
#222
|
|
2008-01-27
, 07:30
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#223
|
|
2008-01-29
, 05:41
|
|
Posts: 213 |
Thanked: 27 times |
Joined on Oct 2007
@ Detroit, MI
|
#224
|
|
2008-01-29
, 05:50
|
|
Posts: 213 |
Thanked: 27 times |
Joined on Oct 2007
@ Detroit, MI
|
#225
|
|
2008-03-06
, 02:01
|
Posts: 37 |
Thanked: 1 time |
Joined on Feb 2008
@ San Franicsco
|
#226
|
Now I got bitten by this too. Workaround is to edit file
/usr/sbin/osso-mmc-umount.sh (as already mentioned here http://www.internettablettalk.com/fo...&postcount=123 )
and change one line 'umount $mp 2> /dev/null' in this loop
to beCode:for mp in $MPS; do umount $mp 2> /dev/null RC=$? if [ $RC != 0 ]; then echo "$0: could not unmount $mp" exit $RC fi done
Which means skip unmounting root filesystem. If you don't write to same filesystem (i.e the active linux partition) over usb, it is safe. Most probably you just want to write to first FAT partition anyway.Code:for mp in $MPS; do if [ "$mp" != "/" ] ; then umount $mp 2> /dev/null ; fi RC=$? if [ $RC != 0 ]; then echo "$0: could not unmount $mp" exit $RC fi done
|
2008-03-07
, 20:43
|
Posts: 21 |
Thanked: 9 times |
Joined on Feb 2008
|
#227
|
|
2008-03-14
, 15:01
|
|
Posts: 267 |
Thanked: 50 times |
Joined on Feb 2008
@ Montreal, Canada
|
#228
|
|
2008-03-14
, 20:02
|
Posts: 21 |
Thanked: 9 times |
Joined on Feb 2008
|
#229
|
|
2008-03-14
, 20:04
|
Posts: 1,950 |
Thanked: 1,174 times |
Joined on Jan 2008
@ Seattle, USA
|
#230
|
how does one create an exact backup of the entire filesystem to mmc card?
Not very reassuring !
Question 5 (or so) already said it all: Why should I reboot from MMC ?