S sigster Active Member Licensed User Longtime User Oct 11, 2012 #1 Hi I need to send file to "/system/usr/keylayout/" have anyone try it need tips Please I have ASUS transformer TF101 and was thinking to send file to /system/usr/keylayout/ This is what I was thinking about my ASUS hardware keyboard don't have my language so I need to change the files [MOD][HOWTO] Adjust your hardware keyboard's default language - xda-developers Regards Sigster
Hi I need to send file to "/system/usr/keylayout/" have anyone try it need tips Please I have ASUS transformer TF101 and was thinking to send file to /system/usr/keylayout/ This is what I was thinking about my ASUS hardware keyboard don't have my language so I need to change the files [MOD][HOWTO] Adjust your hardware keyboard's default language - xda-developers Regards Sigster
Erel B4X founder Staff member Licensed User Longtime User Oct 11, 2012 #2 Do you want to copy a file to that folder? This will only be possible with a rooted device. Upvote 0
S sigster Active Member Licensed User Longtime User Oct 11, 2012 #3 This is the folder and the file I need to copy to this folder well when I am finished to modify the file into my language I am finish to root my Tab /system/usr/keylayout /system/usr/xt9/keylayout asusec.kcm asusec.kl this is better url about this how to change the keyboard Change the dock keyboard layout Regards Sigster Upvote 0
This is the folder and the file I need to copy to this folder well when I am finished to modify the file into my language I am finish to root my Tab /system/usr/keylayout /system/usr/xt9/keylayout asusec.kcm asusec.kl this is better url about this how to change the keyboard Change the dock keyboard layout Regards Sigster
Erel B4X founder Staff member Licensed User Longtime User Oct 11, 2012 #4 Do you get an error when you try to copy this file with File.Copy? Upvote 0
S sigster Active Member Licensed User Longtime User Oct 11, 2012 #5 I am gone try File.Copy to night I am not at home in the moment Upvote 0
S sigster Active Member Licensed User Longtime User Oct 13, 2012 #6 Hi I am almost done with the file I need to send to system folder Can I copy the file to the folder with b4a without rooted device or is it no poseble Like 1. mount -o remount,rw /system 2 copy the file ! Regards Sigster Upvote 0
Hi I am almost done with the file I need to send to system folder Can I copy the file to the folder with b4a without rooted device or is it no poseble Like 1. mount -o remount,rw /system 2 copy the file ! Regards Sigster
Erel B4X founder Staff member Licensed User Longtime User Oct 14, 2012 #7 Did you try to copy it? Do you get an error message? Upvote 0
S sigster Active Member Licensed User Longtime User Oct 14, 2012 #8 Hi I use Shell command copy sample from this forum and it work well I can copy the file but if I try this File.Copy(File.DirAssets,"asource.txt",File.DirInternal,"asource.txt") File.Copy(File.DirInternal,"asource.txt","/system/usr/keylayout/","asource.txt") I get this error java.io.FileNotFoundException: /system/usr/keylayout/asource.tx Open failed: EACCES ( Permission denied) Regards Sigster Last edited: Oct 14, 2012 Upvote 0
Hi I use Shell command copy sample from this forum and it work well I can copy the file but if I try this File.Copy(File.DirAssets,"asource.txt",File.DirInternal,"asource.txt") File.Copy(File.DirInternal,"asource.txt","/system/usr/keylayout/","asource.txt") I get this error java.io.FileNotFoundException: /system/usr/keylayout/asource.tx Open failed: EACCES ( Permission denied) Regards Sigster
Erel B4X founder Staff member Licensed User Longtime User Oct 14, 2012 #9 In that case, you will need to use the Shell solution. Upvote 0
S sigster Active Member Licensed User Longtime User Oct 14, 2012 #10 Hi I use sample from m0narX to run shell command http://www.b4x.com/forum/basic4andr...nning-shell-commands-superuser.html#post39820 I send = mount -o remount,rw /system with the shell sample then I use with no error and it ok I can send the file to the folder /system/usr/keylayout/ File.Copy(File.DirAssets,"asource.txt",File.DirInternal,"asource.txt") File.Copy(File.DirInternal,"asource.txt","/system/usr/keylayout/","asource.txt") Regards Sigster Upvote 0
Hi I use sample from m0narX to run shell command http://www.b4x.com/forum/basic4andr...nning-shell-commands-superuser.html#post39820 I send = mount -o remount,rw /system with the shell sample then I use with no error and it ok I can send the file to the folder /system/usr/keylayout/ File.Copy(File.DirAssets,"asource.txt",File.DirInternal,"asource.txt") File.Copy(File.DirInternal,"asource.txt","/system/usr/keylayout/","asource.txt") Regards Sigster