<?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=GIT_%E2%80%93_%C3%9Cbungen_%28Software_installieren%29</id>
	<title>GIT – Übungen (Software installieren) - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=GIT_%E2%80%93_%C3%9Cbungen_%28Software_installieren%29"/>
	<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=GIT_%E2%80%93_%C3%9Cbungen_(Software_installieren)&amp;action=history"/>
	<updated>2026-06-29T11:23:37Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Xinux Wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.ixheim.de/index.php?title=GIT_%E2%80%93_%C3%9Cbungen_(Software_installieren)&amp;diff=65541&amp;oldid=prev</id>
		<title>Thomas.will: Die Seite wurde neu angelegt: „=== Einsteiger: Grundlagen === ==== 1. Git installieren ==== Installiere Git und die benötigten Build-Werkzeuge: &lt;syntaxhighlight lang=&quot;bash&quot;&gt; sudo apt update…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=GIT_%E2%80%93_%C3%9Cbungen_(Software_installieren)&amp;diff=65541&amp;oldid=prev"/>
		<updated>2025-11-12T13:25:06Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „=== Einsteiger: Grundlagen === ==== 1. Git installieren ==== Installiere Git und die benötigten Build-Werkzeuge: &amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt; sudo apt update…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=== Einsteiger: Grundlagen ===&lt;br /&gt;
==== 1. Git installieren ====&lt;br /&gt;
Installiere Git und die benötigten Build-Werkzeuge:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install git build-essential autoconf automake libtool pkg-config -y&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 2. Repository klonen ====&lt;br /&gt;
Lade den Quellcode des Projekts ''htop'' von GitHub herunter:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git clone https://github.com/htop-dev/htop.git&lt;br /&gt;
cd htop&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 3. Build-System vorbereiten ====&lt;br /&gt;
Initialisiere das Build-System:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
./autogen.sh&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Fortgeschritten: Kompilierung und Installation ===&lt;br /&gt;
==== 4. Konfiguration durchführen ====&lt;br /&gt;
Überprüfe Abhängigkeiten und konfiguriere den Build-Prozess:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
./configure&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 5. Kompilieren ====&lt;br /&gt;
Baue das Programm:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
make&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 6. Installation ====&lt;br /&gt;
Installiere das Programm systemweit:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo make install&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 7. Überprüfung ====&lt;br /&gt;
Prüfe, ob ''htop'' korrekt installiert wurde:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
htop --version&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Bonusaufgabe ===&lt;br /&gt;
Erstelle ein Skript mit den folgenden Anforderungen:&lt;br /&gt;
* Überprüft, ob ''git'' installiert ist&lt;br /&gt;
* Klont ein Repository&lt;br /&gt;
* Führt automatisch ''./autogen.sh'', ''./configure'', ''make'' und ''sudo make install'' aus&lt;br /&gt;
* Prüft danach die installierte Version&lt;/div&gt;</summary>
		<author><name>Thomas.will</name></author>
	</entry>
</feed>