<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://andev.de/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://andev.de/wiki/feed.php">
        <title>AnDev Wiki</title>
        <description></description>
        <link>https://andev.de/wiki/</link>
        <image rdf:resource="https://andev.de/wiki/_media/logo.png" />
       <dc:date>2026-05-02T16:35:19+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://andev.de/wiki/notizen/git?rev=1775817753&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/debian?rev=1771487309&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/homelab?rev=1762410106&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/proxmox?rev=1762265603&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/docker?rev=1749710989&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/notizen/thunderbird?rev=1741273124&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/ssh?rev=1738837263&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/domoticz?rev=1732111230&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/notizen/firefox?rev=1716376111&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/subl?rev=1715848390&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/neofetch?rev=1715605994&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/shell?rev=1714118320&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/befehle?rev=1714118311&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/mint?rev=1712225859&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/notes/hardware/system-benchmarks?rev=1711174372&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/linux/rsync?rev=1705831463&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/notes/kamera/start?rev=1705056219&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/notes/kamera/zoneminder?rev=1705056211&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/notes/mssql/start?rev=1705056184&amp;do=diff"/>
                <rdf:li rdf:resource="https://andev.de/wiki/notizen/mssql?rev=1705056177&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://andev.de/wiki/_media/logo.png">
        <title>AnDev Wiki</title>
        <link>https://andev.de/wiki/</link>
        <url>https://andev.de/wiki/_media/logo.png</url>
    </image>
    <item rdf:about="https://andev.de/wiki/notizen/git?rev=1775817753&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-10T10:42:33+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Notizen zu Git - [Globale Daten setzen] </title>
        <link>https://andev.de/wiki/notizen/git?rev=1775817753&amp;do=diff</link>
        <description>Notizen zu Git

Globale Daten setzen



git config --global user.name &quot;Martin Lindner&quot;
git config --global user.email &quot;ml17950@gmail.com&quot;
git config --global credential.helper store


Einzelnen Ordner aus Repository in ein eigenes verschieben



cd D:\Temp
git clone https://github.com/ml17950/fb-dev.git
cd fb-dev
git subtree split -P David -b David-Single

mkdir D:\Temp\David-Single
cd D:\Temp\David-Single
git init
git pull D:\Temp\fb-dev David-Single
github.bat

git remote add origin https://gi…</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/debian?rev=1771487309&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-02-19T07:48:29+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Debian</title>
        <link>https://andev.de/wiki/linux/debian?rev=1771487309&amp;do=diff</link>
        <description>Debian

mein Bash Prompt


wget -O ~/.bash_aliases &quot;https://andev.de/downloads/linux/bash_aliases.sh&quot;
sudo wget -O /root/.bashrc &quot;https://andev.de/downloads/linux/bashrc-root.sh&quot;
sudo sed -i &quot;s/martin/$USER/g&quot; /root/.bashrc
sudo cat /root/.bashrc


sources.list bookworm</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/homelab?rev=1762410106&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-11-06T06:21:46+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Homelab Notizen - [Zeitzone setzen] </title>
        <link>https://andev.de/wiki/linux/homelab?rev=1762410106&amp;do=diff</link>
        <description>Homelab Notizen

Links: Debian • Proxmox • Docker • Domoticz

Benutzer in CT Container anlegen



apt update
apt install -y sudo curl wget nano mc
adduser martin
usermod -aG sudo martin
groups martin
su martin

sudo -s
exit


mein Bash Prompt



wget -O ~/.bash_aliases &quot;https://andev.de/downloads/linux/bash_aliases.sh&quot;
sudo wget -O /root/.bashrc &quot;https://andev.de/downloads/linux/bashrc-root.sh&quot;
sudo sed -i &quot;s/martin/$USER/g&quot; /root/.bashrc
sudo cat /root/.bashrc</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/proxmox?rev=1762265603&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-11-04T14:13:23+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Proxmox</title>
        <link>https://andev.de/wiki/linux/proxmox?rev=1762265603&amp;do=diff</link>
        <description>Proxmox

Proxmox ist ein freier Level 1 Hypevisor basierend auf Linux.

Benutzer in CT Container anlegen



apt update
apt install -y sudo curl wget nano mc
adduser martin
usermod -aG sudo martin
groups martin
su martin


Community Repository



rm /etc/apt/sources.list.d/pve-enterprise.list
rm /etc/apt/sources.list.d/ceph.list
echo &quot;deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription&quot;&gt;&gt;/etc/apt/sources.list.d/pve-community.list
apt update &amp;&amp; apt full-upgrade -y &amp;&amp; apt autore…</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/docker?rev=1749710989&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-06-12T06:49:49+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Docker</title>
        <link>https://andev.de/wiki/linux/docker?rev=1749710989&amp;do=diff</link>
        <description>Docker

