Jump to content
Reliance Jio & Reliance Mobile Discussion Forums

Leaderboard


Popular Content

Showing most liked content on 03/21/2011 in Posts

  1. 2 points
    BASIC ADB COMMANDS How to get your logcat To use logcat simply Code: adb shell logcat To logcat to sdcard Code: adb shell logcat > /sdcard/logcat.txt Copy an app from your phone to your computer Code: adb pull /system/app/filename.apk C:\path (replace filename.apk with the app your pulling also replace path with the folder your placing the app in) Install an app from your computer on your phone This is also known as sideloading. Unlike installing from the SD card, it does not require unknown sources to be enabled. Code: adb install filename.apk This assumes that you are working from the directory where the file is located. This will install the application to /data/app. It will also show sometimes useful errors if install fails. That is not something you will see from the Android GUI. If you want to do anything which needs admin access, first we go to the adb shell which logs into the phone. Code: adb shell If we end up with a $, we will want admin rights, in many cases. To get admin rights, you want to type Code: su Look at your phone if this is the first time, it may prompt you to allow access. Else you will get permission denied. If you are not rooted, this will not work Push an app from your computer to your phones filesystem Code: adb push filename /pathtodirectoryonphone So for instance, if I have test.txt that I want to send to root of /sdcard, I would type: Code: adb push test.txt /sdcard/ Pushing files can be done to any directory, however, some are protected. For instance, /system is going to give you a permission denied or a read only filesystem error. To get around this, the easiest thing to do is push the file to your sdcard, then log into the shell: Code: adb shell Code: su We will then mount the system as writable Code: mount -o rw,remount /dev/block/stl9 /system Then we can use something like Code: cp /sdcard/test.txt /system/app/test.txt cp stands for copy and it requires the path of the file and destination path. When you copy it, you can rename it to whatever you like. For instance, if we wanted to backup a file Code: cp /sdcard/test.txt /sdcard/backuptest.txt Pulling files from your phone to your computer Lets say you want to get a file from your phone, to modify, backup, etc. To do this, we simply use adb in this manner: Code: adb pull /pathtofile/filename destinationname For instance, if I wanted to backup ADW launcher in system/app I would do this Code: adb pull /system/app/ADWLauncher.apk ADWLauncher.apk And it will pull the file from the phone and put it in the current directory. Like above, you can specifcy where it goes. Changing permissions We use something called chmod. This is used in this manner Code: adb shell su chmod 755 /pathtoapplication/applicationname An example Code: adb shell su chmod 755 /system/app/ADWLauncher.apk 755 is good for applications and script files. Remove an app from your phone This becomes especially handy for removing rogue applications. To do this, we must be in the adb shell. Code: adb shell su rm /system/app/ADWLauncher.apk You may first need to remount system as writable with: Code: mount -o rw,remount /dev/block/stl9 /system That applies when using chmod as well. So what I did above was delete ADW Launcher from system/app Flash a recovery image to your phone First pace the recovery image in your sdcard root and rename it to recovery (so the full name will now be recovery.img) Code: adb shell su (prompt changes from $ to #) flash_image recovery /sdcard/recovery.img (wait till this# sign shows up again before you type the next command) reboot recovery Get your current battery level Code: adb shell cat /sys/class/power_supply/battery/capacity Get your current rom build Code: adb shell getprop ro.build.description If we want to merely reboot the phone Code: adb reboot If we want to go to recovery Code: adb reboot recovery Source and credit: XDA
  2. 1 point
    Here is Setting for Working Internet on RWorld plan Please load all this NV item via CDMA Workshop Step by Step Process Disable any Anti Virus you have installed for CDMA Workshop to run Download cdma workshop 2.7 from here CDMA-Workshop-27.zip Dial ##8778# in your phone (code can vary) and select modem in usb section (Fro Fascinate **USBUI) (For HTC ##3424#) Now connect your phone it will be shown in device manager -com/ports in your pc in cdma workshop, Main tab select the same port as shown in device manager then click on connect and then read Send your SPC (Default 000000) to phone Go to Memory Tab - Click to Write in NVItem Group Select the Attached file and you New Password is configured Every thing will be charged as per RWorld plan no Free Goodies - Asking will same will be banned from Discussion Thread Complete dump file also added (00-All-Data-CW27.txt; Use this file for complete dump overwrite. CM27-Data-RWorld-RUIM-906-910.txt 00-All-Data-CW27.txt
  3. 1 point
    1. First download the CDMA workshop and QPST needed. You will get both in this link: downloads 2. Now pause the protection of your antivirus, else the CDMA workshop key will be identified as virus. 3. Open CDMA workshop. 4. Now from your phone dial ##8778#. It will screen titled - phoneutil. In that under UART - it will be in MODEM and under USB - change it to MODEM. 5. Plug your phone to PC. 6. Now to check in which port your phone is connected, open device manager in pc, and under PORT tab, check for the Samsung mobile modem diagnostic port. 7. Now in CW (cdma workshop) on the MAIN tab, under com setting, select the same tab and click connect. 8. Now go to SECURITY tab, and under SPC, enter 000000, its common one. Else ask your seller. Click SPC, now two options will come, SEND, and WRITE. Click SEND. 9. Message popup will come like phone unlocked. 10. Go to NAM tab. be careful everyone (noobs :-)) including me have a chance to make mistake. 11. Select NAM1, Click READ, and then it will read the NAM setting from your phone. And now click save and the NAM setting will be saved in your pc. Close CW. Now go to QPST. 12. Open QPST Configuration. And if the port in which phone is connected is not shown, and then add the port manually by selecting ADD NEW PORT. It will show the status as Connected. 13. Now from the tab - START CLIENTS - select - SERVICE PROGRAMING. 14. A new tab will be opened and will show your phone name as FFA6550 - ZRF6500. Click OK. 15. The tab will be shown, with ESN number and all the details. And status of phone as online. 16. Now down, there will be a button, Load from file. Click on it and select the QCN file uploaded by hetal in the above post. Click OK 17. And in QPST, now click the button, Write to phone. Now your phone will be restarted. And will be reset. 18. Close QPST - one by one. EXIT. Now with cW. 19. Open CW and connect it to the same port. 20. Now go to SECURITY tab, and under SPC, enter 000000, its common one. Else ask your seller. Click SPC, now two options will come, SEND, and WRITE. Click SEND. 21. Message popup will come like phone unlocked 22. Go to NAM tab and click the button LOAD. It will ask for the file and select the previously back up NAM file. 23. Click write button. and close the cDMA. It will ask like phone setting has been changed reboot. Click Yes. 24. Its finished. You have done radio reprogramming!!!! After this For Data to work. Please follow the thread posted by dkaile. HERE
  4. 1 point
    Latest from Nursery Schools: A: APPLE B: BLUETOOTH C: CHAT D: DOWNLOAD E: E MAIL F: FACEBOOK G: GOOGLE H: HEWLETT PACKARD I: iPHONE J: JAVA K: KINGSTON L: LAPTOP M: MESSENGER N: NERO O: ORKUT P: PICASSA Q: QUICK HEAL R: RAM S: SERVER T: TWITTER U: USB V: VISTA W: WiFi X: Xp Y: YOU TUBE Z: ZORPIA Guess what???? .... A is still an Apple!
  5. 1 point
    i am having axis , hdfc , idbi current acc the best is idbi current cheques book free . no cash deposit limit . no min balance to maintain
  6. 1 point
    For some persons instead of a Current acccount, an Overdraft account is better:------ Those who have lesser transactions and lesser in volumes, instead of keeping a minimum balance which won't earn any interset, can put this in a longtime fixed deposit and on this deposit can have a overdraft account(Not Loan account) and Banks will fixes a Overdraft limit(75% to 90% of deposit) Then you transact in this overdraft account as usual as a current account. If you uses a minus balance upto the limit fixed by the Bank, then only you have to pay extra interest of 2% on what Bank's gives on fixed deposit. So that your minimum balance will earn interest. And also you can avoid unnecessary marketing calls, hidden charges. You may maintain zero balance in these accounts. Normally all the Banks won't charge for opening of this type of accounts. Other charges only Ledger Folio charges once in a six months which is around Rs 100 to Rs 200.
  7. 1 point
    Among the 3 you mentioned, IDBI bank is best now a days. It is a PSU/sarkari bank so it is 'safe'. In case of a banking crisis like the one that happened in 2008, your money in IDBI bank account will be backed by the Indian government. This is important because in last 10 years a number of Private banks have closed (e.g. Global Trust Bank, United Western Bank) leaving their customers in lurch and desperately trying to ge the money out of their accounts with troubled banks. A lot of services in IDBI bank are free without the need to maintain big minimum balance. You are charged for every small service by both PSU banks like SBI or Private banks like HDFC. Further, IDBI bank staff will never call you and attempt to sell you useless investment products like ULIPs. Also IDBI bank is offering best interest rates on fixed deposits now a days among all PSU banks. Axis bank will charge you for things like cheque books, Pay orders, money transfers by NEFT, Debit cards and you will need to maintain a minimum balance. Further they will try to sell you insurance products like ULIPs, gold coins etc. from time to time. You will get tired of answering their phone calls every day. They will also want you to take their Platinum credit card. When I refused to take their credit card, they sent one of their executives to my home on a Sunday morning anyway, just to push the credit card down my throat. Needless to say, I soon closed my account with them. HDFC bank staff will also try to sell you ULIPs. You will maintain a minimum balance and will pay for services that are free with IDBI bank. Further every time you receive a big payment in your account by cheque or by online transfer, they will call you and ask you to tell the source of funds. If you ask me, this is a big nuisance. I have a business to run and fielding useless calls from bank must not be a part of my daily routine. If you have receive payments from abroad by wire transfers, then CitiBank business current account with minimum balanc of Rs 50,000 has lowest charges for receiving wire transfers. They have few branches but their service is better than the most banks in India. I don't know if they have a branch in your city and near your place. HSBC Direct account with zero balance is also good if most of your business is done online and you don't need to deposit or withdraw cash from bank frequently. Have a look at their charges: http://www.hsbc.co.in/1/2/business/business-current-accounts/hsbc-direct-for-business http://www.hsbc.co.in/1/PA_1_083Q9FFKG80E20RA9Q00000000/content/website/pdf/business/bd_tariff.pdf Once again I don't know if HSBC has a branch near your place. My office is located in Central Delhi (near connaught Place) and all banks have branches in Connaught Place. So all banks are accessible for me. Given my bad experience, I suggest NOT opening accounts with ICICI or Standard Chartered Bank.
  8. 1 point
    there you go... just remove the .txt extension from the file and there u have it. Backup your NAM via CDMA Workshop Load the Attache QCN file which will reset your MINReload NAM via backup file EPIC.qcn.txt
×