https://play.google.com/store/apps/deta ... roid&hl=it
It work very well, but to have it working you must disable selinux. From terminal emulator:
su
setenforce 0
If you need a more generic way to transfer files over wifi i suggest the app Wifi file transfer
https://play.google.com/store/apps/deta ... letransfer
If you need to mount a network share into the filesystem, you can use this CifsManager app http://forum.xda-developers.com/showpos ... tcount=537 that under the hood use "su --mount-master -c" instead of "mount" otherwise from terminal:
su
Code: Select all
su --mount-master -c mount -t cifs -o rw,username=your_username,password=your_password,file_mode=0777,dir_mode=0777 //192.168.xxx.xxx/your_share /data/media/0/your_share
-- Attention to /data/media/0/ and not others folders
-- to mount my smb share on my router i added also the parameter sec=ntlm
https://youtu.be/XXvgqbJl-Dg
In additions to the others millions ways that you already know.
With root you can do everything, you don't need to wait update of the manufacturer for basic functionalities.