morning all
yesterday i spent most of my afternoon installing various roms and themes, and last night i was very brave and installed a recovery
im currently running CyanogenMod 3.9.10, now from what i understand this has auto apps2sd but will only work with a partitioned card. my card isnt partitioned.
so
am i right in thinking that 1.4 recovery can do this for me ?
does my card have to be empty / new format to do this ?
and can it be done at this stage of my phone ( theme, rom, radio installed )
many thanks guys
check out this thread it makes it very easy. if you do not have adb then just type in all the commands into the recovery console except in the beginning just hit enter in recovery console to start typing.
thanks for help
is there no easier way to do this ?
that looks complicated
with cm recovery, it's not hard at all. actually, i've done it several times in one day. haha honestly, it's a hell of a lot easier than how i had to partition my card in the first place. i spent hours trying to figure it out, and i praised cyanogen when that recovery image came out.
grandomegabosses said:
with cm recovery, it's not hard at all. actually, i've done it several times in one day. haha honestly, it's a hell of a lot easier than how i had to partition my card in the first place. i spent hours trying to figure it out, and i praised cyanogen when that recovery image came out.
Click to expand...
Click to collapse
dont suppose you could advise me on how i go about it could you please ?
you're going to want to backup the files already on your card
grandomegabosses said:
you're going to want to backup the files already on your card
Click to expand...
Click to collapse
i have done that
okay, i'm not sure if you need to format it, but you might want to, just for good measure.
boot into recovery and go to console. hit enter and type in parted /dev/block/mmcblk0 then hit enter again.
you'll get a whole buncha text telling you your in GNU parted. type in:
p then enter (just to make sure you can see your partitions and stuff)
you should only have 1 partition and it should be a fat32. enter
rm 1
that'll delete the partition. then enter
(these are the commands i put for my 2gb card. change the partition sizes to fit your card. 512mb is a good ext partition. if you're gonna do swap, 32mb is a safe starting)
mkpartfs primary fat32 0 1501
mkpartfs primary ext2 1501 1981
mkpartfs primary linux-swap 1981 2013
then enter p again to make sure you've got everything squared away. enter quit and it'll tell you that you might need to upgrade your filesystems.
enter upgrade_fs and wait until it gives you a # and reboot.
what size card are you using, anyway?
grandomegabosses said:
what size card are you using, anyway?
Click to expand...
Click to collapse
wow
thanks for that hope it works
its 8gig card
when you hit p in GNU parted, make sure you change the partition sizes for your 8gb card. i know... my card is puny! haha
also, do you have adb?
grandomegabosses said:
when you hit p in GNU parted, make sure you change the partition sizes for your 8gb card. i know... my card is puny! haha
also, do you have adb?
Click to expand...
Click to collapse
no i dont have adb ? whats that do ?
i just wondered. it does WAYYYY to much for me to explain right here. haha i just find it easier to type out the commands in the adb shell. but i'm not going to explain how to get adb going... it took me long enough to get it myself... haha
well thanks for the help, im gonna have a crack at this now
see you the other side
good luck
ok done that
when i says i may need to update... update what ? exactly
update your ext partition. that's what the upgrade_fs part was about. sorry
please excuse my sheer lack of knowledge...but how do i do that..i think im lost here
just type in upgrade_fs and hit enter and it'll do it automatically. wait for the # come up after that and type reboot then enter and it'll reboot
grandomegabosses i could kiss you put i wont !
your a star ! many many thanks for helping me out
Related
hello all
just got an android and im still testing it. so please excuse my noobishness
question: is it possible to make a simple tool that runs on windows that would prepare and partition the sdcard with the three portions (fat32,ext2 and swap) and proper file system. is there something technically preventing such app of ever getting written. i know that some image burning software on widows can be used burn a cd/dvd that is not supported by the windows file system
if not, is it possible to write an android application to do all that. if so, anybody willing to write it
that would greatly simplify the process of installing the swap file enabled cooked roms. the current process is a bit messy
that is a great idea. I can do ext/2 or 3 with acronis disk director but I don't know how to do both and am nervous setting that up throught the phone although there is a really good guide on how to do that the phone.
Taken from http://forum.xda-developers.com/showthread.php?t=533731
How to partition your SD card from console (This requires the cyanogen recovery 1.3.1)
Example for my 8GB card.
Reboot and enter recovery (home+power) then go to console. Enter the below pressing "enter" after each line.
parted /dev/block/mmcblk0
print (to verfiy we know what size card we are dealing with. Mine was 8166 read below if yours is different)
rm 1 (if you had more than 1 partition you would want to rm them as well)
mkpartfs primary fat32 0 7526
mkpartfs primary ext2 7526 8038
mkpartfs primary linux-swap 8038 8166
quit
upgrade_fs
recovery
if your card isn't 8166 when you type print then you will need to modify those numbers to match your card size. You basically work back to figure out the totals. To figure it out, start with your cards total size. For example 8166 total Subtract 128 for swap (8038) minus 512 for ext (7526) the rest will go to fat32. Each partition starts where the other left off.
Click to expand...
Click to collapse
I personally have never tried this or don't know if this will help you but it was worth a shot.
xsnipuhx said:
Taken from http://forum.xda-developers.com/showthread.php?t=533731
I personally have never tried this or don't know if this will help you but it was worth a shot.
Click to expand...
Click to collapse
This is a perfect procedure.
THE GRIZZ said:
hello all
just got an android and im still testing it. so please excuse my noobishness
question: is it possible to make a simple tool that runs on windows that would prepare and partition the sdcard with the three portions (fat32,ext2 and swap) and proper file system. is there something technically preventing such app of ever getting written. i know that some image burning software on widows can be used burn a cd/dvd that is not supported by the windows file system
if not, is it possible to write an android application to do all that. if so, anybody willing to write it
that would greatly simplify the process of installing the swap file enabled cooked roms. the current process is a bit messy
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=534043
Keep an eye on that tool. If you look at this to-do list, it looks like automatically partitioning your sdcard is next up. But the procedure above is simple, and it works now if you don't wanna wait.
xsnipuhx said:
Taken from http://forum.xda-developers.com/showthread.php?t=533731
I personally have never tried this or don't know if this will help you but it was worth a shot.
Click to expand...
Click to collapse
It's a good way but you should subtract 32 for linux-swap. 128 for linux-swap is WAY to big.
h.nocturna said:
http://forum.xda-developers.com/showthread.php?t=534043
Keep an eye on that tool. If you look at this to-do list, it looks like automatically partitioning your sdcard is next up. But the procedure above is simple, and it works now if you don't wanna wait.
Click to expand...
Click to collapse
thanks thats exactly what i was talking about. i already partioned it using one of the guides. a simpler method cant hurt though
It is a great idea, the problem is that none of the tools for partitioning on windows are free. Maybe it would be possible to make a GUI that feeds commands to parted on the phone using adb? I don't know, I don't see what's wrong with booting in to gparted, seems like less troube and it's has a GUI.
Eh, 3-4 commands in Terminal isn't gonna kill anyone, but it might intimidate the noobs here and prevent them from fully enjoying their phone cuz they stop as soon as they see a wall of text.
h.nocturna said:
Eh, 3-4 commands in Terminal isn't gonna kill anyone, but it might intimidate the noobs here and prevent them from fully enjoying their phone cuz they stop as soon as they see a wall of text.
Click to expand...
Click to collapse
You're completely right, if people never use it they will always be scared of the terminal =P
Bah, if everyone used linux they could just use gparted, another easy way.
I used the cmd line I quoted early to ready a 8gb sd card for apps2sd and I just left out the linux swap part and it worked MINT. But if your scared of the terminal, try using the apps2sd app on the market and that will get your sd card ready.
Well I'm on xROM with HardSPL, stop the flaming I know. My SD CARD doesn't work on xROM so I have to someone downgrade without using a SD Card. Anyway I can do it so I can pop my SD Card back in and reroot? Or somehow change back to Cyan's ROM?
how are you on xRom with the hard spl?
Hey you are up late, wow you have nothing but problems with your sdcard, might want to invest the $15 for a new one.
Can you mount your sd in recovery console by typing ums_enable
That's the thing I had HardSPL and put the xROM in my SDCard and ran it through bootloader. Now nothing works, only calling and messaging. No Wifi nothing. I need to get out if you can help.
gridlock32404 said:
Hey you are up late, wow you have nothing but problems with your sdcard, might want to invest the $15 for a new one.
Can you mount your sd in recovery console by typing ums_enable
Click to expand...
Click to collapse
I can try.
Strless01 said:
That's the thing I had HardSPL and put the xROM in my SDCard and ran it through bootloader. Now nothing works, only calling and messaging. No Wifi nothing. I need to get out if you can help.
Click to expand...
Click to collapse
wtf..... ummm boot into recovery with a cm rom on your sdcard. wipe your phone. flash the cm rom.
I was also wondering that one too david, I was pretty sure you needed the danger spl to run xrom, maybe he means the xrom theme
How do I get back to cyans ROM?
Did you make a nandroid backup at any time like I told you too
gridlock32404 said:
Did you make a nandroid backup at any time like I told you too
Click to expand...
Click to collapse
That would be something I failed at. ): But I'm sticking my card in my dads phone, formatting it then sticking it back in the G1 hope this works!
It's working fine on his phone but not on mine. FML.
His phone prob did not format to fat32, can you mount your card in recovery, try mounting it to your computer with the command I gave you
gridlock32404 said:
His phone prob did not format to fat32, can you mount your card in recovery, try mounting it to your computer with the command I gave you
Click to expand...
Click to collapse
I do, do that but it doesn't read it. It says format and I press it and then it says Unable to format.
It's working fine on my dads phone.
Strless01 said:
I do, do that but it doesn't read it. It says format and I press it and then it says Unable to format.
It's working fine on my dads phone.
Click to expand...
Click to collapse
try to partition it via the recovery console
Try it on your other computer, have you tried throwing against a way yet
Did you ever get a cd-r so you can make a live ubuntu cd yet
david1171 said:
try to partition it via the recovery console
Click to expand...
Click to collapse
How do I do that? I am in the console.
Oh yeah, now that you have cm-recovery 1.4, you can do that now
Hey david can you give this nice young man the commands
gridlock32404 said:
Oh yeah, now that you have cm-recovery 1.4, you can do that now
Hey david can you give this nice young man the commands
Click to expand...
Click to collapse
Is it going to erase all my contacts again?
Formating the card. No. The wipe you are going to need to do before you flash a new rom on your phone, yes and you will have to sign back into google again
gridlock32404 said:
Formating the card. No. The wipe you are going to need to do before you flash a new rom on your phone, yes and you will have to sign back into google again
Click to expand...
Click to collapse
Will I be able to sign in with WIFI? And I'm okay with the contacts, but whats the command to partition it?
To delete existing partitions and repartition via recovery console, here are the commands once you've entered console and then hit enter to get to the prompt:
Copied & pasted from another thread HERE...
parted /dev/block/mmcblk0
print (to verfiy we know what size card we are dealing with. Mine was 8166 read below if yours is different)
rm 1 (if you had more than 1 partition you would want to rm them as well)
mkpartfs primary fat32 0 7622
mkpartfs primary ext2 7622 8134
mkpartfs primary linux-swap 8134 8166
quit
upgrade_fs
recovery
If you just want one partition for fat32, just use the first mkpartfs command and use 0 through whatever the total size of your card is...
FINALLY got cyanogen rom working. i've almost pulled my hair out over buying this phone(att user so i had to unlock and learn root, etc.)
anyways, got .999 installed and saw the * Apps2SD is automatic! All you need is a second partition (ext).
can someone point me in the right direction on how to do the partition part? i have full version of paragon and know how to use it but just don't want to fubar anything up.
i apologize for the noob question but i just need to know what to set my 2gb(although i have a 4gb class 6 in the mail now) sd card to what size partitions so i can run the add2sd.
thanks guys and love the site.
There is a sticky post in this section. I found it in less than 2 seconds. without searching.
blackinches said:
FINALLY got cyanogen rom working. i've almost pulled my hair out over buying this phone(att user so i had to unlock and learn root, etc.)
anyways, got .999 installed and saw the * Apps2SD is automatic! All you need is a second partition (ext).
can someone point me in the right direction on how to do the partition part? i have full version of paragon and know how to use it but just don't want to fubar anything up.
i apologize for the noob question but i just need to know what to set my 2gb(although i have a 4gb class 6 in the mail now) sd card to what size partitions so i can run the add2sd.
thanks guys and love the site.
Click to expand...
Click to collapse
Example for 8GB card.
Reboot and enter recovery (home+power) then go to console. Enter the below pressing "enter" after each line.
Code:
parted /dev/block/mmcblk0
print (to verfiy we know what size card we are dealing with. Mine was 8166 read below if yours is different)
rm 1 (if you had more than 1 partition you would want to rm them as well)
mkpartfs primary fat32 0 7622
mkpartfs primary ext2 7622 8134
mkpartfs primary linux-swap 8134 8166
quit
upgrade_fs
recovery
NOTE: this will reformat your entire card, so i suggest you back up your files.
and btw tell me the size of your sd card and i will type up the code for you...
use this method to tell me your exact size
go into recovery via home+power
go to console
pres enter
type:
parted /dev/block/mmcblk0
print
i am pretty sure you can see what number represent your total card size.
Easier Way!!!
OK,so I also have Paragon Partition Manager 9.0 Special Edition.
1.Go into your Paragon Partition Manager Software
2.Click on Partition Manager at the first screen
3.Click on your SD Card drive (ie. F:/)
4.Click on create partition in the left hand side of your screen.
5.It will ask you how big you would like your partition to be,then what type of partition. Paragon only supports EXT2 and EXT3 if your looking for an EXT partition. Paragon also only supports Linux-Swap2 and not Linux-Swap3.
If you need any more help man let me know.
Follow me on Twitter: http://twitter.com/andy_lowe02
andy_lowe02 said:
OK,so I also have Paragon Partition Manager 9.0 Special Edition.
1.Go into your Paragon Partition Manager Software
2.Click on Partition Manager at the first screen
3.Click on your SD Card drive (ie. F:/)
4.Click on create partition in the left hand side of your screen.
5.It will ask you how big you would like your partition to be,then what type of partition. Paragon only supports EXT2 and EXT3 if your looking for an EXT partition. Paragon also only supports Linux-Swap2 and not Linux-Swap3.
If you need any more help man let me know.
Follow me on Twitter: http://twitter.com/andy_lowe02
Click to expand...
Click to collapse
well i wouldnt say ur way is easier... it does require using a computer, mine uses the phone.. and mine is simply typing what u see.
Also im pretty sure you need to use linux-swap and not linux-swap2
(i think 2 works but im not sure that its recommendable sicne the rom cookers themeselves use 1)
I would also use the method brian posted. its much more effective
thanks guys, i got adds2sd working and everything. on a 1gb right now until my new 4gb class 6 comes in this week.
i haven't done the swap things yet as i'm not sure of them just yet. i've learned quite a bit over the last week without trying to bug too many people on the forum. your replies are MUCH appreciated.
what is the different between ext 2/3 and linux-swap? i'm running my current 1gb 514mb fat32 and 445mb ext3.
ext3 has journaling which reduces corruption a lot. linux-swap is used as virtual memory.
thanks for the reply so in turn the swap will make the phone run faster right?
also, since no one answered my question in another thread:
although i'm running .999 when i press the camera button it open a box with a 'To:' entry and 3 button 'open', 'call', and 'send'.
i've looked in the settings to see if i can change what the camera button does(want it to open the camera like before obviously) without any luck..
any idea?
Click to expand...
Click to collapse
any ideas?
thanks again
blackinches said:
thanks for the reply so in turn the swap will make the phone run faster right?
also, since no one answered my question in another thread:
Click to expand...
Click to collapse
In theory swap should make it faster as it has more memory to play with.
For your other question, a file on the ROM containing the keymaps has been changed. The only way to change what the camera button does is pull it, edit it, and push it back.
AdrianK said:
In theory swap should make it faster as it has more memory to play with.
For your other question, a file on the ROM containing the keymaps has been changed. The only way to change what the camera button does is pull it, edit it, and push it back.
Click to expand...
Click to collapse
oh boy, i tried to avoid the adb stuff as i had a few problems with it. wonder how it got 'changed'.
i'll give it a try sometime.
Hello.. as the title states im having issues.
ok, so i recently rooted my g1when i saw Gnav was live (w00t) and all was well until i decided to partition my pqi class6 4gb partitioned as listed below.
ok heres the kicker.. every thing is fine until i start installing apps then it will just lock up then when i try to restart i get a black screen after the cm loading screen and thats it.. only way to get it back to life is to delete then repartition the card...... i reflashed, repartitioned and factory reset about 10 times and finally gave up and wiped card back to full fat32 and no swap or ext3 then reflashed cm 4.2.5 and have been running flawless for a week now so i have narrowed it down to my sdcard... any ideas on WTF could be going on here?? are pqi cards no good maybe?? it was real cheap i caught a deal on it about a year ago.. something like 2x4gb for 15 bucks shipped. I have never had any file loss when using it just for storage or anything.
heres how i had the partitions layed out
0 3459
3459 3971
3971 4003
i also tried ext4 aaaand out of desperation cm 4.2.4 with no luck
any insight greatly appreciated, I didnt know if i should post this here,in development or accessories but its a Q and im lookin for a A
Thanx
-Bop
Well I had the same issue with my phone, but I switched over to Amon-RA recovery and it does SdCard partition for you, You just have to enter the number's you want and it does the rest in recovery mode. This is how to flash it on this page. http://forum.xda-developers.com/showthread.php?t=566669.
errrm i dont think the recovery is the issue, i really like cm 1.4 for the fact that it has a console
thanx.
Next
Amon_RA has a console too....
if you dont want to use that, then format it through parted with 1.4
Amon_RA's does the same thing but its much easier (he basically added automated scripts to the 1.4 recovery, since it is actually based off 1.4)
Thanx.....but that's not my issue, please thouroghly read my opening post.
Thanx again
Also I should probably add one note here....it don't lock up as soon as I install a app.... I can get 3 to 5 apps in be4 what's explained in my OP happens.
BopChie said:
Thanx.....but that's not my issue, please thouroghly read my opening post.
Thanx again
Also I should probably add one note here....it don't lock up as soon as I install a app.... I can get 3 to 5 apps in be4 what's explained in my OP happens.
Click to expand...
Click to collapse
Well get us a logcat of when that crash happens. It seems like bad partitioning but get us a logcat and we can narrow down the issue
B-man007 said:
Well get us a logcat of when that crash happens. It seems like bad partitioning but get us a logcat and we can narrow down the issue
Click to expand...
Click to collapse
ok, i dont know how to do so and is this something i can fetch after the os is crashed via recovery console and dump to sd??
and as i said i am a root newb here.. so i have to ask... if i do a nandroid backup and save the backup to my pc be4 i go through and recreate my issue... will i beable to restore back to how i am now after i wipe and format back to full fat32 (if needed)
also.. take a look below, am i not doing something right here???
i did all the partitioning in parted as below
after removing all partitions i have a 4003MB chunk
mkpartfs primary fat32 0 3459
mkpartfs primary ext2 3459 3971
mkpartfs primary linux-swap 3971 4003 <---maybe i should try 4000 and not goto the end of the sd??
then after i'm out of parted
upgrade_fs to get ext3
tahnx again
BopChie said:
ok, i dont know how to do so and is this something i can fetch after the os is crashed via recovery console and dump to sd??
and as i said i am a root newb here.. so i have to ask... if i do a nandroid backup and save the backup to my pc be4 i go through and recreate my issue... will i beable to restore back to how i am now after i wipe and format back to full fat32 (if needed)
also.. take a look below, am i not doing something right here???
i did all the partitioning in parted as below
after removing all partitions i have a 4003MB chunk
mkpartfs primary fat32 0 3459
mkpartfs primary ext2 3459 3971
mkpartfs primary linux-swap 3971 4003 <---maybe i should try 4000 and not goto the end of the sd??
then after i'm out of parted
upgrade_fs to get ext3
tahnx again
Click to expand...
Click to collapse
that seems right..
if you have ADB setup, type in
adb logcat
just before installing apps. When it crashes, it should give error messages which we will be able to help you with. Post it here in code tags or post it on pastebin.com
BopChie said:
and as i said i am a root newb here.. so i have to ask... if i do a nandroid backup and save the backup to my pc be4 i go through and recreate my issue... will i beable to restore back to how i am now after i wipe and format back to full fat32 (if needed)
Click to expand...
Click to collapse
..........
B-man007 said:
that seems right..
if you have ADB setup, type in
adb logcat
just before installing apps. When it crashes, it should give error messages which we will be able to help you with. Post it here in code tags or post it on pastebin.com
Click to expand...
Click to collapse
currently i dont but i can get it setup again and give a try.. see my nandroid Q please
BopChie said:
..........
currently i dont but i can get it setup again and give a try.. see my nandroid Q please
Click to expand...
Click to collapse
Yes to the nandroid but your EXT will not be backed up. make sure you grab the right nandroid folder
if you want ext backup, you will need a BART or SwitchROM backup with the EXT backup
B-man007 said:
Yes to the nandroid but your EXT will not be backed up. make sure you grab the right nandroid folder
if you want ext backup, you will need a BART or SwitchROM backup with the EXT backup
Click to expand...
Click to collapse
ok think i got it solved here... using logcat on a boot after partitioning the card i could see it was hitting a infinite loop and had todo with some prop's i had swapped out for Gnav.. but since that is official on 1.6+ now i was able to reflash cm and sofar so good, installed 10 apps with apps2sd live and notta prob
Thanx a ton
B-man007 said:
Yes to the nandroid but your EXT will not be backed up. make sure you grab the right nandroid folder
if you want ext backup, you will need a BART or SwitchROM backup with the EXT backup
Click to expand...
Click to collapse
ok think i got it solved here... using logcat on a boot after partitioning the card i could see it was hitting a infinite loop and had todo with some prop's i had swapped out for Gnav.. but since that is official on 1.6+ now i was able to reflash cm and sofar so good, installed 10 apps with apps2sd live and notta prob
Thanx a ton
haha ok well its good to know you got it working
yeah so far so good.. 1last q...i have read mixed angles on enabling swap on sd.. i saw some1 say if its there cm4.2.5 will use it.. but i have saw ppl say it needs to be enabled.
I have never saw my mem get lower than 20MB should i even bother with swap?
its not enabled by default, you have to do it yourself. You shouldnt really need it on a cyan ROM.
i searched for this and came up with some links, but none to verify my exact question which is, do i need a certain ROM, or recovery image, i have the RA-dream-V1.5.2. to apply apps2sd, i am currently running the latest cyanogen ROM, do i need a sd card reader or can it be done just by using terminal emulator, and i just bought a 4gb class 6 from new egg, and i was wondering what do you guys recommend for my ext2 partition space to be? so if you guys have any info on this it would be great if you threw it my way thank you!
Most rom have it enabled automaticlly when it sees an extX partition. The recovery is not required, but helpful if you don't have a linux system or other software to create the partitions on your computer. No card reader is required unless you want to format it that way. The only terminal commands you would need would be in the recovery console for you. The space is up to you and your needs and does not increase or decrease performance either way.
See the link below and it will help you doing it the manual way and with Amon_RA's recovery.
http://wiki.cyanogenmod.com/index.php/Apps2SD
thank you, you were a bunch of help, i shall try this when i get home tonight
No problem, let me know how it goes.
it asked me for swap-size and also ext2-size, im not to sure what numbers i need hmm?
If you plan on using a hero rom put in something for swap, if not put zero. The put in the amount of ext you want for apps. (normally between 256-512)
To upgrade the file system from ext2 -> ext3 use the command upgrade_fs in the recovery console.
Look at the link I gave you and scroll down to the Amon_RA section if you need more help.
it said upgrade_fs not found (nvm)
i got ext2 to ext3 thank you for all your help sorry for being a pain dude...
so to make sure i did it right, how much available phone space should i have?
It varies based on the cache you have for the apps, but I have 68mb but I have been running the same rom for a while. It should be around 80mb if you haven't done anything to build the cache, but I have the 1.33.2005 SPL which increases the internal memory size.
I get the same error "upgrade_fs not found" when I want to upgrade to ext 3 from console. From Amon_Ra's recovery I get an error too when I want to upgrade to ext 3. The other SD card I have worked perfectly with exact the same steps. What is wrong? Thanks
if you amon's isnt there an option that says upgrade ext2 to ext3? i guess thats the same?
sakumaxp said:
i guess thats the same?
Click to expand...
Click to collapse
As the upgrade_fs script, yes.
evilkorn said:
As the upgrade_fs script, yes.
Click to expand...
Click to collapse
yeah thats what i did because it did the not found error, so i was like meh, sounds like the same haha
sakumaxp said:
if you amon's isnt there an option that says upgrade ext2 to ext3? i guess thats the same?
Click to expand...
Click to collapse
I get an error when I press "upgrade ext2 to ext3" on my 2 GB card, the 1 GB card is done already.
sorry dude im a noob at this thing myself i guess one of the senior guys gotta answer this for you =\
Very strange, after many attempts suddenly I made the partitions, I don't know why but it worked
well thats good to hear =]