2023-05-19 08:07:36 +02:00

22 lines
529 B
Markdown

---
title: tiptoi
menu:
main:
parent: Nerdstuff
---
# 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
```