Difference between revisions of "Accessing Linux archlinux"

From WebOS Internals
Jump to navigation Jump to search
m (Added link to palm-novacom-lite)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
== Novacomd ==
 
== Novacomd ==
Novacomd doesn't work under archlinux , so we have to use ubuntu's libusb.
+
Novacomd doesn't work under archlinux , so we have to use ubuntu's libusb. You can either use [https://aur.archlinux.org/packages.php?ID=48128 palm-novacom-lite] AUR package or download package from here : http://packages.ubuntu.com/lucid/libs/libusb-0.1-4
Download package from here : http://packages.ubuntu.com/lucid/libs/libusb-0.1-4
+
Unpack deb and copy somewhere the libusb-1.0.so.4.4.4. Create the script to launch novacomd
Unpack deb and copy somewhere the lubusb-1.0.so.4.4.4. Create the script to launch novacomd
 
  
 
  #!/bin/sh
 
  #!/bin/sh
  LD_PRELOAD=/path/to/lubusb-1.0.so.4.4.4 /opt/Palm/novacom/novacomd
+
  LD_PRELOAD=/path/to/libusb-1.0.so.4.4.4 /opt/Palm/novacom/novacomd
  
 
The rest is just unpacking debs in the right place.
 
The rest is just unpacking debs in the right place.

Latest revision as of 15:21, 10 April 2011

Novacomd

Novacomd doesn't work under archlinux , so we have to use ubuntu's libusb. You can either use palm-novacom-lite AUR package or download package from here : http://packages.ubuntu.com/lucid/libs/libusb-0.1-4 Unpack deb and copy somewhere the libusb-1.0.so.4.4.4. Create the script to launch novacomd

#!/bin/sh
LD_PRELOAD=/path/to/libusb-1.0.so.4.4.4 /opt/Palm/novacom/novacomd

The rest is just unpacking debs in the right place.