Anonymous ID: eacaa6 Aug. 31, 2021, 5:39 p.m. No.14500240   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>14500222

ok

please define "edit away".

 

 

The non-root method

1

For this method, you will require a computer with the Android Debug Bridge (or ADB) installed on it. If you don't already have ADB, you can grab it fromย Google's developer resource page. Install ADB, and then run a command prompt in ADB's installation directory.

2

Connect your device to your computer via USB (make sure you've already enabled USB debugging in the developer settings). Run the command

adb devices

to ensure your device is connected, and that ADB is reading and interacting with your device appropriately.

3

Download your hosts file from your device by issuing the command

adb pull /system/etc/hosts F:\hosts

(replace F:\ with the directory you wish to copy your hosts file to)

This will copy your hosts file to your computer, to allow you to edit it in Notepad.

4

Now, simply navigate to the directory which you copied the hosts file to, and edit away! Remember, once you're done you need to push the file back to your device. Issue the command:

adb push F:\hosts /system/etc/

(Again, replace F:\ with the directory where you're storing your hosts file)

and you're good to go.