lk/system/android.md
2025-02-11 13:21:05 +01:00

41 lines
388 B
Markdown

---
title: "android"
tags: [ "Documentation", "System", "phone" ]
---
# 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
```