2021-11-13 22:02:05 +01:00

21 lines
533 B
Markdown

---
title: tiptoi
date: 2021-11-13T15:06:57Z
draft: false
---
# tiptoi
## Download media files
Goto http://www.tiptoi.com -> Choose book -> "Audiodatei manuell herunterladen"
## Manually mount
When connecting the pen to a computer using a mini USB cable dmesg will show a new storage device (e.g. /dev/sdc). According to '''parted''' partition table is of type '''loop'''. Linux will not show hardware devices to mount the partition (e.g. /dev/sdc1).
To mount the filesystem use:
```
mount -t vfat -o loop,rw /dev/sdc /mnt
```