hi every one
i am actually looking for your help guys with streak 7
i want to copy some files from sdcard to system using ADB
i used to do the fllowing for streak 5
adb shell
su
stop
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/lib/* /system/lib/
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
sync
reboot
but when i tried it with streak 7 its fail no luck ????
sorry for my poor english
All you need is
Adb pull /mnt/sdcard/location_of_file
Or
Adb pull /mnt/sdcard2/location_of_file
Sent from my Dell Streak 7 using XDA Premium App
the file is going to be in your adb tools folder
Sent from my Dell Streak 7 using XDA Premium App
Related
I'm trying to copy a Camera.apk from my sdcard into the /system/app/
so far this is what i've come up with and I get an error saying I don't have the permission to Change the original Camera.apk:
su
cp /sdcard/Camera.apk /system/app/
reboot
Can somebody please help me with this? I just switched from Win7 to Linux and I realized that using the terminal emulator might be the fastest way to do this without installing the sdk.
http://forum.xda-developers.com/showpost.php?p=4900207&postcount=1
Use the mount line from this thread:
$ su
# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
that should work..
Thank you
thatdudebill said:
Thank you
Click to expand...
Click to collapse
Assuming it worked?
No problem man, welcome to the rooting world.
I know this works for mounting the system
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
but whats the string for mounting the /data ?
either in adb or terminal emulator
Yes I have/am searched/ing.....
Thank to whom ever can answer
type remount and look for the data in adb it should list off strings
more clarity please. Trying a bunch of options still getting acces denided and operation not permitted
If it helps I cant even adb shell then su.
Yes I am rooted
Yes my phone is in pc mode
bad4u6669 said:
I know this works for mounting the system
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
but whats the string for mounting the /data ?
either in adb or terminal emulator
Yes I have/am searched/ing.....
Thank to whom ever can answer
Click to expand...
Click to collapse
Try
su
mount -o rw,remount -t ext3 /dev/block/userdata /data
Sent from my DROIDX using XDA App
drew630 said:
Try
su
mount -o rw,remount -t ext3 /dev/block/userdata /data
Sent from my DROIDX using XDA App
Click to expand...
Click to collapse
Finally got a chance to test it last night, and it worked! thanks!
How do you do it? Just same as adb push? Or any special way? Don't wanna get stuck to bootloader again.....
Sent from my DROIDX using XDA App
I just do this
Code:
adb push services.jar /sdcard/
adb shell
su
mount -o rw,remount -t ext3 /dev/block/userdata /data
cp /sdcard/services.jar /system/framework/services.jar
mount -o ro,remount -t ext3 /dev/block/userdata /data
reboot
What is the command to remount the phone? I might have something everyone might like. :3
Adb shell mount is "mount -o rw,remount -t yaffs2 /dev/block/mtdblock12 /system" no quotes of course
Sent from my VS910 4G using XDA Premium App
mtmichaelson said:
Adb shell mount is "mount -o rw,remount -t yaffs2 /dev/block/mtdblock12 /system" no quotes of course
Sent from my VS910 4G using XDA Premium App
Click to expand...
Click to collapse
Well thank you! We might have a new root method. PM me and you can test it.
Well considering this post is a day or so old now I would love to know if you found a new rooting method? And is this for post patch or before it?
mtmichaelson said:
Adb shell mount is "mount -o rw,remount -t yaffs2 /dev/block/mtdblock12 /system" no quotes of course
Sent from my VS910 4G using XDA Premium App
Click to expand...
Click to collapse
Nope-- we don't use yaffs2 on this phone, change that to "ext3".
Also, a shorter version is just "adb shell mount -o remount,rw /system". No need to specify the filesystem type if it's in fstab.
I have a rooted Nexus 7 running the Eclipse custom ROM. Somehow, I cannot mount file system for R/W using "mount/system (rw/ro)" app nor using ADB method. I'm not getting any error from the mount/remount, but I still read only file warnings. I don't have any problem getting the R/W right on Nexus phone using the same way I described. I'll appreciate your help.
Code:
$ su
# mount -o remount, rw /system
???
korockinout13 said:
Code:
$ su
# mount -o remount, rw /system
???
Click to expand...
Click to collapse
I have no problem executing commands you listed, but read only.