Malin Freeborn
ba8026e0c3
input examples are now given as ```bash input $ARG1 ``` While outputs use md's '> ' sign as a quote.
41 lines
379 B
Markdown
41 lines
379 B
Markdown
---
|
|
title: "android"
|
|
tags: [ "Documentation", "System" ]
|
|
---
|
|
# mtpfs
|
|
|
|
## Start
|
|
|
|
Install:
|
|
|
|
```bash
|
|
yay -S simple-mtpfs
|
|
```
|
|
|
|
List available phones:
|
|
|
|
```bash
|
|
simple-mtpfs -l
|
|
```
|
|
|
|
Make a mount point:
|
|
|
|
```bash
|
|
mkdir phone
|
|
```
|
|
|
|
Check your phone, and tell it to allow access to the USB.
|
|
|
|
```bash
|
|
simple-mtpfs --device 1 phone
|
|
```
|
|
|
|
## Stop
|
|
|
|
```bash
|
|
fusermount -u phone
|
|
rmdir phone
|
|
```
|
|
|
|
|