Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

74 total results found

Cheatsheets

IT und Technik

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

Linux

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

Linux Debian

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

Linux Vi(m)

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

Linux

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)

Wiki Spiele

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

Linux

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

Linux

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

Linux Festplattenverwaltung

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

IT und Technik Strato

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 -&gt...

Cryptsetup mit LUKS - Festplattenverschlüsselung

Linux Festplattenverwaltung

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

Linux Festplattenverwaltung

Grundlagen Quelle: https://www.thomas-krenn.com/de/wiki/LVM_Grundlagen Vorgehensweise Quelle: https://www.howtoforge.com/linux_lvm  

Software RAID - mdadm

Linux Festplattenverwaltung

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

Linux

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

Linux Festplattenverwaltung

Quelle: http://hermann-mayer.net/blog/raid1-luks-und-lvm-ersetzen-mein-altes-speichersystem  

missing firmware

Linux Debian

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

Linux Debian

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

Linux Debian

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

Linux

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

Linux Debian

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...