Tramp: Unterschied zwischen den Versionen

Aus Info-Theke
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „= Links = = Installation = * debian-buster 10.9 * Hinweis: die graphische Oberfläche funktioniert nur mit neuerem Kernel. <source lang="bash"> apt-get -y ins…“)
 
 
Zeile 14: Zeile 14:
perl -pi -e 's/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=""/' /etc/default/grub
perl -pi -e 's/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=""/' /etc/default/grub
reboot
reboot
</source>
== Disks ==
<source lang="bash">
btrfs filesystem label / fs.sys
mkfs.btrfs -L fs.cave /dev/nvme0n1p7
echo "LABEL=fs.cave  /media/fs.cave  btrfs  rw,noatime,nodiratime,autodefrag,compress=lzo,ssd,space_cache,subvolid=5,subvol=/
echo "LABEL=fs.sys    /media/fs.sys  btrfs rw,noatime,nodiratime,autodefrag,compress=lzo,ssd,space_cache,subvolid=5,subvol=/ 0 2" >>/etc/fstab
mkdir /media/fs.sys /media/fs.cave
mount -av
</source>
</source>

Aktuelle Version vom 8. Mai 2021, 20:04 Uhr

Links[Bearbeiten]

Installation[Bearbeiten]

  • debian-buster 10.9
  • Hinweis: die graphische Oberfläche funktioniert nur mit neuerem Kernel.
apt-get -y install wget && wget -O /tmp/basic_install.sh https://public.hamatoma.de/basic_install.sh
bash /tmp/basic_install.sh
restoretool -v3 init linuxserver
echo "deb http://deb.debian.org/debian buster-backports main contrib non-free" > /etc/apt/sources.list.d/backports.list
apt update
apt-cache search "linux-image-5." | grep "amd64-unsigned" | grep -v "[-]rt-" | grep -v cloud
apt install linux-image-5.10.0-0.bpo.5-amd64-unsigned firmware-linux
perl -pi -e 's/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=""/' /etc/default/grub
reboot

Disks[Bearbeiten]

btrfs filesystem label / fs.sys
mkfs.btrfs -L fs.cave /dev/nvme0n1p7
echo "LABEL=fs.cave   /media/fs.cave  btrfs   rw,noatime,nodiratime,autodefrag,compress=lzo,ssd,space_cache,subvolid=5,subvol=/
echo "LABEL=fs.sys    /media/fs.sys   btrfs rw,noatime,nodiratime,autodefrag,compress=lzo,ssd,space_cache,subvolid=5,subvol=/ 0 2" >>/etc/fstab
mkdir /media/fs.sys /media/fs.cave
mount -av