|
|
| Zeile 1: |
Zeile 1: |
| [[Kategorie:Host]]
| |
|
| |
| = Links =
| |
|
| |
| = Blitzinstallation =
| |
| <syntaxhighlight lang="bash">
| |
| vi /etc/sudoers
| |
| sed -i 's/deb cdrom:/# deb cdrom:/' /etc/apt/sources.list
| |
| apt update
| |
| apt install rsync
| |
| wget -O /tmp/basic_install.sh https://public.hamatoma.de/basic_install.sh
| |
| bash /tmp/basic_install.sh
| |
| touch /etc/pyrshell/backup.conf
| |
| systemctl disable pymonitor
| |
| btrfs filesystem label / fs.system.1t
| |
| mkdir -p /media/fs.system.1t /media/fs.cave
| |
| echo "deb http://debian.mirror.lrz.de/debian/ bullseye-backports main non-free contrib
| |
| deb-src http://debian.mirror.lrz.de/debian/ bullseye-backports main non-free contrib" >/etc/apt/sources.list.d/backports.list
| |
| apt update && apt install linux-image-5.19.0-0.deb11.2-amd64 thunderbird-l10n-de sane-airscan firmware-linux-nonfree
| |
|
| |
| </syntaxhighlight>
| |
| * /etc/fstab
| |
| <pre>
| |
| LABEL=fs.system.1t / btrfs defaults,noatime,nodiratime,compress=zstd,autodefrag,ssd,subvol=@rootfs 0 2
| |
| # /boot/efi was on /dev/sda1 during installation
| |
| UUID=F26A-51CD /boot/efi vfat umask=0077 0 1
| |
| # swap was on /dev/sdb3 during installation
| |
| UUID=4789cd20-191b-41e8-ac30-79d7716d626f none swap sw 0 0
| |
| LABEL=fs.cave /media/fs.cave btrfs defaults,noatime,nodiratime,compress=zstd,autodefrag,ssd 0 2
| |
| LABEL=fs.cave /home2 btrfs defaults,noatime,nodiratime,compress=zstd,autodefrag,ssd,subvol=home 0 2
| |
| LABEL=fs.cave /opt btrfs defaults,noatime,nodiratime,compress=zstd,autodefrag,ssd,subvol=opt 0 2
| |
| LABEL=fs.system.1t /media/fs.system.1t btrfs defaults,noatime,nodiratime,compress=zstd,autodefrag,ssd 0 2
| |
| </pre>
| |
|
| |
| = Applikationen = | | = Applikationen = |
| <syntaxhighlight lang="bash"> | | <syntaxhighlight lang="bash"> |
| Zeile 39: |
Zeile 5: |
| echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list | | echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list |
| apt update && apt install anydesk | | apt update && apt install anydesk |
| | </syntaxhighlight> |
| | |
| | = Soundkarte = |
| | * /etc/default/grub |
| | <pre> |
| | GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 snd_hda_intel.dmic_detect=0" |
| | </pre> |
| | <syntaxhighlight lang="bash"> |
| | sudo grub-mkconfig -o /boot/grub/grub.cfg |
| </syntaxhighlight> | | </syntaxhighlight> |
Applikationen
apt install thunderbird vlc libreoffice curl
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | apt-key add -
echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list
apt update && apt install anydesk
Soundkarte
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 snd_hda_intel.dmic_detect=0"
sudo grub-mkconfig -o /boot/grub/grub.cfg