Author Topic: Working Netbook Remix On Netwalker  (Read 6491 times)

propofol

  • Newbie
  • *
  • Posts: 31
    • View Profile
    • http://www.ingogo.net
Working Netbook Remix On Netwalker
« on: May 27, 2010, 06:49:02 pm »
I have been very keen on getting this functional on my Netwalker and it seems to be working. It does require mixing packages which may potentially cause problems. This was scraped together from various sources.

(From http://plaza.rakuten.co.jp/kapper1224/diary/201003120000/)
 
Add lucid to /etc/apt/sources.list:
 
Code: [Select]
 #deb http://ports.ubuntu.com/ jaunty main universe multiverse restricted
 deb http://ports.ubuntu.com/ lucid main universe multiverse restricted

Code: [Select]
sudo aptitude update
sudo aptitude install firefox
sudo aptitude install openoffice.org
sudo aptitude install netbook-remix-efl

Note: It is probably better to remove lucid from apt sources.list file or alternatively to have both jaunty & lucid available use apt pinning described below.

This is required before betbook-launcher-efl will run:
(From http://webcache.googleusercontent.com/sear...clnk&gl=us)

Code: [Select]
sudo ln -s /usr/lib/libembryo-ver-svn-02.so.0 /usr/lib/embryo.so.0
sudo ln -s /usr/lib/libembryo-ver-svn-02.so.0 /usr/lib/embryo.so

Auto launch:
Add netbook-launcher-efl to
Preferences -> Startup Applications

To get the remix theme without requiring Ctrl-Alt-Esc:
In System tools/Configuration editor -> set apps/nautilus/preferences/show_desktop to false,

or

(From http://www.mybookmarks.ro/linux/how-to-add...el-locked-fix/)

Ubuntu Netbook Edition 2D:
Code: [Select]
sudo ln -s /etc/xdg/xdg-une/autostart/maximus-autostart.desktop /etc/xdg/autostart/ #this makes Maximus run at login
sudo ln -s /etc/xdg/xdg-une-efl/autostart/netbook-launcher-efl.desktop /etc/xdg/autostart/ #this launches the UNE interface at login
sudo ln -s /usr/share/gconf/une/default/20_une-gconf-default /usr/share/gconf/defaults/
sudo ln -s /usr/share/gconf/une/mandatory/20_une-gconf-mandatory /usr/share/gconf/defaults/
sudo update-gconf-defaults

Then log out and in the the GDM login screen, chose "GNOME" instead of "Ubuntu Netbook Edition" or "Ubuntu Netbook Edition 2D"

For those living on the edge (i.e. make a recovery disk first): you could try Apt Pinning:
Add lucid & jaunty to /etc/apt/sources.list:
 
Code: [Select]
 deb http://ports.ubuntu.com/ jaunty main universe multiverse restricted
 deb http://ports.ubuntu.com/ lucid main universe multiverse restricted

sudo vi /etc/apt/preferences
Code: [Select]
Package: *
Pin: release a=jaunty
Pin-Priority: 700

Package: *
Pin: release a=lucid
Pin-Priority: 600


Then do:
sudo aptitude update
sudo aptitude safe-upgrade -> this may take a while to sort out conflicts

Notes on pinning:

Install package from specific version:
apt-get install -t lucid package
or
aptitude -t lucid install package

Check what versions of "package" are available:
apt-cache policy package

Keep a package from being updated:
echo package hold | dpkg --set-selections

Restore:
echo package install | dpkg --set-selections



Alternatives to pinning -> compile source from a development version:

Add the following line to /etc/apt/sources.list
Code: [Select]
deb-src http://archive.ubuntu.com/ubuntu intrepid main restricted universe multiverse
sudo apt-get update

Code: [Select]
sudo apt-get build-dep package
sudo apt-get -b source -t lucid package


Regards,
Stefan

RX Shorty

  • Full Member
  • ***
  • Posts: 124
    • View Profile
    • http://www.lindoboom.nl
Working Netbook Remix On Netwalker
« Reply #1 on: May 29, 2010, 12:25:50 pm »
Nice work, which version of remix is this?
Owning a Zaurus SL-C860, SL-C3200, SL-6000, Netwalker
Got the GPD Win!

propofol

  • Newbie
  • *
  • Posts: 31
    • View Profile
    • http://www.ingogo.net
Working Netbook Remix On Netwalker
« Reply #2 on: May 30, 2010, 07:50:40 pm »
By temporarily adding lucid to the sources.list, the installer adds netbook-remix-efl from Lucid with its dependencies. It is not ideal mixing different editions but the netbook-remix interface is much more usable with the small screen size.

Quote from: RX Shorty
Nice work, which version of remix is this?


Regards,
Stefan

RX Shorty

  • Full Member
  • ***
  • Posts: 124
    • View Profile
    • http://www.lindoboom.nl
Working Netbook Remix On Netwalker
« Reply #3 on: May 31, 2010, 04:00:45 am »
Ah ok
Going to try it tonight, thanks for the effort.
Owning a Zaurus SL-C860, SL-C3200, SL-6000, Netwalker
Got the GPD Win!