Archive for April, 2011

No permissions in eclipse android device

You want to run your android project directly from eclipse on the device instead of dead slow emulator. For some reason you see something like this:

$ ./adb devices
List of devices attached
????????????	no permissions

adb program is located in directory android-sdk-linux_x86/platform-tools.
Fixing it requires to run these commands as root

$ sudo ./adb kill-server
$ sudo ./adb start-server
* daemon not running. starting it now on port 5037 *
* daemon started successfully *

Now you have permission to run android project directly from phone.

$ ./adb devicesList of devices attached
I55003067f3ce	device

Please comment ad hit +1 button above if this helped you.

Share on TumblrSubmit to StumbleUponSave on DeliciousDigg ThisSubmit to reddit

Tags:

Openoffice crashes when trying to open bibliography database

If you want to do scientific paper then good thing is to use Bibliographic database which helps to make citations in your work.

My environment is updated Ubuntu 10.10 and its lates OpenOffice.org 3.2.1. Whenever i tried to open bibliographic database then OOo crached.

Fix was simple but somewhat unexpected. openoffice.org-base package was missing. To make OOo work just run in teminal

sudo apt-get install openoffice.org-base
Share on TumblrSubmit to StumbleUponSave on DeliciousDigg ThisSubmit to reddit