maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   MeeGo / Harmattan (https://talk.maemo.org/forumdisplay.php?f=45)
-   -   Can anyone plz tell me how to boot meego 1.1 on n900 (https://talk.maemo.org/showthread.php?t=68758)

shardul 2011-01-22 08:15

Can anyone plz tell me how to boot meego 1.1 on n900
 
I have done every thing to boot meego 1.1 on my n900 by the instruction on: http://meego.com/devices/handset/ins...ego-nokia-n900

But, My n900 don't boot to meego 1.1 can anyone plz guide me

kingoddball 2011-01-22 08:50

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Press power button!

shardul 2011-01-22 08:53

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Do you think i am fool i know i have to press power button but, when i press the power button it say 3 partition not valid, plz guide me, and it automatically boot to maemo 5

shardul 2011-01-22 10:17

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Plz tell me the instructions

Wikiwide 2011-01-22 10:25

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Quick reply....
So, you have Maemo 5 PR1.3 (20.2010.36-2), you have installed uboot-pr13, you have put MeeGo files on MicroSD card, and when you reboot the N900, uboot tells that it doesn't like the partitions and boots into Maemo 5, and Maemo 5 works fine.

What are partitions on MicroSD card then?

Creamy Goodness 2011-01-23 05:03

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
how hard is it to post meego threads in the meego section?

shardul 2011-01-23 06:12

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
I really don't know what partition are on my Micro sd card

kingoddball 2011-01-23 06:30

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
You need first partition to be FAT(VFAT/FAT32) and second partition to be EXT3.
If you don't know what the partition's are, then you have not followed the instructions correctly.

shardul 2011-01-23 07:00

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Can you plz tell how to make that patition

Wikiwide 2011-01-23 08:33

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Quote:

Originally Posted by shardul (Post 926525)
Can you plz tell how to make that patition

Output of either 'mount' or 'df' command should tell you what partitions you have on MicroSD card.

To make that partition, you need to unmount MicroSD card and then run as root some command like:

dd bs=4096 if=meego-handset-armv7l-n900-*-mmcblk0p.raw of=/dev/sdX
or

shardul 2011-01-23 11:53

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
When i type dd bs=4096 if=meego-handset-armv7|-n900-1.1-mmcblk0p.raw of=/dev/sdX

Its says meego-handset-armv7| no directory find

Plz help

shardul 2011-01-23 14:22

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
What should i do

ashyu 2011-01-23 21:28

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Where are you typing those commands?

The file name after "if=" in the dd command is the input file that will be written to the output file "of=".

For example, if I have the file meego-handset-armv7l-n900-1.1-mmcblk0p.raw that I want to write to /dev/sda then I would do:

dd bs=4096 if=meego-handset-armv7l-n900-1.1-mmcblk0p.raw of=/dev/sda

BECAREFUL to check that what you put for the "of=" is the SD card. If you are doing this on your computer, you can destroy your hard disk partition if you pick the wrong block device.

You would likely type this command in a terminal on a Linux PC with your SD card inserted to a card reader that appears as block device /dev/sdX where X is a letter.

The reason why you are getting the file not found in your particular example is that you have a pipe character "|" in place of "l" (a lowercase "L"). The pipe character is used for "piping" data between programs on the commandline, so it stops parsing the rest of the commandline at that point.

Medic7051 2011-01-23 21:35

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Quote:

Originally Posted by ashyu (Post 926961)
Where are you typing those commands?

The file name after "if=" in the dd command is the input file that will be written to the output file "of=".

For example, if I have the file meego-handset-armv7l-n900-1.1-mmcblk0p.raw that I want to write to /dev/sda then I would do:

dd bs=4096 if=meego-handset-armv7l-n900-1.1-mmcblk0p.raw of=/dev/sda

BECAREFUL to check that what you put for the "of=" is the SD card. If you are doing this on your computer, you can destroy your hard disk partition if you pick the wrong block device.

You would likely type this command in a terminal on a Linux PC with your SD card inserted to a card reader that appears as block device /dev/sdX where X is a letter.

The reason why you are getting the file not found in your particular example is that you have a pipe character "|" in place of "l" (a lowercase "L"). The pipe character is used for "piping" data between programs on the commandline, so it stops parsing the rest of the commandline at that point.

Where was your post 3 weeks ago, before I did exactly that. to the OP, if you are unsure what you are doing, I advise you stop trying and stick with Maemo. I jacked up my computer's file system and had to re-image the harddrive. If you do proceed, be extra careful what you are doing.

ashyu 2011-01-23 21:50

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Quote:

Originally Posted by Medic7051 (Post 926962)
Where was your post 3 weeks ago, before I did exactly that. to the OP, if you are unsure what you are doing, I advise you stop trying and stick with Maemo. I jacked up my computer's file system and had to re-image the harddrive. If you do proceed, be extra careful what you are doing.

Aww, I had only sat down to try out Meego for myself today, and that was when I came across this thread. Hope that you didn't lose too much data! dd is one of those scary commands that doesn't ask you for confirmation or doesn't give you any indication of what it's doing until it's too late...

Anytime that you're writing anything directly to a block device, it's always good to triple check that you're pointed at the right target.

Regarding trying Meego, my opinion now is that unless you're doing development for it, there's really nothing of interest right now. Not that I want to discourage the OP from trying, but, it may not be worth your effort at this point in time. (Even Nitdroid seems more usable).

kingoddball 2011-01-24 05:00

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Just run Meego CHROOT. No mess. No format. No SD. Easy. No hassle. This seem's like it's more work than it's worth.

mece 2011-01-24 05:46

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
http://wiki.meego.com/ARM/N900/Install/Dual_Boot

frostbyte 2011-01-24 06:11

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Quote:

Originally Posted by shardul (Post 925912)
Do you think i am fool i know i have to press power button but, when i press the power button it say 3 partition not valid, plz guide me, and it automatically boot to maemo 5

Quote:

I really don't know what partition are on my Micro sd card
let meego mature more before you dabble with it. stick to maemo for now.

shardul 2011-01-25 03:38

Re: Can anyone plz tell me how to boot meego 1.1 on n900
 
Hey i have heard that pr1.4 is coming and will also give meego 1.2 a dual boot option


All times are GMT. The time now is 02:00.

vBulletin® Version 3.8.8