Advanced Search
Search Results
74 total results found
Cheatsheets
Quelle: http://blog.nashbrooklyn.com/various-web-programming-cheat-sheets/ ALTchars ASP Characters Colourchart CSS Firefox Google HTML JavaScript Jquery 1.2 Colorcharge Jquery 1.3 mod_rewrite MySQL PHP Prototy...
Tmux
Cheatsheet and References 1. https://gist.github.com/MohamedAlaa/2961058 2. https://tmuxcheatsheet.com/ Tmux Guide Quelle: https://linuxize.com/post/getting-started-with-tmux/ Starting Your First Tmux Session To start your first Tmux session, si...
Debian Upgrade auf neuen Release
Quelle: https://www.cyberciti.biz/faq/update-upgrade-debian-9-to-debian-10-buster/ Upgrade Debian 9 to Debian 10 Buster The procedure is as follows: Backup your system. Update existing packages and reboot the Debian 9.x system. Edit the file /etc/apt/sou...
Vi(m) - search and replace
Quelle: https://vim.fandom.com/wiki/Search_and_replace Intro Vim provides the :s (substitute) command for search and replace; this tip shows examples of how to substitute. On some systems, gvim has Find and Replace on the Edit menu (:help :promptrepl), howev...
Remote Desktop
VNCServer Quelle: https://www.raspberrypi.org/forums/viewtopic.php?t=225655#p1385116 /home/user/.vnc/xstartup unset SESSION_MANAGER unset DBUS_SESSION_BUS_ADDRESS startxfce4 & [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/....
Sid Meier's Colonization (1994)
Gründungsväter https://strategywiki.org/wiki/Sid_Meier%27s_Colonization/Founding_Fathers Einheiten https://civilization.fandom.com/wiki/List_of_units_in_Colonization_(1994)
Datenaustausch mit Smartphone
Benötigte Pakete: gvfs:amd64 gvfs-backends gvfs-bin gvfs-common gvfs-daemons gvfs-libs:amd64 libmtp-common libmtp-runtime libmtp9 Danach den Dateimanager einmal beenden und wieder öffnen. D...
Bash
Bash-completion root Umgebung einstellen Quelle: https://askubuntu.com/a/156668 In der /root/.bashrc folgendes ans Ende der Datei eintragen: if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi
Festplattenverwaltung - fdisk,lvm,dd
Partitionstabelle kopieren dd if=/dev/sdc of=/dev/sdd bs=512 count=1 Parameter erklärt: if -> input device of -> output device bs -> blocksize count -> Anzahl der Blöcke, die kopiert werden sollen Festplatte vergrößern .. mit LVM Das Programm "fdisk" ...
E-Mail Server Einstellungen für Plesk,DNS
Plesk Docs: https://docs.plesk.com/de-DE/obsidian/administrator-guide/59433/ Serverweite E-Mail-Einstellungen Weg dahin: Tools & Einstellungen -> Mailserver-Einstellungen Domain bezogene E-Mail-Einstellungen Weg dahin: Websites & Domains ->...
Cryptsetup mit LUKS - Festplattenverschlüsselung
Quelle: https://linuxwiki.de/cryptsetup 1. LUKS-Partition initialisieren cryptsetup luksFormat -c aes-cbc-essiv:sha256 -s 256 /dev/sdc1 Ich habe hier z.b. ein RAID1 Device ausgewählt z.b. /dev/md0. Somit ist das gesamte RAID 1 verschlüsselt. 2. LUKS-...
Logical Volume Manager - LVM
Grundlagen Quelle: https://www.thomas-krenn.com/de/wiki/LVM_Grundlagen Vorgehensweise Quelle: https://www.howtoforge.com/linux_lvm
Software RAID - mdadm
Software RAID erstellen http://www.prontosystems.org/tux/software_raid RAID Device umbenennen Quelle: https://serverfault.com/questions/267480/how-do-i-rename-an-mdadm-raid-array Start with mdadm --detail /dev/md127: Version : 0.90 Creation Time :...
initramfs
Fehlermeldung W: initramfs-tools configuration sets RESUME=UUID=xxxxxx-ssss-eeee-rrrr-ttttttttt W: but no matching swap device is available. I: The initramfs will attempt to resume from /dev/sdc2 I: (UUID=aaaaaaaa-bbbb-ssss-rrrr-ggggggggg) I: Set the RESU...
Beispiel - RAID1 - LUKS encryption - LVM
Quelle: http://hermann-mayer.net/blog/raid1-luks-und-lvm-ersetzen-mein-altes-speichersystem
missing firmware
Jeder kennt es, wenn man sich ein Update zieht und diverse Treiber nicht verfügbar sind. Auf dieser Seite will ich zu meinen Fällen Links und Lösungen zeigen wie ich die Herausforderungen lösen konnte. Mein System Ich benutze nur noch Debian als Linux, da e...
Backports
Backports aktivieren Repo für Backports hinterlegen /etc/apt/sources.list.d/backports.list: # buster backports deb http://http.debian.net/debian buster-backports main Danach die Paketverwaltung neu laden: apt-get update Paket aus den Backports installier...
Kernel updaten
Vorbereitungen Backports aktivieren: https://wiki.freakylabs.de/books/linux/page/backports Nach verfügbaren Kernel Versionen suchen apt-cache search linux-image ----- gekürzte Liste ----- linux-headers-4.19.0-10-amd64 - Header files for Linux 4.19.0-10...
Java - openjdk
Openjdk-8 in Debian Buster installieren Quelle: https://stackoverflow.com/questions/57031649/how-to-install-openjdk-8-jdk-on-debian-10-buster/61902164#61902164 Installation steps: Install software source manager apt-get update apt-get install software-...
Paket selber bauen - dpkg-buildpackage
Beispiel Paket: libssh2-1 Problem: Debian Buster -> Saltstack Master Anbindung per SSH Key an Gitlab Vorgehensweise: deb-src http://deb.debian.org/debian/ bullseye main apt-get update apt-get install devscripts debhelper-compat libgcrypt20-dev zli...