Tag Archives: Linux

Erase ESP – quickly reset the wifi chip

TLDR: Install esptool.py pip3 install esptool Erase flash of the esp esptool.py — erase_flash One of my smart ESP devices wasn’t responding after a power down. I debugged the problem by connecting it to a serial interface. On the comandline … Continue reading

Posted in Technik | Tagged , , , , , , | Leave a comment

How to get a process list if you can’t fork any processes?

Recently I got the question what to do if one got a bash session but can’t fork processes on a Linux system. So here is an attempt to get a processlist just by using bash buildins: OLDPWD=$PWD cd /proc for … Continue reading

Posted in Pastes, Technik | Tagged , , , | Leave a comment

[ Sabredav ] Kalender und Kontakte in Sync mit Caldav und Carddav

Mal wieder das alte Leid, Syncronisation. Heutige Episode: Calendar Sync und Contact Sync. So etwas wie iCloud oder Google Calendar bzw Google Contacts, aber die Daten bitte beim Besitzer lassen. Clients: Android Telefon, Linux& Mac Desktop (theoretisch sollte auch iPhone … Continue reading

Posted in Synchronsiation, Technik | Tagged , , , , , , , , , , , , , , , , , | 12 Comments

Sparkleshare – der lange Ersehnte Datei sync

Pretext: Lange schon Suche ich nach einem Tool, dass es ermöglicht Dateien über mehrere Computer hinweg zu synchronisiern. Quasi etwas wie Dropbox, allerding mit der Möglichkeit die Daten auf dem eigenen Server abzulegen. Dies ist deshalb für mich wichtig, da … Continue reading

Posted in Allgemein, Synchronsiation, Technik | Tagged , , , , , , | 15 Comments

SWAP File / SWAP Partition im Betrieb vergrößern

Kürzlich stand ich vor dem Problem, mein SWAP-File (bzw. SWAP-Partition) vergrößern zu wollen. Also auf gehts: Erstmal den alten SWAP unmounten: sudo swapoff -a Und jetzt neuen Platz anlegen: dd if=/dev/zero of=/swapfile bs=1M count=1024 #für eine ein GB großes swapfile … Continue reading

Posted in Allgemein, out of my life, Pastes, Technik, Uncategorized | Tagged , , , , | 1 Comment