Debian: Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „== Links == [https://www.debian.org/index.de.html https://www.debian.org/index.de.html] Zurück zu Haupseite“)
 
 
(12 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
== Installation ==
[https://www.debian.org/releases/stable/amd64/ https://www.debian.org/releases/stable/amd64/]
[https://d-i.debian.org/manual/de.i386/apa.html https://d-i.debian.org/manual/de.i386/apa.html]
=== Bash Autocomplete ===
Standardmäßig funktioniert bei Debian Autocomplete nicht. Folgendes Turorial beschreibt, was notwendig ist, um dies zu ändern.
Zuerst folgendes Paket installieren:
<pre>
sudo apt-get install bash-completion
</pre>
Danach die Datei
<pre>
/etc/bash.bashrc
</pre>
bearbeiten und (am Ende) folgende Zeilen hinzufügen:
<pre>
if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi
</pre>
==== Links ====
[https://unix.stackexchange.com/questions/312456/debian-apt-not-apt-get-autocompletion-not-working https://unix.stackexchange.com/questions/312456/debian-apt-not-apt-get-autocompletion-not-working]
=== Fvwm ===
Debian Desktopumgebung nicht installieren (deselektieren bei der Paketauswahl)
In der Datei ''/etc/apt/sources.list'' folgende Pakete hinzufügen:
<pre>
vi /etc/apt/sources.list
</pre>
<pre>
deb http://ftp.debian.org/debian jessie main contrib non-free
deb-src http://ftp.debian.org/debian jessie main contrib non-free
</pre>
Danach folgende Pakete installieren:
<pre>
apt-get update
apt-get install xserver-xorg-core xorg gdm3 fvwm python rox-filer imagemagick xscreensaver gksu trayer xmms2
</pre>
''fvwm-crystal'' installieren:
<pre>
apt-get install xorg fvwm-crystal build-essential
</pre>
<pre>
wget http://download.gna.org/fvwm-crystal/3.0.6/fvwm-crystal-3.0.6.tar.gz
tar -xzvf fvwm-crystal-3.0.6.tar.gz
cd fvwm-crystal-3.0.6
make install
</pre>
[http://wiki.dennyhalim.com/install-fvwm-crystal-on-debian http://wiki.dennyhalim.com/install-fvwm-crystal-on-debian]
== Links ==
== Links ==


Zeile 4: Zeile 73:




Zurück zu [[Haupseite]]
Zurück zu [[Hauptseite]]

Aktuelle Version vom 18. Februar 2020, 20:40 Uhr

Installation

https://www.debian.org/releases/stable/amd64/

https://d-i.debian.org/manual/de.i386/apa.html

Bash Autocomplete

Standardmäßig funktioniert bei Debian Autocomplete nicht. Folgendes Turorial beschreibt, was notwendig ist, um dies zu ändern.


Zuerst folgendes Paket installieren:

sudo apt-get install bash-completion

Danach die Datei

/etc/bash.bashrc

bearbeiten und (am Ende) folgende Zeilen hinzufügen:

if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi

Links

https://unix.stackexchange.com/questions/312456/debian-apt-not-apt-get-autocompletion-not-working

Fvwm

Debian Desktopumgebung nicht installieren (deselektieren bei der Paketauswahl)

In der Datei /etc/apt/sources.list folgende Pakete hinzufügen:

vi /etc/apt/sources.list
deb http://ftp.debian.org/debian jessie main contrib non-free
deb-src http://ftp.debian.org/debian jessie main contrib non-free

Danach folgende Pakete installieren:

apt-get update
apt-get install xserver-xorg-core xorg gdm3 fvwm python rox-filer imagemagick xscreensaver gksu trayer xmms2

fvwm-crystal installieren:

apt-get install xorg fvwm-crystal build-essential
wget http://download.gna.org/fvwm-crystal/3.0.6/fvwm-crystal-3.0.6.tar.gz
tar -xzvf fvwm-crystal-3.0.6.tar.gz
cd fvwm-crystal-3.0.6
make install

http://wiki.dennyhalim.com/install-fvwm-crystal-on-debian

Links

https://www.debian.org/index.de.html


Zurück zu Hauptseite