Installation



sudo apt update
sudo apt install docker.io docker-compose -y
sudo systemctl enable docker.service
sudo systemctl enable containerd.service
sudo systemctl start docker.service
sudo systemctl start containerd.service
sudo groupadd docker
sudo usermod -aG docker $USER</description>
    </item>
    <item rdf:about="https://andev.de/wiki/notizen/thunderbird?rev=1741273124&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-03-06T14:58:44+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Thunderbird</title>
        <link>https://andev.de/wiki/notizen/thunderbird?rev=1741273124&amp;do=diff</link>
        <description>Thunderbird

Standard &quot;nicht gruppiert&quot;



mailnews.default_view_flags = 0


Standard &quot;Absteigend&quot;



mailnews.default_sort_order = 2


siehe &lt;https://superuser.com/questions/13518/change-the-default-sorting-order-in-thunderbird&gt;

alternative Stylesheet aktivieren



toolkit.legacyUserProfileCustomizations.stylesheets = true


und im Profilordner einen Ordner erstellen</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/ssh?rev=1738837263&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-06T10:21:03+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>SSH</title>
        <link>https://andev.de/wiki/linux/ssh?rev=1738837263&amp;do=diff</link>
        <description>SSH

SSH-Key erstellen/importieren

Auf dem (Windows) Client




ssh-keygen -t rsa -b 4096 -f %USERPROFILE%\.ssh\%COMPUTERNAME%
type %USERPROFILE%\.ssh\%COMPUTERNAME%.pub

type %USERPROFILE%\.ssh\%COMPUTERNAME%.pub | ssh user@host &quot;cat &gt;&gt; .ssh/authorized_keys&quot;</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/domoticz?rev=1732111230&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-11-20T14:00:30+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Domoticz - angelegt</title>
        <link>https://andev.de/wiki/linux/domoticz?rev=1732111230&amp;do=diff</link>
        <description>Domoticz



Installations unter Debian 12 Bookworm



cd ~
mkdir domoticz
cd domoticz
wget https://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u2_amd64.deb
sudo dpkg -i libssl1.1_1.1.1w-0+deb11u2_amd64.deb
rm libssl1.1_1.1.1w-0+deb11u2_amd64.deb
wget -O install.sh https://install.domoticz.com
chmod +x install.sh
./install.sh</description>
    </item>
    <item rdf:about="https://andev.de/wiki/notizen/firefox?rev=1716376111&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-05-22T11:08:31+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Firefox</title>
        <link>https://andev.de/wiki/notizen/firefox?rev=1716376111&amp;do=diff</link>
        <description>Firefox

neue Tabs neben dem aktuellen



about:config
browser.tabs.insertAfterCurrent -&gt; true
browser.tabs.insertRelatedAfterCurrent -&gt; true


Backspace für Seite zurück



about:config
browser.backspace_action -&gt; 0</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/subl?rev=1715848390&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-05-16T08:33:10+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Sublime Text - [meine Einstellungen (Windows)] </title>
        <link>https://andev.de/wiki/linux/subl?rev=1715848390&amp;do=diff</link>
        <description>Sublime Text

meine Einstellungen (Linux)



mkdir -p $HOME/.config/sublime-text/Packages/User/
wget -O &quot;$HOME/.config/sublime-text/Packages/User/Default (Linux).sublime-keymap&quot; &quot;https://andev.de/downloads/linux/sublime-text.keymap&quot;
wget -O &quot;$HOME/.config/sublime-text/Packages/User/Package Control.sublime-settings&quot; &quot;https://andev.de/downloads/linux/sublime-text.packages&quot;
wget -O &quot;$HOME/.config/sublime-text/Packages/User/Preferences.sublime-settings&quot; &quot;https://andev.de/downloads/linux/sublime-text…</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/neofetch?rev=1715605994&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-05-13T13:13:14+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Neofetch - [Alternative] </title>
        <link>https://andev.de/wiki/linux/neofetch?rev=1715605994&amp;do=diff</link>
        <description>Neofetch

Installation



sudo apt install neofetch


Start



neofetch


Anzeige nach Login



sudo bash -c $'echo &quot;neofetch&quot; &gt;&gt; /etc/profile.d/show-neo.sh &amp;&amp; chmod +x /etc/profile.d/show-neo.sh'


Alternative fastfetch



