Related
Hello everybody! I have a lot of android apps on my pc and I want to transfer them to my nook, but I don't know if it is possible. If it is, which folder do I drop them off in? I tried to find where the other apps are installed in my nook that I directly download from the android market, but I can't find their location. Please help me out, I really need some of the apps I have and I can't even find them or can't download them directly. Thank you for your time!
psbear532 said:
Hello everybody! I have a lot of android apps on my pc and I want to transfer them to my nook, but I don't know if it is possible. If it is, which folder do I drop them off in? I tried to find where the other apps are installed in my nook that I directly download from the android market, but I can't find their location. Please help me out, I really need some of the apps I have and I can't even find them or can't download them directly. Thank you for your time!
Click to expand...
Click to collapse
Use adb
Code:
adb install myapp.apk
ros87 said:
Use adb
Code:
adb install myapp.apk
Click to expand...
Click to collapse
Thanks for taking your time to help me I really appreciate it. I've run into a problem though. when I try to set up adb it wont find my device in the cmd prompt. I am following these instructions to set up adb: search in youtube "ANDROID SDK Tools (How-To Install)" first video. I get stuck at the part at 6:23 it just says "list of devices attached" and doesn't list anything. I don't know what am doing wrong .
psbear532,
You can use a file explorer program (astro, es explorer, etc), and choose the apk on sd and install it. Just remember to use nookcolortools and de-select and re-select the non-market app box.
I guess it would be easier - I haven't had luck with adb so far...
psbear532 said:
Thanks for taking your time to help me I really appreciate it. I've run into a problem though. when I try to set up adb it wont find my device in the cmd prompt. I am following these instructions to set up adb: search in youtube "ANDROID SDK Tools (How-To Install)" first video. I get stuck at the part at 6:23 it just says "list of devices attached" and doesn't list anything. I don't know what am doing wrong .
Click to expand...
Click to collapse
Assuming you've successfully rooted your NST:
1: Enable wifi on your NST and make a note of the IP address assigned to it.
2: Tell adb to connect to that IP
Code:
adb connect 10.0.0.2
That's it, if adb was able to connect you can now adb push or adb install all you want
---------- Post added at 01:41 AM ---------- Previous post was at 01:39 AM ----------
apeine said:
psbear532,
I guess it would be easier - I haven't had luck with adb so far...
Click to expand...
Click to collapse
Why?, apart from having to download and install the Android SDK, using adb should be straightforward unless you're trying to get it to connect to the NST trough usb.
Ros87,
Maybe that was my mistake. I've always tried using USB :S
apeine said:
Ros87,
Maybe that was my mistake. I've always tried using USB :S
Click to expand...
Click to collapse
Getting adb to work over USB on the NST is a pain in the a**
Some people have reported getting it to work with the Google drivers, but none of them worked for me in W7. Also I'm unable to try it in Ubuntu as I'm running that trough VMware Player and I cannot redirect the USB port properly.
Thank you both so much! Ros87 I got it to work over wifi which I think is even better since now I don't even have to deal with the wire. apeine I didn't try your method since adb worked, but thanks for your time anyway.
ros87 said:
Getting adb to work over USB on the NST is a pain in the a**
Some people have reported getting it to work with the Google drivers, but none of them worked for me in W7. Also I'm unable to try it in Ubuntu as I'm running that trough VMware Player and I cannot redirect the USB port properly.
Click to expand...
Click to collapse
So why don't you install linux on a separate partition?
How does one do this without an SD card? I will be getting one soon, but for now, can I just create a temporary folder on the home directory and install it from there? Does it automatically install to the apps directory?
Thanks!
EDIT: I just figured out how much you can browse with the computer. So...
The simplest method is to just copy the apps to an SD card, insert the card,browse to the .apk location,tap on the .apk file, you will be prompted with an screen asking if you want to proceed to install or just use the adb over wifi method as explained above
I use and app names Airdroid. It allows you to install apps remotely from your computer via wifi.
I have an "apk" folder in my UbuntuOne account, Dropbox should work too.
then i have the app for the service installed.
it works fine for me
I have Imilika's AOSP ICS ROM V6,
I changed the buid.prop
ro.sf.lcd_density=213
for tablet mode. after I reboot, my GNote is not booting. I cannot go to recovery mode or download mode.
Please help. I don't know what to do
Got it
OK, I was really sad about what happens to my phone, but finally I managed to fix it .
As I told you, my phone was not booting to recovery or download modes (key combinations not worked). finally I try to connect to PC via USB and luckily my PC could detect my phone . So i realized that the problem is the display not coming but phone is halfway booted.
So, I tried to change my build.prop via adb but failed due to cannot grant root permission (becoz display is off).
Finally I issue a adb commad to reboot in recovery mode.
"adb reboot recovery"
yeah, that command directly take me to the CWM recovery. then I flash AOSP v6 again.
Now, my phone is working again.
P.S. I just note this down for others if they get same problem future !
I have question.. I don't understand the term adb. What that actually and why need that? I did so many flashing so far and I didn't use this adb yet!
priyanv said:
I have question.. I don't understand the term adb. What that actually and why need that? I did so many flashing so far and I didn't use this adb yet!
Click to expand...
Click to collapse
If you don't know what ADB is, you probably shouldn't be flashing so regularly. Anyway, ADB stands for "Android Debug Bridge" and it is a protocol for device control, development, and debugging.
Sent from my GT-N7000 using Tapatalk
priyanv said:
I have question.. I don't understand the term adb. What that actually and why need that? I did so many flashing so far and I didn't use this adb yet!
Click to expand...
Click to collapse
adb is a connection type. we can run shell commands (in the phone), file transfer via adb by using our PC. for that we should have to enable usb debug mode in our mobile.
Actually you might used adb, when you root your phone in the first place . If you have CF-Root zip file, just extract it. you will see a folder called "files", in there you can see adb.exe .
If you need test run,
connect phone via USB(make sure you've enabled USB debug), open command prompt, navigate to that "files" directory.
run "adb shell ls" (to run "ls" command in phone)
run "adb push <anyfile in the PC> /system/sdcard/" (copy files from PC to sdcard)
like that
OK now I got it.. But why do we need to push some file like this when we are able to transfer files like mass storage??? Or what else can be done??? Sorry for the basic questions..
priyanv said:
OK now I got it.. But why do we need to push some file like this when we are able to transfer files like mass storage??? Or what else can be done??? Sorry for the basic questions..
Click to expand...
Click to collapse
Its functionality is not only to copy files from pc to mobile and vice versa.You can use it to get logs due to bad flashing,zip align apps,reboot into recovery,DL mode,normal reboot etc...
How to root your Samsung Gear with Tizen
Before I start, I would like to credit Jijonhyuni for the root method, TML1504 for the camera silencing method and fibs for extracting the SDB utility from the Tizen SDK. I couldn't find an easy guide to rooting the Gear with Tizen so I thought I'd be helpful and provide a 'how to' post.
As with all rooting guides on XDA, I take no responsibility for you damaging your device. So read first and follow with precaution.
Steps for root
1. Make sure you're using a Gear 1 (v700) not 2.
2. Ensure that you are running the Tizen operating system. If not, you can update officially via Samsung kies.
3. Download this image file.
4. Download this sdb command prompt or download the SDK and just choose to install the appropriate SDB library from the installer.
5. Download Odin
6. Put the gear into bootloader mode. To do this, turn off the device. Then turn on and keep the power button held in until it says "Gear Rebooting...". Once it says this keep pressing the power button until the bootloader menu is displayed. At this point, press the power button once to highlight "Download" then press and hold the power button one last time to select it. This should enter downloading mode, where it warns to not turn off the target.
7. Put the gear into the charging device and plug into your PC. If you've not done this before, wait for the driver to automatically install before proceeding to step 8.
8. Extract then open up Odin and don't change any of the settings. All your need to do is to select 'AP' and choose the first file you downloaed 'v700_rootfs.img.tar'. Click start and wait for Odin to flash (should take around 30 seconds).
9. Let it reboot (I think it will restart 2 times and you've successfully rooted!!!
Steps for removing camera sounds
1. Turn on 'USB debugging' on the Gear by going into Settings|Gear Info|USB Debugging.
2. Plug your gear into your PC if it isn't already from the rooting procedure.
3. Extract the sbd.exe and put it somewhere easy to access (ie the root of a drive). I've put mine in the root of my C: drive. hence why the first line of the commands below starts with 'C:' If you put it somewhere else, make sure you point the command prompt to the relative directory.
4. Click the start button in Windows and type 'cmd'. Right click on 'Command Prompt' and open as administrator.
5. Type each line, one at a time and press return. If it shows no errors, then the command should have worked successfully. Work your way through each one.
C:
sdb root on
sdb shell mount -o remount,rw /
sdb shell mv /usr/share/sounds/mm-camcorder/ /usr/share/sounds/mm-camcorder_bak/
sdb shell mv /usr/apps/com.samsung.w-camera-app/res/sounds /usr/apps/com.samsung.w-camera-app/res/sounds_bak
Click to expand...
Click to collapse
6. Unplug the Gear and turn off USB debugging in Settings|Gear Info|USB Debugging, then reboot the device.
7. Take a photo/video. No sound!
And finally, let me know if it works!
Thanks for the tutorial. Nicely done!
My pleasure. I only did it because there's so much of the "Odin|Flash|Done!" tutorials these days and it really doesn't help beginners. Just doing my bit
440bro said:
Thanks for the tutorial. Nicely done!
Click to expand...
Click to collapse
Thanks! But this:
4. Download this sdb command prompt (from the Tizen SDK).
Leads to an unavailable DL page.
Invalid or Deleted File.
The key you provided for file access was invalid. This is usually caused because the file is no longer stored on MediaFire. This occurs when the file is removed by the originating user or MediaFire.
Still have questions, or think we've made a mistake? Please contact support for further assistance.
Click to expand...
Click to collapse
lazer9 said:
Thanks! But this:
4. Download this sdb command prompt (from the Tizen SDK).
Leads to an unavailable DL page.
Click to expand...
Click to collapse
My apologies. Link fixed.
jonboyuk said:
My apologies. Link fixed.
Click to expand...
Click to collapse
It's all good. I googled the SDK and the friggin thing is still installing - I think it's actually hung up , lol 1.6GBs...
But anyhoo, I went into the directory and copied the SDB.exe over to c:/ drive, followed your instructions and BINGO, no more shutter sound!
There is a focus sound apart of the shutter sound in Tizen camera like in Android? If so, the method to silent the camera here described removes it?
Thank you very much.
lazer9 said:
It's all good. I googled the SDK and the friggin thing is still installing - I think it's actually hung up , lol 1.6GBs...
But anyhoo, I went into the directory and copied the SDB.exe over to c:/ drive, followed your instructions and BINGO, no more shutter sound!
Click to expand...
Click to collapse
Hahaha!! Amazing, glad it worked. The camera is one of my favourite parts of the watch, but it's so lame with a massively loud sound.
Persuader X said:
There is a focus sound apart of the shutter sound in Tizen camera like in Android? If so, the method to silent the camera here described removes it?
Thank you very much.
Click to expand...
Click to collapse
Yes, there is a focus AND a shutter sound. Yes the method described removes ALL camera sounds.
jonboyuk said:
Hahaha!! Amazing, glad it worked. The camera is one of my favourite parts of the watch, but it's so lame with a massively loud sound.
Yes, there is a focus AND a shutter sound. Yes the method described removes ALL camera sounds.
Click to expand...
Click to collapse
Thank you very much. That's the only thing I was waiting to be solved to update to Tizen.
Persuader X said:
Thank you very much. That's the only thing I was waiting to be solved to update to Tizen.
Click to expand...
Click to collapse
Any time. Enjoy, it's really good
It's simple enough just to download sdb and the appropriate libs correctly from the tizen download tool.
Unselect everything and just tick SDK development tools ; 1.6M download.
westwallpoma said:
It's simple enough just to download sdb and the appropriate libs correctly from the tizen download tool.
Unselect everything and just tick SDK development tools ; 1.6M download.
Click to expand...
Click to collapse
Nice one....I'll add it to the first post.
camera
delete
Worked perfectly!
T-Anthony78 said:
Worked perfectly!
Click to expand...
Click to collapse
Awesome!!
I wonder if anyone knows what happens with Tizen with regards to the rooting process and OTA upgrades?
problem !!
HI guys !!
i'm trying to put the shutter off but in the command prompt that says error msg: target not found do you have an idea to solve this ??
eshake said:
HI guys !!
i'm trying to put the shutter off but in the command prompt that says error msg: target not found do you have an idea to solve this ??
Click to expand...
Click to collapse
I faced the same problem and solved by installing the drivers from here http://down2.local.sec.samsung.com/...load/SAMSUNG_USB_Driver_for_Mobile_Phones.zip
thanks a lot it works great now !!!!!
Thank you so much for this quick and easy tutorial! I feel better that with it rooted it'll be less likely that we'll be caught by a firmware update that doesn't allow us to downgrade to Android should an Android Wear port come out in the future.
i did it kind of . . . t.t
arrggghhh i thought i found a fix but didnt so now i need help t.t
it says device cannot be found trying to slient my camera on GG1 tizen i installed the drivers and all rooted i think? idk how to check although it says it rooted successfully on odin and when i use sdb via cmd it says it cant find the device i tried sdb devices also :<
I would like to know if anyone knows how I can set the time and date on my Gear 2 Neo. All I have is my PC and an iphone. My battery died and now my Gears time is way off. Ive rooted it and paired it with my iphone hoping that the bluetooth pairing would somehow sync times. Im only last hope is maybe a way to do it with my pc rooted or unrooted it dont matter to me Im just tired of seeing the wrong time on my wrist...:silly:
I believe this is what you need to do
noviet said:
I would like to know if anyone knows how I can set the time and date on my Gear 2 Neo. All I have is my PC and an iphone. My battery died and now my Gears time is way off. Ive rooted it and paired it with my iphone hoping that the bluetooth pairing would somehow sync times. Im only last hope is maybe a way to do it with my pc rooted or unrooted it dont matter to me Im just tired of seeing the wrong time on my wrist...:silly:
Click to expand...
Click to collapse
Hi, I fell your pain. This will work for only rooted Gear S2 Neo.
First connect your Gear via USB to your computer.
You would need to use SDB.exe
Go to that folder directory where sdb.exe is located using CMD.
after you are in the right directory type:
Code:
sdb root on
sdb shell
whoami (just to make sure you are root)
date --help (get help instructions for date and time, you can see their instructions)
date --set=08:23:16 (it uses 24 hour format)
date --set=09/21/2016 (this sets your date)
exit
That is all you need to do. Let me know turns out.
3hz3 said:
Hi, I fell your pain. This will work for only rooted Gear S2 Neo.
First connect your Gear via USB to your computer.
You would need to use SDB.exe
Go to that folder directory where sdb.exe is located using CMD.
after you are in the right directory type:
Code:
sdb root on
sdb shell
whoami (just to make sure you are root)
date --help (get help instructions for date and time, you can see their instructions)
date --set=08:23:16 (it uses 24 hour format)
date --set=09/21/2016 (this sets your date)
exit
That is all you need to do. Let me know turns out.
Click to expand...
Click to collapse
thx for tip, as my watches somehow know correct date and time but have bad timezone, I would recommend to change just timezone file pointing with symlink /opt/etc/localtime
Code:
sdb root on
sdb shell
rm -f /opt/etc/localtime
ln -sf /usr/share/zoneinfo/Europe/Amsterdam /opt/etc/localtime
reboot
Hello guys im new to these forums an did not know where to post at, i got a coolpad defiant (Not the best phone) an i wanted to root it and was seeing if anyone here maybe able to help me out?? ive tried to use kingRoot but not luck on using that method if anyone got any suggestions id really like that, thanks again!
rebz408 said:
Hello guys im new to these forums an did not know where to post at, i got a coolpad defiant (Not the best phone) an i wanted to root it and was seeing if anyone here maybe able to help me out?? ive tried to use kingRoot but not luck on using that method if anyone got any suggestions id really like that, thanks again!
Click to expand...
Click to collapse
Any luck?
Thank you very much
Jayfreshh said:
Any luck?
Click to expand...
Click to collapse
Did you ever find anything for this device?
remarkablecow913 said:
Did you ever find anything for this device?
Click to expand...
Click to collapse
Nothing as yet still searching, need to do some work on the phone but nothing to start with ?
Jayfreshh said:
Nothing as yet still searching, need to do some work on the phone but nothing to start with ?
Click to expand...
Click to collapse
I know. I can't find Any resources for this phone. I might get brave And see if I can find twrp for same chipset and try.
---------- Post added at 04:24 AM ---------- Previous post was at 04:23 AM ----------
remarkablecow913 said:
I know. I can't find Any resources for this phone. I might get brave And see if I can find twrp for same chipset and try.
Click to expand...
Click to collapse
Have you tried unlocking bootloader? That's probly most important. If it's locked there is no point tying
remarkablecow913 said:
I know. I can't find Any resources for this phone. I might get brave And see if I can find twrp for same chipset and try.
---------- Post added at 04:24 AM ---------- Previous post was at 04:23 AM ----------
Have you tried unlocking bootloader? That's probly most important. If it's locked there is no point tying
Click to expand...
Click to collapse
Okay if anything works out when you try let me know
The bootloader can be opened in developer mode for this devise if I'm correct
You can unlock bootloader in developer options but from there. I'm stuck and really want to get root and see what "deleted" files I can recover from a factory reset. Anybody ever try twrp for same chipset like someone was talking about doing?
rebz408 said:
Hello guys im new to these forums an did not know where to post at, i got a coolpad defiant (Not the best phone) an i wanted to root it and was seeing if anyone here maybe able to help me out?? ive tried to use kingRoot but not luck on using that method if anyone got any suggestions id really like that, thanks again!
Click to expand...
Click to collapse
[Update Anyone?]
I picked up a Coolpad 3632a yesterday and I've been trying to ROOT it for quite a while nowl; trying Kingroot v5.3.7 without PC, and KingRoot 3.5 on PC both failed to ROOT. I've been out of the loop for quite a while regarding Android devices and OS - the last Android Phone i owned was the LG G3 if i remember correctly. According to the available info I've found searching for Rooting Options for the coolpad 3632a it all seemed almost %100 easily rootable with or without PC mainly using Kingroot.
If anyone was successful in rooting this device (Coolpad 3632a / Android 7.1.1) - please let me know, my main goal is to find a good custom ROM and load it replacing the Bloat/Malware filled phone!
Thanks again to anyone who has taken the time to read and respond with any news (good or bad) on getting this device successfully rooted.
-=Mac3lite=-
Bootloader Unlock = Not happening on this device. At least yet.
Development = Absolutely none. Means no TWRP/ROMS etc.
Root = Nothing as of 10/10/2018.
phonecapone said:
Bootloader Unlock = Not happening on this device. At least yet.
Development = Absolutely none. Means no TWRP/ROMS etc.
Root = Nothing as of 10/10/2018.
Click to expand...
Click to collapse
EDIT: I just obtained temporary root.. seeing if it sticks.
Root for Coolpad Devices
NOTE: I have not tried this on your device but I have tried it on my Coolpad Mega 2.5 D , Coolpad Mega 3 and Coolpad Note 5 lite. You might try to see if this works on your Coolpad Device.
Requirements :
A working ADB setup
Procedureownload the Given Zip File and Extract Them in a folder.
CONNECT YOUR DEVICE TO PC
ALLOW USB DEBUGGING IN DEVELOPER SETTINGS:
OPEN THE FOLDER WHERE YOU EXTRACTED THE FILES AND RUN CMD.BAT
COPY AND PASTE THESE CODES ONE BY ONE IN ADB ....
Or RUN THE SCRIPT IN THE GIVEN FILE
Quote:
adb wait-for-device
Quote:
adb install magisksu.apk
Quote:
adb install rootcheck.apk
Quote:
adb install root.apk
Quote:
adb shell monkey -p com.yulong.openrp -v 500
Quote:
adb reboot
WAIT TILL THE DEVICE BOOTS
OPEN MAGISK APP & COPY AND PASTE THIS CODE :
Quote:
adb shell mount -o remount,rw /system
NOW :
Quote:
adb push magisk /system/bin
IF SUCCESSFUL, TYPE:
Quote:
adb shell magisk su
RUN THIS COMMAND AFTER EVERY REBOOT TO AGAIN GET ROOT ;
Quote:
adb shell magisk su
OR
Update magisk for permanent root.
Download::::::::
https://drive.google.com/file/d/1e1atRg7PQ2JyI8W88g1E9L9NihdGEjqO/view?usp=drivesdk
Yeah that's already what I tried previous to your post. Had zero luck. =/ Also after that point forward for some reason when i try to fastboot i cannot issue any commands and it displays "Secure Phone" at the bottom left of the screen. Whether or not it was due to this I do not know for certain.
phonecapone said:
Yeah that's already what I tried previous to your post. Had zero luck. =/ Also after that point forward for some reason when i try to fastboot i cannot issue any commands and it displays "Secure Phone" at the bottom left of the screen. Whether or not it was due to this I do not know for certain.
Click to expand...
Click to collapse
Does fastboot detect your device ? Or just the commands fail even after detection ?
Also , when your phone boots , does MTKlogger automatically start ?
dwaipayan774 said:
Does fastboot detect your device ? Or just the commands fail even after detection ?
Also , when your phone boots , does MTKlogger automatically start ?
Click to expand...
Click to collapse
It gets detected just the commands fail. There is a white "Secure Phone" line of text across the bottom left. Im going to try loading an sdcard to see if it will auto update anything.
I can't even use Flash Programmer in QFIL or many other apps in QDLOADER 9008 mode. I know the firehose is the correct one yet it never wants to boot. I don't know why.
MTKLogger might have before unless i'm thinking of a different handset here. But as of the moment it doesn't.
No luck with the sdcard. I think it's about time to factory reset this device and put it up for sale. I'll post the firmware here shortly.
Here is the firmware - https://forum.xda-developers.com/android/general/rom-coolpad-defiant-3632a-stock-t3855692
Temporary Root
phonecapone said:
Bootloader Unlock = Not happening on this device. At least yet.
Development = Absolutely none. Means no TWRP/ROMS etc.
Root = Nothing as of 10/10/2018.
Click to expand...
Click to collapse
What did you do? I've been trying for months now.
dwaipayan774 said:
NOTE: I have not tried this on your device but I have tried it on my Coolpad Mega 2.5 D , Coolpad Mega 3 and Coolpad Note 5 lite. You might try to see if this works on your Coolpad Device.
Requirements :
A working ADB setup
Procedureownload the Given Zip File and Extract Them in a folder.
CONNECT YOUR DEVICE TO PC
ALLOW USB DEBUGGING IN DEVELOPER SETTINGS:
OPEN THE FOLDER WHERE YOU EXTRACTED THE FILES AND RUN CMD.BAT
COPY AND PASTE THESE CODES ONE BY ONE IN ADB ....
Or RUN THE SCRIPT IN THE GIVEN FILE
Quote:
adb wait-for-device
Quote:
adb install magisksu.apk
Quote:
adb install rootcheck.apk
Quote:
adb install root.apk
Quote:
adb shell monkey -p com.yulong.openrp -v 500
Quote:
adb reboot
WAIT TILL THE DEVICE BOOTS
OPEN MAGISK APP & COPY AND PASTE THIS CODE :
Quote:
adb shell mount -o remount,rw /system
NOW :
Quote:
adb push magisk /system/bin
IF SUCCESSFUL, TYPE:
Quote:
adb shell magisk su
RUN THIS COMMAND AFTER EVERY REBOOT TO AGAIN GET ROOT ;
Quote:
adb shell magisk su
OR
Update magisk for permanent root.
Download::::::::
https://drive.google.com/file/d/1e1atRg7PQ2JyI8W88g1E9L9NihdGEjqO/view?usp=drivesdk
Click to expand...
Click to collapse
Any chance on a repost of the file?
dwaipayan774 said:
Root for Coolpad Devices
NOTE: I have not tried this on your device but I have tried it on my Coolpad Mega 2.5 D , Coolpad Mega 3 and Coolpad Note 5 lite. You might try to see if this works on your Coolpad Device.
Requirements :
A working ADB setup
Procedureownload the Given Zip File and Extract Them in a folder.
CONNECT YOUR DEVICE TO PC
ALLOW USB DEBUGGING IN DEVELOPER SETTINGS:
OPEN THE FOLDER WHERE YOU EXTRACTED THE FILES AND RUN CMD.BAT
COPY AND PASTE THESE CODES ONE BY ONE IN ADB ....
Or RUN THE SCRIPT IN THE GIVEN FILE
Quote:
adb wait-for-device
Quote:
adb install magisksu.apk
Quote:
adb install rootcheck.apk
Quote:
adb install root.apk
Quote:
adb shell monkey -p com.yulong.openrp -v 500
Quote:
adb reboot
WAIT TILL THE DEVICE BOOTS
OPEN MAGISK APP & COPY AND PASTE THIS CODE :
Quote:
adb shell mount -o remount,rw /system
NOW :
Quote:
adb push magisk /system/bin
IF SUCCESSFUL, TYPE:
Quote:
adb shell magisk su
RUN THIS COMMAND AFTER EVERY REBOOT TO AGAIN GET ROOT ;
Quote:
adb shell magisk su
OR
Update magisk for permanent root.
Download::::::::
https://drive.google.com/file/d/1e1atRg7PQ2JyI8W88g1E9L9NihdGEjqO/view?usp=drivesdk
Click to expand...
Click to collapse
hey the link is dead. could you make a new link?