Tools that i use in daily common Lampp Setup https://raw.githubusercontent.com/felipesms2/LampSetup/main/README.md
#Util tools
mount tmp folder im ram instead mkdir /tmp/ramdisk && sudo mount -t tmpfs -o size=1400m myramdisk /tmp/ramdisk
sudo wget https://raw.githubusercontent.com/felipesms2/DebianFreshInstall/main/AnyDeskAllow.sh -P /tmp && sudo mv /tmp/AnyDeskAllow.sh /etc/gdm3/custom.conf
lsbk List storage devices
dd if=file.iso of=/dev/of/destination Clone disk to another
ps aux | grep firefox Search PID
kill -9 40600 Kill by pid
sudo ss -lptn 'sport = :80' # check process from port
sudo lsof -nP -iTCP -sTCP:LISTEN # check process from port (more on https://phoenixnap.com/kb/linux-check-open-ports)
sudo update-alternatives --config x-session-manager # default desktop on rdp https://forum.xfce.org/viewtopic.php?id=14108
apt install tmux nmap iproute2 nano vim timeshift virtualbox-qt
cat >> /etc/sysctl.conf <<EOT net.ipv6.conf.all.use_tempaddr=0 net.ipv6.conf.default.use_tempaddr=0 EOT
sysctl -p
7z x yourfile.rar
7z a -t7z -mx0 -v1900m output.7z yourfile
a : Add files to the archive. -t7z : Specifies the archive type (7z format). -mx0 : Sets the compression level to 0 (no compression). -v1900m : Splits the archive into volumes of 1900 MB each.