Du befindest dich hier: Willkommen » Linux » Debian

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige ÜberarbeitungVorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
linux:debian [10.11.2023 14:45] Martinlinux:debian [07.12.2024 18:19] (aktuell) Martin
Zeile 1: Zeile 1:
 # Debian # Debian
- 
-## schnellsten Apt Mirror 
- 
-<code bash> 
-sudo apt install netselect-apt 
-sudo netselect-apt -n -c DE 
-</code> 
  
 ## mein Bash Prompt ## mein Bash Prompt
Zeile 14: Zeile 7:
 sudo wget -O /root/.bashrc "https://andev.de/downloads/linux/bashrc-root.sh" sudo wget -O /root/.bashrc "https://andev.de/downloads/linux/bashrc-root.sh"
 sudo sed -i "s/martin/$USER/g" /root/.bashrc sudo sed -i "s/martin/$USER/g" /root/.bashrc
 +sudo cat /root/.bashrc
 </code> </code>
  
-## sources.list+## sources.list bookworm
  
 <code bash> <code bash>
Zeile 27: Zeile 21:
 cat /etc/apt/sources.list cat /etc/apt/sources.list
 apt update && apt dist-upgrade -y && apt autoremove -y && apt clean -y && reboot apt update && apt dist-upgrade -y && apt autoremove -y && apt clean -y && reboot
 +</code>
 +
 +oder direkt netzwerge als Mirror
 +<code bash>
 +sudo -s
 +
 +echo "deb http://mirror.netzwerge.de/debian bookworm contrib main non-free-firmware">/etc/apt/sources.list
 +echo "deb http://mirror.netzwerge.de/debian bookworm-updates contrib main non-free-firmware">>/etc/apt/sources.list
 +echo "deb http://mirror.netzwerge.de/debian bookworm-backports contrib main non-free-firmware">>/etc/apt/sources.list
 +echo "deb http://deb.debian.org/debian-security bookworm-security contrib main non-free-firmware">>/etc/apt/sources.list
 +cat /etc/apt/sources.list
 +apt update
 +</code>
 +
 +## Hostnamen anpassen
 +
 +```
 +newHostname=neuerName
 +
 +current="$(hostname)"
 +currip="$(hostname -I | cut -d" " -f1 | xargs)"
 +sudo hostnamectl set-hostname $newHostname
 +sudo echo "$currip  $newHostname" >> /etc/hosts
 +check=$(hostname)
 +echo "Hostname changed from $current to $check"
 +```
 +
 +## Bullseye zu Bookworm
 +
 +<code bash>
 +sudo -s
 +
 +apt update
 +apt install screen -y
 +apt full-upgrade -y
 +
 +echo "deb http://mirror.netzwerge.de/debian bookworm contrib main non-free-firmware">/etc/apt/sources.list
 +echo "deb http://mirror.netzwerge.de/debian bookworm-updates contrib main non-free-firmware">>/etc/apt/sources.list
 +echo "deb http://mirror.netzwerge.de/debian bookworm-backports contrib main non-free-firmware">>/etc/apt/sources.list
 +echo "deb http://deb.debian.org/debian-security bookworm-security contrib main non-free-firmware">>/etc/apt/sources.list
 +apt update
 +systemctl is-enabled systemd-resolved && apt install systemd-resolved
 +
 +screen
 +apt upgrade --without-new-pkgs -y
 +apt full-upgrade -y
 +reboot
 +</code>
 +## Tools
 +
 +Hier sind ein paar Tools für Linux, die ich eigentlich immer bzw. oft installiere.
 +
 +<code bash>
 +apt install sudo nano wget mc htop ncdu exa
 +apt install duf bat fd-find
 +</code>
 +
 +<code bash>
 +wget https://github.com/fastfetch-cli/fastfetch/releases/download/2.11.0/fastfetch-linux-amd64.deb && sudo dpkg -i fastfetch-linux-amd64.deb && rm fastfetch-linux-amd64.deb
 +</code>
 +
 +Dazu hier noch ein paar Links zu Tools, die nicht ganz so wichtig sind...
 +
 +  * [[https://github.com/dustinkirkland/hollywood|hollywood]]
 +
 +## schnellsten Apt Mirror
 +
 +<code bash>
 +sudo apt install netselect-apt
 +sudo netselect-apt -n -c DE
 </code> </code>
  
linux/debian.1699627522.txt.gz · Zuletzt geändert: 10.11.2023 14:45 von Martin