Reply
Thread Tools
Posts: 478 | Thanked: 165 times | Joined on Apr 2010 @ Manchester
#91
wow! Excellent progress! Hope you can get it booting without R&D mode soon. Will install it as soon as that is done. Well, I have to wait for my new SD card and internet access to arrive so you got a couple of weeks
 
Posts: 490 | Thanked: 191 times | Joined on May 2010
#92
Originally Posted by Honza. View Post
Thank you. Now I have done all steps correctly, but when I choose Ubuntu in bootmenu, it only shows "Booting from ubuntu..." and nothing happend. Where I did mistake?
I wasn't successful too btw. I am trying to quadro-boot and so far the only one I can't boot into is ubuntu. Mine hangs on the line "Switching over to sbin/init" I thought it's the problem with my configuration. I Did anyone successfully installed it on their device ?

Last edited by aligatro; 2010-07-17 at 21:09.
 
MohammadAG's Avatar
Posts: 2,473 | Thanked: 12,265 times | Joined on Oct 2009 @ Jerusalem, PS/IL
#93
Hmm weird, OptX said the same, I thought he was doing it wrong
I'll upload a new image soon, with all fixes in it.
 

The Following 7 Users Say Thank You to MohammadAG For This Useful Post:
Posts: 2 | Thanked: 0 times | Joined on Jun 2010
#94
Originally Posted by aligatro View Post
I wasn't successful too btw. I am trying to quadro-boot and so far the only one I can't boot into is ubuntu. Mine hangs on the line "Switching over to sbin/init" I thought it's the problem with my configuration. I Did anyone successfully installed it on their device ?
Just confirming the same problem, hanging on sbin/init, the only difference is no other partitions on my card and using multiboot instead of dualboot. Im glad it isn't just me, I'll just patiently wait

Thanks for all your hard work!!!!
 
MaddogG's Avatar
Posts: 234 | Thanked: 175 times | Joined on Jun 2010 @ Genova (Italy)
#95
Originally Posted by Honza. View Post
Thank you. Now I have done all steps correctly, but when I choose Ubuntu in bootmenu, it only shows "Booting from ubuntu..." and nothing happend. Where I did mistake?
Same problem here...anyway, good work!
 
Posts: 230 | Thanked: 39 times | Joined on Jun 2010
#96
Originally Posted by MohammadAG View Post
http://mohammadag.xceleo.org/public/...rootfs.tar.bz2
MD5Sum: a76ada218fac7d014115f38d7dfb14b3

(First of all, thanks to xnt14 for allowing me to host the file and giving me a subdomain - I've moved my files to http://mohammadag.xceleo.org/public/ so you can find everything from me there, again, thanks)

Mouse working! See this Note: as I said above, the mouse pointer is broken, this does NOT seem to be a calibration but a kernel module one, or a broken X/xorg configuration file, the pointer works fine in Fedora 12 and Mer, so I'm assuming this is a cannonical modified X problem, need assistance on this as Ubuntu is be very unusable with a broken pointer.
How unusable is unusable? The pointer is flipped, so up is down, the top part of the screen moves the pointer to the bottom side, and the far ends of the screen cannot be tapped without pressure on the bottom side of the screen, again, I need help from someone who knows C to fix this.

Quick instructions, I'm not really into sfdisk so the instructions are based on gparted, if anyone feels the instructions could be better then please feel free to post what you want

1. Connect the N900 to a PC running linux (Live CDs/Virtual machines will suffice).
2. Use gparted to partition the N900's MicroSD card, the image is 2.3GBs uncompressed, so you'll need at least 2.5GBs to run Ubuntu (3GBs if you want extra space for /home or apps).
3. Unpack the tar.bz2 into the root of the partition, an easy way to do this would be to use file-roller, the defualt archive manager in Ubuntu.
4. Disconnect the N900 from your PC.
5. Open terminal, type ls /dev/mmcblk1* to see the partitions on your MicroSD.
Assuming your partition is /dev/mmcblk1p2..
Code:
mkdir -p /mnt/ubuntu && mount /dev/mmcblk1p2 /mnt/ubuntu
Code:
cp -r /lib/modules/* /mnt/ubuntu/lib/modules/
cp /lib/firmware/* /mnt/ubuntu/lib/firmware/
chroot /mnt/ubuntu /bin/bash
useradd -m <replace with your username here> (e.g useradd -m mohammad)
# fill in details as you wish.
visudo
# Edit the file and add your username to sudoers using visudo
# Example (replace my username with yours)
# # User privilege specification
# root	ALL=(ALL) ALL
# mohammad    ALL=(ALL) ALL
Code:
cp /usr/share/applications/gnome-terminal.desktop /home/mohammad/Desktop/
Code:
exit
6. Install bootmenu-n900 and add a bootmenu entry in /etc/bootmenu.d
Code:
vi /etc/bootmenu.d/ubuntu.ext.item
# Press I to enter input mode.
# Replace partition numbers with the ones on your device.
Code:
ITEM_NAME="Ubuntu 9.10 Karmic (external SD, partition 2)"
ITEM_ID="ubuntu"
ITEM_DEVICE="${EXT_CARD}p2"
ITEM_MODULES="mbcache jbd ext3"
ITEM_FSTYPE="ext3"
ITEM_FSOPTIONS="noatime,rw"
Shutdown the N900, hold the U key to go into flashing mode then
Code:
flasher-3.5 --enable-rd-mode --set-rd-flags=no-omap-wd,no-lifeguard-reset,no-ext-wd
The need for R&D mode will be fixed soon, I didn't save how I did last time so I'll need to figure it out again.

Reboot, and pick Ubuntu in the bootmenu and gnome desktop should start.

Edit: oh and to get BT working (thanks giannoug)
Code:
echo "00:11:22:33:44:55" > /sys/devices/platform/hci_h4p/bdaddr; modprobe -r hci_h4p; modprobe hci_h4p
got this problem when do the first step.

cp -r /lib/modules/* /mnt/ubuntu/lib/modules/
cp: cannot create symlink '/mnt/ubuntu/lib/modules/current': Operation not permitted


i tried both in root and gainroot mode..any help?
 
Posts: 490 | Thanked: 191 times | Joined on May 2010
#97
Originally Posted by ryanl33x1511 View Post
got this problem when do the first step.

cp -r /lib/modules/* /mnt/ubuntu/lib/modules/
cp: cannot create symlink '/mnt/ubuntu/lib/modules/current': Operation not permitted


i tried both in root and gainroot mode..any help?
The system is unbootable right now, so you might wanna wait untill he reuploads the archive. And I think you don't even need to create symlink. Just copy the folder that matches your kernel.

Last edited by aligatro; 2010-07-20 at 15:26. Reason: fixed spelling
 
Posts: 230 | Thanked: 39 times | Joined on Jun 2010
#98
thanks for a head up, took me 4hours to exact to my microSD
 
Posts: 490 | Thanked: 191 times | Joined on May 2010
#99
Originally Posted by ryanl33x1511 View Post
thanks for a head up, took me 4hours to exact to my microSD
4 hours ????? O_O I hope you weren't extracting it on the phone.
 
Posts: 230 | Thanked: 39 times | Joined on Jun 2010
#100
i extracted it on desktop then copied to my microsd via my adapter, wasnt that the fastest way to do it ?
 
Reply

Tags
bada rox


 
Forum Jump


All times are GMT. The time now is 15:47.