Dart Ubuntu Server 14.04 how to install missing library for Dartium

I am trying to port a dart project from Ubuntu 12.04 to another machine with Ubuntu Server 64 bit 14.04. I installed a new version of Dart Editor etc. And copied my code.

So far this works, except when I try to run web code in Dartium. I am getting an error that my machine needs to be Dart provisioned - in particular, it cannot find libudev.so.O .

How to install it. I am using the minimal Gnome GUI.

+3


source to share


1 answer


This version libudev

does not ship with Ubuntu 14.04. You can try to create a symbolic link to the new version and see if it works:

sudo ln -s /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.0

      



Or you can download this package from http://packages.ubuntu.com/precise/libudev0 (version 12.04) and install it on your system. I haven't tried it, but since this package only contains the libudev0 library and a symlink, it should work as well.

+4


source







All Articles