Linux和Android之间的网络文件共享

Linux和Android之间的网络文件共享

我想与我的 Android 手机共享外部硬盘的内容。

在过去的两个小时里,我一直在尝试正确设置 Samba - 这绝对是可怕的。

必须有另一种更简单的方法来通过 (W)LAN 设置文件共享,因为在充满敌意和未知的环境中学习 200 个新的 shell 命令绝对不是我想浪费时间的事情。

FTP 之类的东西是我的解决方案吗?

答案1

对于偶尔的文件共享WOOF(网络报价一个文件)。 Woof 使用起来很简单。它通过 HTTP 提供文件,还允许上传文件。这是用法:

 Usage: woof [-i <ip_addr>] [-p <port>] [-c <count>] <file>
           woof [-i <ip_addr>] [-p <port>] [-c <count>] [-z|-j|-Z|-u] <dir>
           woof [-i <ip_addr>] [-p <port>] [-c <count>] -s
           woof [-i <ip_addr>] [-p <port>] [-c <count>] -U

提供文件:

$ woof filename

您可以通过包含该开关来控制是否允许下载/上传文件-U。所需要的只是一个可以与之交互的浏览器woof

例子

$ woof Software\ Development\ Guide.docx
Now serving on http://192.168.1.20:8080/Software%20Development%20Guide.docx

相关内容