refactoring and cleanup

This commit is contained in:
2023-05-19 08:07:36 +02:00
parent 24f2758f16
commit 9c96a4e12a
33 changed files with 50 additions and 42 deletions

40
content/nerdstuff/mail.md Normal file
View File

@ -0,0 +1,40 @@
---
title: Mail
menu:
main:
parent: Nerdstuff
---
Stuff to know about mail
## Fetchmail
```
fetchmail pop.gmx.net --ssl --verbose --username _username_ --protocol pop3
```
## SMTP via Telnet
### query MX record (mailserver)
```sh
dig mx br0tkasten.de
```
### connect to mailservice @ mailserver
```sh
telnet mail.br0tkasten.de 25
```
### send testmail
```SMTP
ehlo barbecue.com
MAIL FROM: root@barbecue.com
RCPT TO: info@br0tkasten.de
DATA
Subject: Bla fasel
Das ist eine Testmail
.
QUIT
```

View File

@ -0,0 +1,21 @@
---
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
```