sudo apt install curl
version=$(curl -s https://github.com/fastfetch-cli/fastfetch/releases | grep -o 'tree/[0-9.]\+' | head -n 1 | cut -d &quot;/&quot; -f 2); wget &quot;https://github.com/fastfetch-cli/fastfetch/releases/download/$version/fastfetch-linux-amd64.deb&quot;
sudo dpkg -i fastfetch-…</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/shell?rev=1714118320&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-04-26T07:58:40+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title> - gelöscht</title>
        <link>https://andev.de/wiki/linux/shell?rev=1714118320&amp;do=diff</link>
        <description></description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/befehle?rev=1714118311&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-04-26T07:58:31+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Befehle, Programme und Sonstiges - [Befehle, Programme und sonstige Tipps] </title>
        <link>https://andev.de/wiki/linux/befehle?rev=1714118311&amp;do=diff</link>
        <description>Befehle, Programme und Sonstiges

Bash Tastenkürzel

+ = Suche / Weitersuchen
+ = Springt zurück an den Anfang der Eingabe
+ = Springt ans Ende der Eingabe
+ = Geht ein Wort zurück
+ = Geht ein Wort vor
+ = Springt ein Zeichen zurück
+ = Springt ein Zeichen vor</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/mint?rev=1712225859&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-04-04T10:17:39+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>Linux Mint</title>
        <link>https://andev.de/wiki/linux/mint?rev=1712225859&amp;do=diff</link>
        <description>Linux Mint

Boot-Timeout von 30 Sekunden auf 3 Sekunden ändern



sudo cp /boot/grub/grub.cfg grub.cfg.bak
sudo sed -i 's/timeout=30/timeout=3/g' /boot/grub/grub.cfg 
sudo cat /boot/grub/grub.cfg | grep timeout
sudo update-grub


max. Breite der Taskbar anpassen</description>
    </item>
    <item rdf:about="https://andev.de/wiki/notes/hardware/system-benchmarks?rev=1711174372&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-03-23T06:12:52+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>System-Benchmarks - [Werte] </title>
        <link>https://andev.de/wiki/notes/hardware/system-benchmarks?rev=1711174372&amp;do=diff</link>
        <description>System-Benchmarks

Hier eine kleine Auflistung/Anleitung für mich, um die verschiedenen System, die ich habe, zu „bewerten“.

Dazu das System über einen Linux Live Stick starten (z.B. Mint Cinnamon oder Kali Live).

Installieren
sudo apt update &amp;&amp; sudo apt install sysbench neofetch -y &amp;&amp; clear &amp;&amp; neofetch</description>
    </item>
    <item rdf:about="https://andev.de/wiki/linux/rsync?rev=1705831463&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-01-21T10:04:23+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>rsync - angelegt</title>
        <link>https://andev.de/wiki/linux/rsync?rev=1705831463&amp;do=diff</link>
        <description>rsync

Kopieren von Lokal auf USB-Datenträger (ntfs)



rsync -avzuP --modify-window 1 /source/ /destination/


Kopieren von Lokal auf Remote



rsync -avzuP /source/ user@remote-host:/destination/


Kopieren von Remote auf Lokal



rsync -avzuP user@remote-host:/source/ /destination/</description>
    </item>
    <item rdf:about="https://andev.de/wiki/notes/kamera/start?rev=1705056219&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-01-12T10:43:39+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title> - gelöscht</title>
        <link>https://andev.de/wiki/notes/kamera/start?rev=1705056219&amp;do=diff</link>
        <description></description>
    </item>
    <item rdf:about="https://andev.de/wiki/notes/kamera/zoneminder?rev=1705056211&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-01-12T10:43:31+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title> - gelöscht</title>
        <link>https://andev.de/wiki/notes/kamera/zoneminder?rev=1705056211&amp;do=diff</link>
        <description></description>
    </item>
    <item rdf:about="https://andev.de/wiki/notes/mssql/start?rev=1705056184&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-01-12T10:43:04+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title> - gelöscht</title>
        <link>https://andev.de/wiki/notes/mssql/start?rev=1705056184&amp;do=diff</link>
        <description></description>
    </item>
    <item rdf:about="https://andev.de/wiki/notizen/mssql?rev=1705056177&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-01-12T10:42:57+00:00</dc:date>
        <dc:creator>Martin (martin@undisclosed.example.com)</dc:creator>
        <title>MSSQL - angelegt</title>
        <link>https://andev.de/wiki/notizen/mssql?rev=1705056177&amp;do=diff</link>
        <description>MSSQL

Tipps und Notizen zum Thema MSSQL.

Suche in allen Tabellen



DECLARE @SearchStr nvarchar(100)
SET @SearchStr = 'SUCHBEGRIFF'
 
 
-- Copyright © 2002 Narayana Vyas Kondreddi. All rights reserved.
-- Purpose: To search all columns of all tables for a given search string
-- Written by: Narayana Vyas Kondreddi
-- Site: http://vyaskn.tripod.com
-- Updated and tested by Tim Gaunt
-- http://www.thesitedoctor.co.uk
-- http://blogs.thesitedoctor.co.uk/tim/2010/02/19/Search+Every+Table+And+Field+…</description>
    </item>
</rdf:RDF>
