Ubuntu

By phannphong, 16 May, 2022

Find all files in a directory /path/to/directory and its sub-directories recursively:

find /path/to/directory/ -size 0 -type f

or

find /path/to/directory/ -size 0 -type f -print

Extend:

Tags

By phannphong, 22 May, 2018

When I searched a solution for connecting through VPN with L2TP/IPSec on Ubuntu (I used Ubuntu 18.04 at this time), I found this article and kept it in my note.

Just as a followup to the great information you provided, thought I'd give people a complete set of steps I took to get this working on Ubuntu GNOME 17.04:

Tags