Here is a list of commands I use to find files in Ubuntu.
To find all files with .zip extension You can use this
find . -name "*.zip"
If you want to find all files with a pattern use this
find . -name "*pattern*"
Linux & Oracle DBA Blog
Here is a list of commands I use to find files in Ubuntu.
To find all files with .zip extension You can use this
find . -name "*.zip"
If you want to find all files with a pattern use this
find . -name "*pattern*"
I was having problems with ufw not allowing me to add a new rule.
# ufw deny from 54.38.157.178 to any ERROR: initcaps [Errno 2] iptables: Chain already exists.
So this is what I did: