Friday, November 26, 2021

Procedure to renew driving license in Maharashtra

  • Visit below link to fill the form online
  • https://sarathi.parivahan.gov.in/sarathiservice/sarathiHomePublic.do
  • Select option "Apply for DL Renewal", Follow instructions on the screen to fill the form
  • After filling all the form, download all the forms. Also download the Form1-A (if you are above 40) and get it certified from medical practioner.
  • Upload all the documents along with the Form1-A
  • Pay the renewal fee online
  • Book the slot at the respective RTO office to submit the document which can be downloaded from the above link. Take print out of all documents. Take 2 copies of slot booking form.
  • Submit all the documents with original driving license to the respective RTO office
  • Don't forget to take the sign on second copy of slot booking form. The license will be sent to your address within one month
  • Sunday, October 28, 2018

    Listing only directories in linux


    ls -d */

    Install android apk using adb with all permissions granted by default


    adb install -g myAndroidApplication.apk

    Clear android Application data using shell command


    adb shell pm clear com.app.packageName

    Reset a specific permission of android package


    adb shell pm revoke com.app.packageName android.permission.WRITE_EXTERNAL_STORAGE

    Reset all granted permissions to a android package


    adb shell pm reset-permissions -p com.app.packageName

    Get environment variables passed to android/linux process


    adb shell cat /proc/238/environ | sed -e "s/\x0/\n/g"