![]() |
2008-04-26
, 06:46
|
Posts: 4,556 |
Thanked: 1,624 times |
Joined on Dec 2007
|
#121
|
![]() |
2008-04-28
, 16:37
|
Posts: 26 |
Thanked: 3 times |
Joined on Feb 2008
|
#122
|
![]() |
2008-04-28
, 16:56
|
Posts: 1,950 |
Thanked: 1,174 times |
Joined on Jan 2008
@ Seattle, USA
|
#123
|
![]() |
2008-04-28
, 19:08
|
Posts: 48 |
Thanked: 3 times |
Joined on Apr 2008
|
#124
|
![]() |
2008-04-28
, 23:13
|
Posts: 1,950 |
Thanked: 1,174 times |
Joined on Jan 2008
@ Seattle, USA
|
#125
|
Hello All...Long time lurker, first time poster.
I own a n800 and I have completed the booting off of sd card hack a couple months ago. Its working well. I have (2) 4 gig cards in my internal and external slots. Here lies my problem, I want to go up to 16 gig cards. I am booting from mmc2. How would I go about cloning my mmc2 (with the OS on it and app installs) to the new 16 gig card? I dont have a linux box and my windows box doesnt see the partition that the tablet os and apps installs are on. Is there any way to "ghost" my install onto the new card without having to redo the whole "boot off mmc" process all over again and having to reinstall all of my many apps all over again? Thanks for your help. Great Forum!!
![]() |
2008-04-29
, 07:16
|
Posts: 26 |
Thanked: 3 times |
Joined on Feb 2008
|
#126
|
Absolutely. You'll probably still have about 7GB instead of the about 7.6GB you have if you don't do the cloning.
BTW, for N810 I think where I have mmc2 you need to use mmc1 in the instructions. (I need to fix that; but I'm tired now.)
![]() |
2008-04-29
, 07:35
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#127
|
I want to go up to 16 gig cards. I am booting from mmc2. How would I go about cloning my mmc2 (with the OS on it and app installs) to the new 16 gig card? I dont have a linux box and my windows box doesnt see the partition that the tablet os and apps installs are on. Is there any way to "ghost" my install onto the new card without having to redo the whole "boot off mmc" process all over again and having to reinstall all of my many apps all over again?
![]() |
2008-04-30
, 08:58
|
Posts: 26 |
Thanked: 3 times |
Joined on Feb 2008
|
#128
|
if [ $? = 0 ]; then umount $MP 2> /dev/null fi RC=$? else # it is not mounted RC=0 fi
if [ $? = 0 ]; then if [ "$MP" != "/" ] ; then umount $MP 2> /dev/null ; fi RC=$? else # it is not mounted RC=0 fi
![]() |
2008-04-30
, 18:34
|
Posts: 1,950 |
Thanked: 1,174 times |
Joined on Jan 2008
@ Seattle, USA
|
#130
|
Ive read through a lot of the posts in this thread, and just wondered if anyone would be so kind as to confirm something for me:
1. Am i correct in thinking thatto eliminate problems accessing the external card via the usb cable on my computer that i must edit the file /usr/sbin/osso-mmc-umount.sh
from
to:Code:if [ $? = 0 ]; then umount $MP 2> /dev/null fi RC=$? else # it is not mounted RC=0 fi
Code:if [ $? = 0 ]; then if [ "$MP" != "/" ] ; then umount $MP 2> /dev/null ; fi RC=$? else # it is not mounted RC=0 fi
2. Can anyone confirm the best method to edit the boot menu, eg set it to boot from external card by default (and remove option to boot from internal 2gb memory on n810)
As a side note, is the boot from usb hard drive option used for anything?
3. Just for future info, if i wanted to re-flash the external card with the basic installation i have saved on the internal flash, which steps do i take to do that?