mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
PRF:20180525 A Bittorrent Filesystem Based On FUSE.md
@geekpi
This commit is contained in:
parent
f4992eb37e
commit
65a5a71996
@ -2,66 +2,65 @@
|
|||||||
======
|
======
|
||||||
|
|
||||||
![](https://www.ostechnix.com/wp-content/uploads/2018/05/Bittorrent-720x340.png)
|
![](https://www.ostechnix.com/wp-content/uploads/2018/05/Bittorrent-720x340.png)
|
||||||
Bittorrent 已经存在了很长时间,它可以从互联网上共享和下载数据。市场上有大量的 GUI 和 CLI 的 Bittorrent 客户端。有时,你不能坐下来等待你的下载完成。你可能想要立即观看内容。这就是 **BTFS**这个不起眼的文件系统派上用场的地方。使用 BTFS,你可以将种子文件或磁力链接挂载为目录,然后在文件树中作为只读目录。这些文件的内容将在程序读取时按需下载。由于 BTFS 在 FUSE 之上运行,因此不需要干预 Linux 内核。
|
|
||||||
|
|
||||||
## BTFS – 基于 FUSE 的 Bittorrent 文件系统
|
Bittorrent 已经存在了很长时间,它可以从互联网上共享和下载数据。市场上有大量的 GUI 和 CLI 的 Bittorrent 客户端。有时,你不能坐下来等待你的下载完成。你可能想要立即观看内容。这就是 **BTFS** 这个不起眼的文件系统派上用场的地方。使用 BTFS,你可以将种子文件或磁力链接挂载为目录,然后在文件树中作为只读目录。这些文件的内容将在程序读取时按需下载。由于 BTFS 在 FUSE 之上运行,因此不需要干预 Linux 内核。
|
||||||
|
|
||||||
### 安装 BTFS
|
### 安装 BTFS
|
||||||
|
|
||||||
BTFS 存在于大多数 Linux 发行版的默认参仓库中。
|
BTFS 存在于大多数 Linux 发行版的默认仓库中。
|
||||||
|
|
||||||
在 Arch Linux 及其变体上,运行以下命令来安装 BTFS。
|
在 Arch Linux 及其变体上,运行以下命令来安装 BTFS。
|
||||||
|
|
||||||
```
|
```
|
||||||
$ sudo pacman -S btfs
|
$ sudo pacman -S btfs
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
在Debian、Ubuntu、Linux Mint 上:
|
在Debian、Ubuntu、Linux Mint 上:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ sudo apt-get install btfs
|
$ sudo apt-get install btfs
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
在 Gentoo 上:
|
在 Gentoo 上:
|
||||||
|
|
||||||
```
|
```
|
||||||
# emerge -av btfs
|
# emerge -av btfs
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
BTFS 也可以使用 [**Linuxbrew**][1] 包管理器进行安装。
|
BTFS 也可以使用 [Linuxbrew][1] 包管理器进行安装。
|
||||||
|
|
||||||
```
|
```
|
||||||
$ brew install btfs
|
$ brew install btfs
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### 用法
|
### 用法
|
||||||
|
|
||||||
BTFS 的使用非常简单。你所要做的就是找到 .torrent 文件或磁力链接,并将其挂载到一个目录中。种子文件或磁力链接的内容将被挂载到你选择的目录内。当一个程序试图访问该文件进行读取时,实际的数据将按需下载。此外,像 **ls** 、**cat** 和 **cp**这样的工具能按照预期的方式来操作种子。像 **vlc** 和 **mplayer** 这样的程序也可以不加修改地工作。玩家甚至不知道实际内容并非物理存在于本地磁盘中,而是根据需要从 peer 中收集。
|
BTFS 的使用非常简单。你所要做的就是找到 .torrent 文件或磁力链接,并将其挂载到一个目录中。种子文件或磁力链接的内容将被挂载到你选择的目录内。当一个程序试图访问该文件进行读取时,实际的数据将按需下载。此外,像 `ls` 、`cat` 和 `cp` 这样的工具能按照预期的方式来操作种子。像 `vlc` 和 `mplayer` 这样的程序也可以不加修改地工作。玩家甚至不知道实际内容并非物理存在于本地磁盘中,而是根据需要从 peer 中收集。
|
||||||
|
|
||||||
创建一个目录来挂载 torrent/magnet 链接:
|
创建一个目录来挂载 torrent/magnet 链接:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ mkdir mnt
|
$ mkdir mnt
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
挂载 torrent/magnet 链接:
|
挂载 torrent/magnet 链接:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ btfs video.torrent mnt
|
$ btfs video.torrent mnt
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
[![][2]][3]
|
![][3]
|
||||||
|
|
||||||
cd 到目录:
|
cd 到目录:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ cd mnt
|
$ cd mnt
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
然后,开始观看!
|
然后,开始观看!
|
||||||
|
|
||||||
```
|
```
|
||||||
$ vlc <path-to-video.mp4>
|
$ vlc <path-to-video.mp4>
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
给 BTFS 一些时间来找到并获取网站 tracker。一旦加载了真实数据,BTFS 将不再需要 tracker。
|
给 BTFS 一些时间来找到并获取网站 tracker。一旦加载了真实数据,BTFS 将不再需要 tracker。
|
||||||
@ -69,9 +68,9 @@ $ vlc <path-to-video.mp4>
|
|||||||
![][4]
|
![][4]
|
||||||
|
|
||||||
要卸载 BTFS 文件系统,只需运行以下命令:
|
要卸载 BTFS 文件系统,只需运行以下命令:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ fusermount -u mnt
|
$ fusermount -u mnt
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
现在,挂载目录中的内容将消失。要再次访问内容,你需要按照上面的描述挂载 torrent。
|
现在,挂载目录中的内容将消失。要再次访问内容,你需要按照上面的描述挂载 torrent。
|
||||||
@ -82,8 +81,6 @@ BTFS 会将你的 VLC 或 Mplayer 变成爆米花时间。挂载你最喜爱的
|
|||||||
|
|
||||||
干杯!
|
干杯!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
via: https://www.ostechnix.com/btfs-a-bittorrent-filesystem-based-on-fuse/
|
via: https://www.ostechnix.com/btfs-a-bittorrent-filesystem-based-on-fuse/
|
||||||
@ -91,7 +88,7 @@ via: https://www.ostechnix.com/btfs-a-bittorrent-filesystem-based-on-fuse/
|
|||||||
作者:[SK][a]
|
作者:[SK][a]
|
||||||
选题:[lujun9972](https://github.com/lujun9972)
|
选题:[lujun9972](https://github.com/lujun9972)
|
||||||
译者:[geekpi](https://github.com/geekpi)
|
译者:[geekpi](https://github.com/geekpi)
|
||||||
校对:[校对者ID](https://github.com/校对者ID)
|
校对:[wxy](https://github.com/wxy)
|
||||||
|
|
||||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user