Verizon Phones Unlocked Bootloader

  1. Are Verizon Phones Unlocked
  2. Verizon Phones Unlocked Bootloader Reviews
  3. Verizon Phones With Unlocked Bootloaders
  4. Using Unlocked Phone On Verizon

An “unlocked” phone in this situation falls under that first category and means that Verizon cannot lock its phones from working on another network (this is not a bootloader situation). Since their are currently no other networks to my knowledge that have access to their LTE frequency, they shouldn’t have a problem doing that. Unlock a Verizon Phone. Unlocking a smartphone on Verizon is easy, especially in 2020. In fact, it’s so easy that Verizon doesn’t need to offer an unlock portal or some guideline on how to.

Most of the Verizon Samsung Galaxy Note 4 [SM-N910V] users want to unlock the bootloader of their phone. Once the bootloader is unlocked, you can easily install the custom recovery and root your phone. Now the new and working method released to unlock the bootloader on Verizon Samsung Galaxy Note 4 [SM-N910V]. The credit goes to ryanbg of XDA for sharing this useful method. The process is a little bit lengthy but it works. Most of the XDA members tested the same and successfully unlocked the bootloader of Galaxy Note 4. All you have to run some command on ADB and you are done. Below is the guide which you can follow on your phone and do the same.

The process is only for the Verizon Samsung Galaxy Note 4 [SM-N910V] users and don’t use this method on any of other Android phones. Read all the instruction very carefully and do take the full backup of your phone before following this tutorial.

Unlock Bootloader on Verizon Galaxy Note 4

Step 1. Setup the ADB drivers on your PC form here. And this will create an ADB folder on your PC C Drive.

Verizon phones with unlocked bootloaders

Step 2. Install the latest Samsung USB drivers on your PC from here.

Step 3. Now Download samsung_unlock_n4-fix script here and place all the files in ADB folder that you created in Step 1.

Step 4. Now Enable USB-Debugging on your phone. To enable USB-Debugging, go to Settings >> About phone >> Software info and tap Build number 7 times. Return to the previous screen, select Developer options and enable USB-Debugging.

Are Verizon Phones Unlocked

Step 5. Navigate to the ADB files folder and open a command prompt inside the folder by pressing Shift key + Right-click in the empty space inside the folder, and select Open command window here option from the Windows context menu.

Step 6. Now use the below command to transfer the unlock file to the temporary location in the device.

adb push samsung_unlock_n4-fix /data/local/tmp/

Step 7. Open ADB shell on your PC.

adb shell

and after that enter the following command to get the root access.

su

Step 8. Now enter the below commands one by one to set the correct permissions and ownership for the unlock file.

cd /data/local/tmp/

chmod 777 samsung_unlock_n4-fix

chown root.root samsung_unlock_n4-fix

Step 9. To run the script enter the following command.

./samsung_unlock_n4-fix

You’ll see the below-warning banner after running the above script. Read it carefully.

[+] CID at boot time is/was: 1501xxxxxxxxxxxxxxxxxxxxxxxxx
[+] device not yet dev CID, now changing to dev CID
[+] programming new CID 150100523231384d4100657e54fc1200
[+] success! powering off device, power back on and verify CID
[+] then run this binary again to finish the process

Allow device to reboot. After the full reboot, power down and pull the battery. May need to run it twice if it doesn’t work after the battery pull. Now your phone has the unlocked bootloader.

Via-Xda

I bought a new Pixel phone on Ebay a couple months ago for testing an Android app i’m developing. To my surprise,the phone I received in the mail was not the unlocked Google version I thought I ordered (with an unlocked bootloader), but rather the locked downVerizon version.
I was hoping to eventually root the device in order to play around with some pentesting tools (specifically Frida). Sadly, I wasn’t ableto find an easy solution until now.

Unlock Bootloader

This morning I saw a post on the xda forums by user burduli,illustrating how he unlocked the bootloader on a Verizon Pixel. His article was posted on May 27th, 2018. It’s taken almost two years since the phone’s release for this simple bootloader workaround to be found!
The steps are as follows, adapted slightly based on my experience and environment (Ubuntu):

