我可以在 Android 上实现自己的文件系统吗?
我计划在 Android 上制作一个网络重定向器。我正在考虑使用 FUSE 库来制作它。网络重定向器的服务器将是亚马逊S3或谷歌云存储。
我对安卓很新手。所以,在开始之前,我想检查一些事情。
- 已经有相同的项目了吗?
- Android内核默认有FUSE吗?
- 如果这个项目完成了,能被android market接受吗?
- 我应该使用哪种 FUSE 语言绑定?我可以使用java或python来实现用户模式文件系统吗?
- 挂载网络卷需要root权限吗?是否可以在没有任何黑客攻击或生根的情况下进行安装?
您还可以给我任何其他建议。
I have a plan to make a network redirector on android. I’m considering use a FUSE library to make it. The server of network redirector will be amazon S3 or Google Cloud Storage.
I'm very newbie about android. So, before get started, I'd like to check something.
- Is already there a same project?
- Android kernel has the FUSE by default?
- If this project is completed, can it be accepted by android market?
- What FUSE language binding I should use? Can I use java or python to implement user mode filesystem?
- To mount a network volume needs a root privilege? Is the mounting possible without any hacking or rooting?
You can also give me any other advises.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Fwiw,您无法使用第三方应用程序执行此操作。这需要构建自定义系统映像。
Fwiw you can't do this with a third party application. This requires building a custom system image.
原厂 Android ROM 中未启用 FUSE,因此您无法使用它(即需要自定义 ROM)。
FUSE is not enabled in stock Android ROM so you can't use it (i.e. custom ROM would be needed).