Pages

Saturday, July 4, 2020

Android Debug Bridge version 1.0.32 all commands and description

Android Debug Bridge version 1.0.32
Revision eac51f2bb6a8-android

 -a                            - directs adb to listen on all interfaces for a connection
 -d                            - directs command to the only connected USB device
                                 returns an error if more than one USB device is present.
 -e                            - directs command to the only running emulator.
                                 returns an error if more than one emulator is running.
 -s <specific device>          - directs command to the device or emulator with the given
                                 serial number or qualifier. Overrides ANDROID_SERIAL
                                 environment variable.
 -p <product name or path>     - simple product name like 'sooner', or
                                 a relative/absolute path to a product
                                 out directory like 'out/target/product/sooner'.
                                 If -p is not specified, the ANDROID_PRODUCT_OUT
                                 environment variable is used, which must
                                 be an absolute path.
 -H                            - Name of adb server host (default: localhost)
 -P                            - Port of adb server (default: 5037)
 devices [-l]                  - list all connected devices
                                 ('-l' will also list device qualifiers)
 connect <host>[:<port>]       - connect to a device via TCP/IP
                                 Port 5555 is used by default if no port number is specified.
 disconnect [<host>[:<port>]]  - disconnect from a TCP/IP device.
                                 Port 5555 is used by default if no port number is specified.
                                 Using this command with no additional arguments
                                 will disconnect from all connected TCP/IP devices.

device commands:
  adb push [-p] <local> <remote>
                               - copy file/dir to device
                                 ('-p' to display the transfer progress)
  adb pull [-p] [-a] <remote> [<local>]
                               - copy file/dir from device
                                 ('-p' to display the transfer progress)
                                 ('-a' means copy timestamp and mode)
  adb sync [ <directory> ]     - copy host->device only if changed
                                 (-l means list but don't copy)
                                 (see 'adb help all')
  adb shell                    - run remote shell interactively
  adb shell <command>          - run remote shell command
  adb emu <command>            - run emulator console command
  adb logcat [ <filter-spec> ] - View device log
  adb forward --list           - list all forward socket connections.
                                 the format is a list of lines with the following format:
                                    <serial> " " <local> " " <remote> "\n"
  adb forward <local> <remote> - forward socket connections
                                 forward specs are one of:
                                   tcp:<port>
                                   localabstract:<unix domain socket name>
                                   localreserved:<unix domain socket name>
                                   localfilesystem:<unix domain socket name>
                                   dev:<character device name>
                                   jdwp:<process pid> (remote only)
  adb forward --no-rebind <local> <remote>
                               - same as 'adb forward <local> <remote>' but fails
                                 if <local> is already forwarded
  adb forward --remove <local> - remove a specific forward socket connection
  adb forward --remove-all     - remove all forward socket connections
  adb reverse --list           - list all reverse socket connections from device
  adb reverse <remote> <local> - reverse socket connections
                                 reverse specs are one of:
                                   tcp:<port>
                                   localabstract:<unix domain socket name>
                                   localreserved:<unix domain socket name>
                                   localfilesystem:<unix domain socket name>
  adb reverse --norebind <remote> <local>
                               - same as 'adb reverse <remote> <local>' but fails
                                 if <remote> is already reversed.
  adb reverse --remove <remote>
                               - remove a specific reversed socket connection
  adb reverse --remove-all     - remove all reversed socket connections from device
  adb jdwp                     - list PIDs of processes hosting a JDWP transport
  adb install [-lrtsdg] <file>
                               - push this package file to the device and install it
                                 (-l: forward lock application)
                                 (-r: replace existing application)
                                 (-t: allow test packages)
                                 (-s: install application on sdcard)
                                 (-d: allow version code downgrade)
                                 (-g: grant all runtime permissions)
  adb install-multiple [-lrtsdpg] <file...>
                               - push this package file to the device and install it
                                 (-l: forward lock application)
                                 (-r: replace existing application)
                                 (-t: allow test packages)
                                 (-s: install application on sdcard)
                                 (-d: allow version code downgrade)
                                 (-p: partial application install)
                                 (-g: grant all runtime permissions)
  adb uninstall [-k] <package> - remove this app package from the device
                                 ('-k' means keep the data and cache directories)
  adb bugreport                - return all information from the device
                                 that should be included in a bug report.

  adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]
                               - write an archive of the device's data to <file>.
                                 If no -f option is supplied then the data is written
                                 to "backup.ab" in the current directory.
                                 (-apk|-noapk enable/disable backup of the .apks themselves
                                    in the archive; the default is noapk.)
                                 (-obb|-noobb enable/disable backup of any installed apk expansion
                                    (aka .obb) files associated with each application; the default
                                    is noobb.)
                                 (-shared|-noshared enable/disable backup of the device's
                                    shared storage / SD card contents; the default is noshared.)
                                 (-all means to back up all installed applications)
                                 (-system|-nosystem toggles whether -all automatically includes
                                    system applications; the default is to include system apps)
                                 (<packages...> is the list of applications to be backed up.  If
                                    the -all or -shared flags are passed, then the package
                                    list is optional.  Applications explicitly given on the
                                    command line will be included even if -nosystem would
                                    ordinarily cause them to be omitted.)

  adb restore <file>           - restore device contents from the <file> backup archive

  adb disable-verity           - disable dm-verity checking on USERDEBUG builds
  adb enable-verity            - re-enable dm-verity checking on USERDEBUG builds
  adb keygen <file>            - generate adb public/private key. The private key is stored in <file>,
                                 and the public key is stored in <file>.pub. Any existing files
                                 are overwritten.
  adb help                     - show this help message
  adb version                  - show version num

