Reputation: 303
Am getting errors when installing dart plugin in eclipse 4.2 the error is An error of will appear as it happened to me => /usr/lib64/eclipse/dart-sdk.zip (Permission denied)
and dartium for linux is giving me an error of
./chrome: error while loading shared libraries: libbz2.so.1.0: cannot open shared object file: No such file or directory
and an another error
./chrome: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory
Upvotes: 1
Views: 1417
Reputation: 303
This is to help anyone who comes into these errors while configuring Dart and Dartium when using the fedora 18 os
When installing the dart plugin in eclipse {I am using Eclipse from the fedora official repository which is Juno 4.2.1 && any 4.2 and above will work with this procedure }
2 ./chrome: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory it might complain of ./chrome: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory.
Two solutions i have for this are : 1.Locate the location of the two libraries in your system and do symlinks to either /usr/lib/ or to usr/lib64 as below : you can use the locate command or find command locate libbz2.so.1.0 if found do ln -s {/path/to/libbz2.so.1.0} {/path/to/dartium/libbz2.so.1.0} later do locate libudev.so.0 if found do ln -s {/path/to/libudev.so.0} {/path/to/dartium/libudev.so.0}
Upvotes: 1