Allowing Incoming Traffic on Specific Ports
sudo iptables -A INPUT -p tcp --dport ssh -j ACCEPT
Allowing Incoming Traffic on Specific Ports
sudo iptables -A INPUT -p tcp --dport ssh -j ACCEPT
grep -r "string" /etc
grep -ri "string" /etc
grep -ri -l "string" /etc
find /etc -type f -exec grep -l "string" {} +
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10| head -n 4
Source: http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/