find und was man damit machen kann
Posted on
16-06-25 9:23
find . -type f -mtime -20 -printf "%P;%u;%g;%m\n" > /tmp/find_files
find . -type d -printf "%P;%u;%g;%m\n" > /tmp/find_dirs
while IFS=";" read -r path user group mode; do
[ -e "$path" ] || continue
chown "$user:$group" "$path"
chmod "$mode" "$path"
done < /tmp/find_files
while IFS=";"...
Rezept: Spargel à la Carbonara
Posted on
31-05-25 11:08
Spargel à la Carbonara
Spargel für Genießer: Spitzenkoch Jaspar Wcislo aus Düsseldorf verrät uns sein Rezept für Carbonara Hollandaise.
Zutaten
Für den Spargel und den Fond:
500g Spargel
1 Zitrone
500ml kaltes Wasser
1 EL Zucker
1 EL Salz
Für die Carbonara Hollandaise:
150g...
libvirt: Links
Posted on
25-05-25 16:02
Virsh - Kommandozeilenwerkzeug zur Verwaltung virtueller Maschinen
How to resize a qcow2 disk image on Linux
libvirt: Installation
Posted on
25-05-25 15:36
Installation von libvirt und virt-install
Fedora
sudo dnf install libvirt virtinstall virtmanger -y
sudo vi /etc/libvirt/libvirtd.conf
unix_sock_group = "libvirt"
unix_sock_rw_perms = "0770"
sudo systemctl start libvirtd
sudo systemctl enable libvirtd
sudo usermod -a -G libvirt...
grav: Installation
Posted on
25-05-25 15:27
apt install wget curl git build-essential
apt install iptables fail2ban
apt install ssl-cert ca-certificates
apt install php-xml php-cli php-cgi php-mysql php-mbstring php-gd php-curl php-zip
apt install nftables
wget https://getgrav.org/download/core/grav-admin/latest -O grav-admin.zip
unzip gr...