How to run Helium Desktop on Linux
If you want backup your Android apps, the best application to do it is Helium. To run it, you need execute an application on your Desktop wget http://download.clockworkmod.com/carbon/carbon-linux.tgz tar xzvf carbon-linux.tgz cd linux ./run.sh . You will see this error: error: device not found adb server is out of date. killing... README adb run.sh daemon started successfully README adb run.sh error: device not found Or this: /data/app/com.koushikdutta.backup-1/base.apk CLASSPATH=/data/app/com.koushikdutta.backup-1/base.apk app_process /system/bin com.koushikdutta.shellproxy.ShellRunner2 & exit hammerhead:/ $ ^[[24;80R If you see, the bash script has an issue. To solve it, execute the following lines on your terminal: pkg=$(adb shell pm path com.koushikdutta.backup) pkg=$(echo $pkg | cut -d : -f 2 | sed s/\\r//g) ech...