Phones
  1. Remove Google account and PIN/Fingerprint from your device.
  2. Eject sim card from your device.
  3. Factory reset your device. Skip everything in the setup wizard.
  4. Go to Developer Options and enable USB debugging.
  5. Connect your phone to computer.
  6. Open terminal in adb directory and typeadb shell pm uninstall --user 0 com.android.phone
  7. Restart your device.
  8. Connect to WiFi, open Chrome and go to any website. (nobody knows why we do this??)
  9. Go to Developer Options and enable OEM unlocking.
  10. Reboot into bootloader and via terminal runfastboot oem unlockorfastboot flashing unlock
  11. Profit

Notes

  • For adb and fastboot, I installed Android Studio on my machine and navigated to ~/Android/Sdk/platform-tools when I wanted to use those programs. I had difficulty with the fastboot installed from apt that was attached to my PATH.
  • I had to restart my phone twice to perform step 9. The first time, the OEM unlocking slider was grayed out. Others in the original post’s comments had similar problems.
  • If you see the error “insufficient permissions for device error”, you’ll need to first kill the server adb kill-server, and then restart with root privs sudo adb start-server.
  • Be aware that unlocking bootloader removes everything from your device. The fact that you factory restore in step 3 means you should be ok with this…

Rooting Prereqs

These are the requirements and files I found necessary.

  • adb and fastboot (which you already have from the bootloader bit above)
  • A cable to connect phone to computer
  • “SailFish” Pixel Factory Image v8.1-May (downloaded to host computer)
  • twrp-3.2.1-2-sailfish.img (downloaded to host computer)
  • twrp-pixel-installer-sailfish-3.2.1-2.zip (downloaded to device file system BEFORE starting)
  • Magisk (downloaded to device file system BEFORE starting)

Get rid of all the Verizon

Now i’m not positive if this step is essential, but after encountering difficulty I decided to reimage the phone with an official Googleimage. Either way, can’t hurt to start with a clean slate.
Download the image above and follow this steps Google provides on their factory images page.Essentially, you’ll want to unzip the image archive, plug in your device, and run the flash-all.sh it provides. You’ll need to make sure thecorrect fastboot is in your PATH. Mine wasn’t, so I modified the four spots that fastboot was called in the script and wrote out the full path (~/Android/Sdk/platform-tools/fastboot).

Verizon Phones Unlocked Bootloader Reviews

Prep TWRP

First off, make sure to set a PIN number in the OS before continuing. You need a PIN so TWRP can decrypt and access the file system later.
I had no idea what TWRP was before this guide, but apparently it’s a custom recovery tool used for installing custom software on your device. The way weinstall TWRP is by first loading a temporary TWRP state onto the device, and then in that state overwriting our recovery partition with a full TWRP install.
Install the .img file from above, move it to your platform-tools folder and rename it to twrp.img.

mv ~/Downloads/twrp-3.2.1-2-sailfish.img ~/Android/Sdk/platform-tools/twrp.img

Load TWRP

Now we’re ready to load TWRP onto our phone. Start bootloader mode by holding down power button + volume down and plug in your phone. If you see an Android lying on his back, you’re in the right spot. Try running fastboot devices - you should see your device show up.

Boot from the twrp image we just moved to the platform-tools directory by issuing:

fastboot boot twrp.img

Install TWRP

Great! You should now be booted into the twrp interface.

Press the “install” button, navigate to your Downloads folder, and install the twrp-pixel-installer-sailfish-3.2.1-2.zip you downloaded to your phone earlier. Let that installation complete (hopefully with no errors).
Now go back a few steps to the page we started at, press the restart button, and then press recovery. You should now boot into a version of TWRP running entirely on your device. You can use TWRP to do a whole bunch of things…one of them being rooting the device.

Verizon Phones With Unlocked Bootloaders

Actually root the device

Using Unlocked Phone On Verizon

Same as last time! Press the “install” button, but this time you’re installing the Magisk zip you downloaded at the start of this guide.
Like magic, your device is now rooted! I downloaded a free “Root checker” app from the Play Store to confirm. Enjoy!