![]() |
#1 |
Lurker in the Dark
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 125
Karma: 11760
Join Date: Apr 2011
Location: Bristol, UK
Device: Asus Transformer Prime, Sony PRS-T1, HTC Sensation
|
Information
I've just seen the "Mini Teardown" where it said about the snap on back.
So I thought, as I can't see any screw holes, I'll see if the Glo has a snap on back. and it has, so I took it apart and found the internal 2Gb MicroSD card, which is partitioned as below: Code:
partition 1 : ext4 - 268MB - named "rootfs" partition 2 : ext4 - 268MB - named "recoveryfs" partition 3 : FAT - 1.4GB - named "KOBOeReader" Code:
Number Start End Size Type File system Flags 1 9961kB 278MB 268MB primary ext4 2 278MB 547MB 268MB primary ext4 3 548MB 1965MB 1417MB primary fat32 lba rootfs has a ".macaddress" file which looks like it contains the MAC address (surprise, surprise!) I've made copies so that I can study them a bit. any more info and I'll post it here ![]() Last edited by mrspaceman; 10-10-2012 at 08:01 AM. Reason: added more info |
![]() |
![]() |
![]() |
#2 |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11
Karma: 34114
Join Date: Mar 2011
Device: PRS-350
|
I'd recommend making an image of the micro SD (On Windows I use win32diskimager.exe) as a backup for peace of mind
![]() |
![]() |
![]() |
Advert | |
|
![]() |
#3 |
Lurker in the Dark
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 125
Karma: 11760
Join Date: Apr 2011
Location: Bristol, UK
Device: Asus Transformer Prime, Sony PRS-T1, HTC Sensation
|
What I intend to do is:
1. grab image of factory microSD card (done) 2. put image onto 8Gb microSD card 3. see if kobo boots ? that way I don't touch the factory microSD card and I can always revert back to it. I'll let you know what the outcome is. |
![]() |
![]() |
![]() |
#4 |
Lurker in the Dark
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 125
Karma: 11760
Join Date: Apr 2011
Location: Bristol, UK
Device: Asus Transformer Prime, Sony PRS-T1, HTC Sensation
|
okay, tried, but it didn't boot.
put the factory microSD back in and it's back (phew!) I just created two ext4 partitions and a FAT partition. I didn't make the two ext4 partitions the same size as on the original. so next is to make the two ext4 partitions the exact same size as the factory card. |
![]() |
![]() |
![]() |
#5 |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11
Karma: 34114
Join Date: Mar 2011
Device: PRS-350
|
Using win32diskimager you can make an image of the entire card, including the partition table. You can also write an image to a card. So if you've got a 2GB or greater microSD you can make an exact duplicate of the factory microSD. (Already done this, no problems with the kobo mini)
|
![]() |
![]() |
Advert | |
|
![]() |
#6 |
Lurker in the Dark
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 125
Karma: 11760
Join Date: Apr 2011
Location: Bristol, UK
Device: Asus Transformer Prime, Sony PRS-T1, HTC Sensation
|
My idea was to have larger partitions so that I could add my own programs with now fear of running out of space, but I'll just have to experiment now.
At least I now know that I am safe to 'play' as long as I don't touch the factory card. (oh, and I don't have access to a windows box at work, only linux, so I'll try win32diskimager at the weekend) andy. |
![]() |
![]() |
![]() |
#7 | |
Dark Lord of the Sith
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 60
Karma: 95334
Join Date: Jul 2010
Location: A Galaxy Far Far Away
Device: Sony PRS-505 and PRS-300, Kobo Wifi, Touch and Mini, Kindle 4NT
|
Quote:
|
|
![]() |
![]() |
![]() |
#8 |
Junior Member
![]() Posts: 4
Karma: 44
Join Date: Oct 2012
Device: Kobo Glo
|
On my machine, the mounted sd card was sdb
linux dd worked to copy the 2GB Sandisk SD to my 8GB kingston. dd if=/dev/sdb of=/tmp/kobo.raw.img sync eject /dev/sdb <Remove and mount new card> dd if=/tmp/kobo.raw.img of=/dev/sdb sync eject /dev/sdb <Remove drive and replace> Only work on your second card! Back up the contents of the 3rd partition (the fat partition) mount -o shortname=mixed /dev/sdb3 /mnt/sdb3 cd /mnt/sdb1 tar -cvf /tmp/sandisk-8.tar . cd - umount /mnt/sdb3 Find the drive's name: dosfslabel /dev/sdb3 "KOBOeReader" Then I used fdisk to delete the 3rd partition, and recreate it, larger: (be careful, fdisk wanted to use the area at the front of the partitions) fdisk /dev/sdb p ... /dev/sdb3 1068034 3862527 1397247 b W95 FAT32 d 3 n 3 1068034 <enter> t 3 c w sync mkfs.vfat -v -F 32 -f 2 -n "KOBOeReader" /dev/sdb3 sync mount -o shortname=mixed /dev/sdb3 /mnt/sdb3 cd /mnt/sdb3 tar -xf /tmp/sandisk-8.tar sync cd - umount /mnt/sdb3 eject /dev/sdb Remove and install SD in Kobo Boot Kobo Go to settings/device information: "Onboard storage 397MB of 7056MB" |
![]() |
![]() |
![]() |
#9 | |
Evangelist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 410
Karma: 216544
Join Date: Feb 2012
Device: Kobo Clara HD, Moaan Inkpalm 5.
|
Quote:
I did this: linux dd worked to copy the 2GB Sandisk SD to my 8GB kingston. dd if=/dev/sdb of=/tmp/kobo.raw.img sync eject /dev/sdb <Remove and mount new card> dd if=/tmp/kobo.raw.img of=/dev/sdb sync eject /dev/sdb <Remove drive and reinsert At this point I took the lazy route: I used gparted to 'grow' the 3rd partition, it took just a few seconds and worked perfectly. I used a credit card to open the back of the kobo, starting at one corner I ran it all the way around under the edge, there were a series of clicks as the cover came free. I used a sandisk 8GB, class 4 card, cost about £3 new. Now I can carry all my documents on the kobo, without having to use an additional sdcard, and still have enough free space to give me a warm, satisfied feeling :-) |
|
![]() |
![]() |
![]() |
#10 |
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 31
Karma: 220602
Join Date: Oct 2010
Location: Toronto, Canada
Device: Kobo Glo
|
I did this about a week ago going up to a 32 gig card. I plan to post a guide on here by Sunday at latest with pictures and links to free windows gui apps to do it all
![]() All is well so far with my unit ![]() |
![]() |
![]() |
![]() |
#11 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 24,908
Karma: 47303748
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
|
But, what happens tomorrow or next week or next month when you do need to do a factory reset? Will this handle the bigger card? I think it will be OK, but I am curious if anyone has done it.
|
![]() |
![]() |
![]() |
#12 | |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,847
Karma: 3212428
Join Date: Jun 2011
Device: iphone stanza, kobo touch,ASUS TF300,KOBO GLO, Kobo Aura HD, Kobo Mini
|
Quote:
Jack |
|
![]() |
![]() |
![]() |
#13 | ||
Enthusiast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 31
Karma: 220602
Join Date: Oct 2010
Location: Toronto, Canada
Device: Kobo Glo
|
Quote:
As it is it adds a bit of noticeable lag, so I wouldn't recommend more. Specifically both boot time and going into sleep mode. Coming out of sleep mode is normal speed oddly. I noticed the boot time is different specifically because it used to take a certain amount of blocks scrolling before hanging at the exact same one and loading to the main screen. Now it scrolls for a few seconds more. But very tolerable. As for the actual maximum, I'm not certain. Quote:
I think it does work, because I've seen other people post that they do a factory reset to resize the partition to 32gigs, instead of doing it manually. So they skip that step and let the factory restore handle it. But resizing the partition manually allows for retaining your data/stats. Either way, you'll have the 2gig card to pop back in. Last edited by Gergith; 03-22-2013 at 01:11 AM. |
||
![]() |
![]() |
![]() |
#14 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 24,908
Karma: 47303748
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
|
Quote:
Popping the 2GB card in doesn't solve this at all. |
|
![]() |
![]() |
![]() |
#15 |
Groupie
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 199
Karma: 1071756
Join Date: Sep 2012
Location: Nova Scotia
Device: Kobo Aura, Nexus 5x
|
Not odd at all - typical linux behaviour. When you start from power-off, it's booting and needs to run fsck (file system check) on the partitions - the bigger they are, the longer it takes, though normally it doesn't have to do a full check.
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
To much information, yet not enough. | Fisherman74 | General Discussions | 18 | 09-08-2012 03:11 PM |
Thank you already for information | Rosemary | Introduce Yourself | 10 | 01-15-2010 05:46 PM |
Classic Need New Information | geneaber | Barnes & Noble NOOK | 7 | 11-03-2009 04:11 PM |
more information about the new iliad? | joblack | News | 2 | 04-03-2007 12:31 PM |