The Following User Says Thank You to Siggen For This Useful Post: | ||
|
2010-04-27
, 00:11
|
Posts: 103 |
Thanked: 50 times |
Joined on Jan 2010
@ Chicago
|
#2
|
|
2010-04-27
, 00:19
|
|
Posts: 204 |
Thanked: 75 times |
Joined on Jan 2010
@ Norway
|
#3
|
I would love to have the ability to dual-boot into Ubuntu, but I don't see this happening. I would be more interested in the option to dual-boot into Android - which would open up the option to run Android's apps.
Was there anything in particular that you wanted to do in Ubuntu that Maemo does not allow?
The Following 2 Users Say Thank You to Siggen For This Useful Post: | ||
|
2010-04-27
, 00:22
|
Posts: 103 |
Thanked: 50 times |
Joined on Jan 2010
@ Chicago
|
#4
|
ubuntu already runs natively on the n900 http://www.youtube.com/watch?v=vMwlchuqsXo
And I beleive the Gnome based Ubuntu Netbook Edition desktop would work better, the user interface is optimized for small screens and few cpu cycles http://www.youtube.com/watch?v=22iFG5D3kXU
Maemo can do a lot of things if you compile a bunch of already released binaries, but It could do a lot more if you installed Ubuntu on it (assuming that all the drivers will work soon, you could use it as a guitar tabulatur notebook, and run loads more apps without compiling them)
It would be awesome to see phone and sms integrated with the envelope icon on the ubuntu netbook edition
|
2010-04-27
, 00:25
|
|
Posts: 549 |
Thanked: 502 times |
Joined on Feb 2008
@ Bowling Green Ohio (united states)
|
#5
|
The Following 3 Users Say Thank You to b-man For This Useful Post: | ||
|
2010-04-27
, 00:28
|
|
Posts: 204 |
Thanked: 75 times |
Joined on Jan 2010
@ Norway
|
#6
|
I am working on getting Ubuntu 10.04 booting on my N900 and so far i am able to boot into a console login, but my system shuts down due to the twl4030 hardware watchdog (I'm using the same watchdog package that Jebba's fedora12 port is using, however i seem to be having some issues with /etc/init.d/n900_wd setup - /dev/twl4030_wdt doesn't seem to exist early in the boot process when it should, thus /usr/sbin/wd_keepalive can't ping twl4030, leaving twl4030 to assume that the system needs to shut down). I'll hopefully be able to resolve this problem soon, so we can 'get the ball rolling' on Ubuntu-N9X0.
|
2010-04-27
, 00:51
|
|
Posts: 549 |
Thanked: 502 times |
Joined on Feb 2008
@ Bowling Green Ohio (united states)
|
#7
|
Will you be interested in trying to get the Netbook Edition desktop running? I just have thought about that for two weeks now, and I cant get it out of my head how awesome it would be if in fact it worked well, seeing that the LXDE which has a similar layout to Gnome runs well, I dont see how it would not function relatively mostly as expected.
EDIT:
Also I see in the link in your sig that gnome seems to looks nice too on the small screen
The Following 4 Users Say Thank You to b-man For This Useful Post: | ||
|
2010-04-27
, 01:00
|
Posts: 103 |
Thanked: 50 times |
Joined on Jan 2010
@ Chicago
|
#8
|
|
2010-04-27
, 01:03
|
|
Posts: 549 |
Thanked: 502 times |
Joined on Feb 2008
@ Bowling Green Ohio (united states)
|
#9
|
Looks great! Do you think it would be possible to dual-boot off the microSDHC?
The Following 3 Users Say Thank You to b-man For This Useful Post: | ||
|
2010-04-27
, 01:21
|
|
Posts: 549 |
Thanked: 502 times |
Joined on Feb 2008
@ Bowling Green Ohio (united states)
|
#10
|
#!/bin/sh #/etc/init.d/n900_wd: start rx51 hw watchdog service. ### BEGIN INIT INFO # Provides: n900_wd # Short-Description: Start rx51 hw watchdog service. # Required-Start: $remote_fs # Required-Stop: $remote_fs # X-Start-Before: $all # Default-Start: 2 3 4 5 # Default-Stop: ### END INIT INFO [ -x /usr/sbin/wd_keepalive ] || exit 0 RETVAL=0 PROG=wd_keepalive PIDFILE=/var/run/wd_keepalive.pid LOCKFILE=/var/lock/subsys/n900_wd return_failure(){ echo -n "Starting ${0} failed" } return_sucsess(){ echo -n "Starting ${0} sucseeded" } start(){ echo -n "Starting ${PROG}..." /usr/sbin/${PROG} -c /etc/watchdog-omap.conf RETVAL=$? [ ${RETVAL} -ne 0 ] && (return_failure; echo; exit ${RETVAL}) /usr/sbin/${PROG} -c /etc/watchdog-twl4030.conf RETVAL=$? [ ${RETVAL} -eq 0 ] && touch ${LOCKFILE} [ ${RETVAL} -eq 0 ] && return_sucsess [ ${RETVAL} -ne 0 ] && return_failure echo exit ${RETVAL} } stop(){ rm -rf ${LOCKFILE} ${PIDFILE} } restart(){ stop start } case ${1} in start) start ;; stop) stop ;; restart) restart ;; *) echo "Usage: ${0} {start|stop|restart}" exit 1 ;; esac
update-rc.d n900_wd start 09 2 3 4 5 .
watchdog-device = /dev/twl4030_wdt interval = 10 realtime = yes priority = 1
watchdog-device = /dev/watchdog interval = 10 realtime = yes priority = 1
The Following 2 Users Say Thank You to b-man For This Useful Post: | ||
I know Ubuntu will run, maybe just a terminal command to install the Netbook Edition layout (im not too keen on LXDE)
As far as I reckon the two official armel builds of Ubuntu Netbook Edition will not run on the N900, but at least they prove that all the applications that able to build for armel.
What about installing one of those ulv overclocked kernels in ubuntu on the N900? to improve battery life and performance.
And I also reckon it will take some time before any alternative OS on the N900 will have phone capability.
Thanks for any input