OpenVPN client in Ubuntu

I wanted to connect to an OpenVPN server from my Ubuntu on a stick. There are different clients but the one I liked was the Linux Network-Manager GUI for OpenVPN. To install it you need to enable the Universe repository first: sudo add-apt-repository universe sudo apt-get update and then type: sudo apt-get install network-manager-openvpn After … Read more

Useful Linux Commands

Delete all files with given extension recursively: find . -name “*.dll” -print0 | xargs -0 rm -rf Find the number of .jpg file in the current folder and all sub-folder recursively: find . -name “*.jpg” -print | wc -l Move all .m2ts files to /mnt/backup/m2ts folder: find . -iname “*.m2ts” -type f | xargs -I … Read more