Linux commands
sudo apt-get update && sudo apt-get install ...
Port status
ss -antupActive network service
lsof -i -P -n
sudo netstat -tulpnFind files / folder
find / -name "*.php" 2>/dev/null
find / -type d -name "www" 2>/dev/nullCopy and Rename
cp /tmp/a /tmp2/a
mv index.html rev.phpMake empty file
touch newfile.htmlLast updated