https://github.com/jerichofs/transfero
Share files between Android and Linux with the help of the filesystems such as go-mtpfs, jmtpfs, mtpfs via USB.
https://github.com/jerichofs/transfero
android android-device file-transfer fuse fuse-filesystem mtp qt-application qt-gui share
Last synced: 4 months ago
JSON representation
Share files between Android and Linux with the help of the filesystems such as go-mtpfs, jmtpfs, mtpfs via USB.
- Host: GitHub
- URL: https://github.com/jerichofs/transfero
- Owner: jerichofs
- License: gpl-3.0
- Created: 2017-10-31T21:14:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T17:39:26.000Z (over 3 years ago)
- Last Synced: 2025-02-02T02:04:05.405Z (4 months ago)
- Topics: android, android-device, file-transfer, fuse, fuse-filesystem, mtp, qt-application, qt-gui, share
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 7
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
Transfero is a program the purpose of which to unite MTP FUSE filesystems
such as go-mtpfs, jmtpfs, mtpfs into one place and use it with friendly GUI interface.
The program allows you to transfer files between android devices and your local linux machine
via USB by using one or more FUSE filesystems at the same time. The GUI implementation almost
entirely relies on the next works:
* [go-mtpfs](https://github.com/hanwen/go-mtpfs)
* [jmtpfs](https://github.com/kiorky/jmtpfs)
* [mtpfs](https://github.com/cjd/mtpfs)## Requirements
In order for the program to work properly you need to install **mtp-tools** and **PyQt5**. You can do that
by executing the next command:
```
sudo apt-get install mtp-tools
```
To install **PyQt5**```
sudo apt-get install python3-pyqt5
```> **Note:** For correct work, the program also requires **libmtp** to be installed but since **mtp-tools**
> already contains this library it's not necessary to install it apart### If you want to use **go-mtpfs**
You need to install **the Go compiler** and **go-mtpfs** itselfTo install the Go compiler
```
sudo apt-get install golang-go
```To install go-mtpfs
```
sudo apt-get install go-mtpfs
```
### If you want to use **jmtpfs**
You need to install **jmtpfs**To install jmtpfs
```
sudo apt-get install jmtpfs
```
### If you want to use **mtpfs**
You need to install **mtpfs**To install mtpfs
```
sudo apt-get install mtpfs
```> **Note:** You should install all these libraries. If one of them doesn't work you can always use another one
## Install
### PPA
In order to install the program just type in the next commands:
```
sudo add-apt-repository ppa:jerichofs/jaconda
sudo apt-get update
sudo apt-get install transfero
```
## Guide
* Install all requirements
* connect your android device to the computer via USB
* Mount one of the filesystems **go-mtpfs**, **jmtpfs**, **mtpfs**
* in the Tree View in the Android folder you will see your mounted Android storage
* Share files (you can use key arrows left and right on you keyboard to transfer files)> **Note:** All these libraries **does not work properly when the phone is locked by the lockscreen**
> (especially during transfering files). Unlock the phone and it should work again as long as
> the cord remains connected.