scripting:
  adb wait-for-device          - block until device is online
  adb start-server             - ensure that there is a server running
  adb kill-server              - kill the server if it is running
  adb get-state                - prints: offline | bootloader | device
  adb get-serialno             - prints: <serial-number>
  adb get-devpath              - prints: <device-path>
  adb remount                  - remounts the /system, /vendor (if present) and /oem (if present) partitions on the device read-write
  adb reboot [bootloader|recovery]
                               - reboots the device, optionally into the bootloader or recovery program.
  adb reboot sideload          - reboots the device into the sideload mode in recovery program (adb root required).
  adb reboot sideload-auto-reboot
                               - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.
  adb reboot-bootloader        - reboots the device into the bootloader
  adb root                     - restarts the adbd daemon with root permissions
  adb unroot                   - restarts the adbd daemon without root permissions
  adb usb                      - restarts the adbd daemon listening on USB
  adb tcpip <port>             - restarts the adbd daemon listening on TCP on the specified port
networking:
  adb ppp <tty> [parameters]   - Run PPP over USB.
 Note: you should not automatically start a PPP connection.
 <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
 [parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
  <localdir> can be interpreted in several ways:

  - If <directory> is not specified, /system, /vendor (if present), /oem (if present) and /data partitions will be updated.

  - If it is "system", "vendor", "oem" or "data", only the corresponding partition
    is updated.

environmental variables:
  ADB_TRACE                    - Print debug information. A comma separated list of the following values
                                 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
  ANDROID_SERIAL               - The serial number to connect to. -s takes priority over this if given.
  ANDROID_LOG_TAGS             - When used with the logcat option, only these debug tags are printed.

android adb disable hide suspend command explaination

adb
shell
su
pm disable PACKAGE # disables the app and hides it in Settings -> Applications
pm hide PACKAGE # alternative; for Android Lollipop and above
cmd package suspend PACKAGE # alternative; package remains visible in Launcher and Settings app but cannot be used;

Saturday, October 14, 2017

சோகம் மறைந்திருக்கும் இடம்

சோகங்கள் கண்ணீரில் மட்டும் மறைந்திருக்காது.!
வாய்விட்டு சிரிக்கும் பலரின் பொய் சிரிப்பிலும் மறைந்திருக்கும்..!!

Saturday, November 15, 2014

Detailed procedure for Registration / De-Registration for DND(Do Not Disturb) Services

START0  to 1909 : For Full Blocking(DNC)
START1  to 1909 : Receiving SMS on Banking/Finance/CC
START2  to 1909 : Receiving SMS on Real Estate
START3  to 1909 : Receiving SMS on Education
START4  to 1909 : Receiving SMS on Health
START5  to 1909 : Receiving SMS on Automobiles and Consumer Goods
START6  to 1909 : Receiving SMS on Entertainment/IT/Broad Casting/Communication
START7  to 1909 : Receiving SMS on Tourism and Leisure
STOP<Option> to 1909 : For Stopping existing option(s)
STOP to 1909 : subscriber will be de-registered
START2,3 : combination of different preferences but separated by comma (,)

Customer may also can make a call on toll free short code 1909, terminating on the respective WS Call Centre and select his/her preference to register, de-register or change the preference through the IVRS.

Customer can change the preference once chosen, at any time on expiry of three months from the date of registration or last change of his request. The request for all registration / change / deregistration has to be done from the same telephone number for which registration/change/de-registration has been requested. 

Mobile Customer can check the status of Registration / De-registration of Do Not Disturb (DND) services.

Sunday, August 24, 2014

midi converter smf1 to smf0 freeware

i need to convert smf1 midi format to smf0
because of my yamaha keyboard
i search all over the web and surf many sites
finally i found i freeware that was perftet match for my needs


my needs :
Create my own music noation
then i have to save as .midi (smf0) format
then upload to my keyboard

now i can create my own music notation with  MuseScore (freeware)  save to .midi file (but it saves at smf1)
covert the .midi(smf1) with MIDI Formatter to .midi(smf0)
then i can upload to my yamaha keyboard.


download:
MuseScore Source
MIDI Formatter Source  

Wednesday, February 12, 2014

Samsung mobile phone secret code

SAMSUNG மொபைல் போன்களுக்கான் குறியீட்டுகளே...!

1)*#9999# - தங்கள் போனின் சாப்ட்வேர் சார்ந்த தகவல்களை அறிய.
2)#*3849# -தங்கள் சாம்சங் மொபைல் போனை மீண்டும்Rebootசெய்ய.
3)*#06# -சாம்சங் போனின்IMEI (EMI)எண்ணை அறிய. இது மிக முக்கிய ஓர் எண்ணாகும்.
4)#*2558# -தங்கள் போனின் கடிகாரத்தை இயக்க அல்லது நிறுத்த. தங்கள் போனின் மொபைல் போனின் டைமை ஆன் செய்ய அல்லது ஆப் செய்ய.
5)#*7337# -தங்கள் அண்மைகால சாம்சங் மொபைல் போனை அன்லாக் செய்ய(UnLock).
6)#*4760# -தங்களில் போனில்GSM Featuresயை இயக்க அல்லது நிறுத்த.
7)*#9998*246# -தங்கள் போனின் மெமரி திறன் மற்றும் பேட்டரியின் திறனை அறிய.
8)*#7465625# -தங்கள் போனின் கடவுசொல் நிலைமை அறிய.
9)*#0001# -தங்கள் போனின் சீரியல் எண்ணை காண.
10)*#2767*637# -தங்கள் மொபைல் போனை அன்லாக் செய்ய.
11)*#8999*636# -தங்கள் போனின் சேமிப்பு கொள்ளலவு நிலைமையை காண.
12)*#8999*778# -தங்கள் சிம் கார்ட் பற்றிய தகவல்களை அறிய.
13)#*#8377466# -தங்கள்போனின் ஹாட்வேரின் தன்மை மற்றும்Versionயை அறிய.
14)#*3888# -சாம்சங் போன்களின்Bluetoothயின்தகவல்களைஅறிய.
15)#*5376# - ஒரே கட்டளையில் தங்கள் போனின் அனைத்து மெசேஜ்யும் ஒரே கட்டளையில் நீக்க அல்லது அழிக்க.
16)#*2472# -தங்கள் போனின் சார்ஜிங் நிலைமை அறிய.
ஒரு சில கோடுகள் சில போன்களில் இயங்காது.

Saturday, January 4, 2014

How to setup a PS3 Media server With Windows Setting (no need to download software- only by setting)

You should be able to take the following steps to enable media sharing between your PS3 and Windows 7 OS:

Go to Control Panel > Network and Sharing Center > Change Advance Sharing Settings

Then you need to make sure:
- Network Discovery is ON
- File & Printer Sharing is ON

After that click on Media Streaming options

On the Show devices drop bar, select All Networks
You should see some Unknown device/devices.
Double-click each Unknown device to see the MAC address of the device
Find the device that matches the MAC address of your PS3 and allow that device for media sharing


don's forgot  to setup on ps3
PS3> settings> network settings> internet connection > Enable
then test your network connection 
PS3> settings> network settings> media server connection > Enable

after this you can view your PC's media files on XMB