Android
Android

Reputation: 171

adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system Operation not permitted

i have put this command but facing this problem

Operation not permitted

 adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system  

and this error is shown

Operation not permitted

Upvotes: 2

Views: 23694

Answers (3)

suraj209
suraj209

Reputation: 21

If you have rooted phone then go to terminal and hit the below command to get all access

mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

This helped me

Upvotes: 0

luckykaa
luckykaa

Reputation: 166

What I found worked for me on a rooted device

adb shell

su

abd mount -o remount,rw {whatever options you want}

su didn't ask for a password

Upvotes: 0

triclosan
triclosan

Reputation: 5714

You have to be a root to remount /system.

Check is this true by id command.

I guess you have only permissions of user-shell

add If you are really root - you may try adb remount command. This command is exactly what you are looking for.

Upvotes: 1

Related Questions