Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johang/btfs
A bittorrent filesystem based on FUSE.
https://github.com/johang/btfs
bittorrent brew btfs debian filesystem fuse libtorrent linux macos osxfuse ubuntu
Last synced: 5 days ago
JSON representation
A bittorrent filesystem based on FUSE.
- Host: GitHub
- URL: https://github.com/johang/btfs
- Owner: johang
- License: gpl-3.0
- Created: 2015-07-26T08:20:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-08-20T18:37:57.000Z (5 months ago)
- Last Synced: 2024-12-31T14:11:51.044Z (12 days ago)
- Topics: bittorrent, brew, btfs, debian, filesystem, fuse, libtorrent, linux, macos, osxfuse, ubuntu
- Language: C++
- Homepage:
- Size: 188 KB
- Stars: 3,900
- Watchers: 56
- Forks: 146
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fuse-fs - btfs - A bittorrent filesystem based on (Built On)
- awesome-peer-to-peer - btfs
- awesome-starred - johang/btfs - A bittorrent filesystem based on FUSE. (ubuntu)
- awesome-peer-to-peer - btfs
- starred-awesome - btfs - A bittorrent filesystem based on FUSE. (C++)
README
# BTFS (bittorrent filesystem)
## What is this?
With BTFS, you can mount any **.torrent** file or **magnet link** and then use it as any read-only directory in your file tree. The contents of the files will be downloaded on-demand as they are read by applications. Tools like **ls**, **cat** and **cp** works as expected. Applications like **vlc** and **mplayer** can also work without changes.
## Example usage
$ mkdir mnt
$ btfs video.torrent mnt
$ cd mnt
$ vlc video.mp4To unmount and shutdown:
$ fusermount -u mnt
## Installing on Debian/Ubuntu
# apt-get install btfs
## Installing on Arch Linux
# pacman -S btfs
## Installing on Gentoo
# emerge -av btfs
## Installing on Fedora# dnf install fuse-btfs
## Installing on Fedora OSTree$ rpm-ostree install fuse-btfs
## OpenSUSE# zypper install btfs
## Installing on macOSUse [`brew`](https://brew.sh) to install on macOS.
$ brew install btfs
## Dependencies (on Linux)
* fuse ("fuse" in Ubuntu 16.04)
* libtorrent ("libtorrent-rasterbar8" in Ubuntu 16.04)
* libcurl ("libcurl3" in Ubuntu 16.04)## Building from git on a recent Debian/Ubuntu
$ sudo apt-get install autoconf automake libfuse-dev libtorrent-rasterbar-dev libcurl4-openssl-dev g++
$ git clone https://github.com/johang/btfs.git btfs
$ cd btfs
$ autoreconf -i
$ ./configure
$ makeAnd optionally, if you want to install it:
$ make install
## Building on macOS
Use [`brew`](https://brew.sh) to get the dependencies.
$ brew install Caskroom/cask/osxfuse libtorrent-rasterbar autoconf automake pkg-config
$ git clone https://github.com/johang/btfs.git btfs
$ cd btfs
$ autoreconf -i
$ ./configure
$ makeAnd optionally, if you want to install it:
$ make install