Welcher Befehl wird für Softlinks verwendet?
ln
ln -s für soft
Befehl zum erstellen eines CPIO Archivs
find | cpio -L -v -o -H newc > ../artifacts/initrd.cpio
Befehl zum Compilen des Kernels
ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make -j5
Befehl zum Herunterladen von Dateien?
wget
HW5 Befehl von Qemu?
qemu-system-aarch64 -m 64 -smp 4 -M virt -cpu cortex-a72 -nographic -kernel artifacts/Image.gz -netdev user,id=mynet0,hostfwd=tcp::22222-:22 -device virtio-net,netdev=mynet0 -append “console=ttyAMA0 init=init” -initrd artifacts/initrd.cpio
}
Befehl zum remote connecten?
ssh -o “StrictHostKeyChecking=off” root@localhost -p 22222 “$@”