== Disable & enable Android's media scanner == {{{#!highlight sh # Disable adb shell su pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver # Enable pm enable com.android.providers.media/com.android.providers.media.MediaScannerReceiver }}} Source: http://geeknizer.com/fix-android-media-server-scanner-sdcard-cpu-battery-drain/ == Create .nomedia files underneath a directory hierarchy == {{{ find ./ -mindepth 1 -type d -exec echo touch \"{}/.nomedia\" \; }}} == Backups == {{{#!highlight sh # Immediately trigger backup to Google Drive adb shell bmgr backupnow --all }}} ---- CategoryCheatSheet