<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=Linux_Basic_Cheatsheet</id>
	<title>Linux Basic Cheatsheet - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=Linux_Basic_Cheatsheet"/>
	<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=Linux_Basic_Cheatsheet&amp;action=history"/>
	<updated>2026-05-14T16:00:48Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Xinux Wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.ixheim.de/index.php?title=Linux_Basic_Cheatsheet&amp;diff=69392&amp;oldid=prev</id>
		<title>Thomas.will: Die Seite wurde neu angelegt: „== Cheat-Sheet: Linux-Basics ==  === Navigation === {| class=&quot;wikitable&quot; ! Befehl !! Beschreibung |- | &lt;code&gt;pwd&lt;/code&gt; || Aktuelles Verzeichnis anzeigen |- |…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=Linux_Basic_Cheatsheet&amp;diff=69392&amp;oldid=prev"/>
		<updated>2026-05-03T14:38:52Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „== Cheat-Sheet: Linux-Basics ==  === Navigation === {| class=&amp;quot;wikitable&amp;quot; ! Befehl !! Beschreibung |- | &amp;lt;code&amp;gt;pwd&amp;lt;/code&amp;gt; || Aktuelles Verzeichnis anzeigen |- |…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Cheat-Sheet: Linux-Basics ==&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Befehl !! Beschreibung&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pwd&amp;lt;/code&amp;gt; || Aktuelles Verzeichnis anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ls -la&amp;lt;/code&amp;gt; || Verzeichnisinhalt anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;cd /etc&amp;lt;/code&amp;gt; || In Verzeichnis wechseln&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;cd ..&amp;lt;/code&amp;gt; || Ein Verzeichnis zurück&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;cd ~&amp;lt;/code&amp;gt; || Ins Homeverzeichnis&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Dateien und Verzeichnisse ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Befehl !! Beschreibung&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;cp datei.txt /tmp/&amp;lt;/code&amp;gt; || Datei kopieren&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;cp -r ordner/ /tmp/&amp;lt;/code&amp;gt; || Verzeichnis kopieren&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;mv datei.txt /tmp/&amp;lt;/code&amp;gt; || Datei verschieben / umbenennen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;rm datei.txt&amp;lt;/code&amp;gt; || Datei löschen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;rm -rf ordner/&amp;lt;/code&amp;gt; || Verzeichnis löschen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;mkdir ordner&amp;lt;/code&amp;gt; || Verzeichnis anlegen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;cat datei.txt&amp;lt;/code&amp;gt; || Dateiinhalt anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;less datei.txt&amp;lt;/code&amp;gt; || Datei seitenweise anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tail -f /var/log/syslog&amp;lt;/code&amp;gt; || Log live verfolgen&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== vi / vim ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Befehl !! Beschreibung&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;vi datei.txt&amp;lt;/code&amp;gt; || Datei öffnen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;i&amp;lt;/code&amp;gt; || Einfügemodus starten&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ESC&amp;lt;/code&amp;gt; || Zurück in den Normalmodus&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;:w&amp;lt;/code&amp;gt; || Speichern&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;:q&amp;lt;/code&amp;gt; || Beenden&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;:wq&amp;lt;/code&amp;gt; || Speichern und beenden&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;:q!&amp;lt;/code&amp;gt; || Beenden ohne speichern&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;dd&amp;lt;/code&amp;gt; || Zeile löschen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;yy&amp;lt;/code&amp;gt; || Zeile kopieren&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; || Einfügen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;/suchbegriff&amp;lt;/code&amp;gt; || Suchen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; || Nächsten Treffer&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Rechte ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Befehl !! Beschreibung&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;chmod 644 datei.txt&amp;lt;/code&amp;gt; || Rechte setzen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;chown root:root datei.txt&amp;lt;/code&amp;gt; || Eigentümer setzen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sudo befehl&amp;lt;/code&amp;gt; || Als root ausführen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;sudo -i&amp;lt;/code&amp;gt; || Root-Shell öffnen&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Netzwerk ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Befehl !! Beschreibung&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ip addr show&amp;lt;/code&amp;gt; || IP-Adressen anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ip route show&amp;lt;/code&amp;gt; || Routen anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ping 8.8.8.8&amp;lt;/code&amp;gt; || Verbindung testen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ss -tulpen&amp;lt;/code&amp;gt; || Offene Ports anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ssh user@host&amp;lt;/code&amp;gt; || SSH-Verbindung&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;scp datei.txt user@host:/tmp/&amp;lt;/code&amp;gt; || Datei per SSH kopieren&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Prozesse ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Befehl !! Beschreibung&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ps aux&amp;lt;/code&amp;gt; || Alle Prozesse anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || Prozesse live anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;kill -9 1234&amp;lt;/code&amp;gt; || Prozess beenden&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;systemctl status sshd&amp;lt;/code&amp;gt; || Dienststatus anzeigen&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;systemctl restart sshd&amp;lt;/code&amp;gt; || Dienst neu starten&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Thomas.will</name></author>
	</entry>
</feed>