Best Subtitle Editor For Ubuntu

i recommended gaupol


sudo apt-get install gaupol


Linux Show Bandwidth Usage

Nethogs


sudo nethogs [interface]

ex : sudo nethogs eth1


Ubuntu ati command temperature and gpu usage



if u want to check GPU load in the terminal just type 

aticonfig --adapter=0 --od-getclocks

if you want to check gpu temp in the terminal type 

aticonfig --odgt


if you want to add gpu load to conky add this to conky conf.

${font verdana:size=8}${color green}${execi 1 aticonfig --adapter=0 --od-getclocks | grep -i GPU}

ATI Graphic Get GPU Load

aticonfig --adapter=0 --od-getclocks | grep -i GPU

Android Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

Error message

Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

Fix it by

add this to manifest.xml file

android:installLocation="preferExternal"

just like this


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.kittinan.blog"
    android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
    android:versionCode="1"
    android:versionName="1.0"
    android:installLocation="preferExternal" >



Generate Android Key


keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore  | openssl sha1 -binary | openssl base64

add my user to vboxusers group for use usb

sudo usermod -aG vboxusers <your username>