The section Working with Files and Directories belongs to Linux Fundamentals module.
Download the VPN file from HTB Academy and run the following command in the same directory:
sudo openvpn academy-regular.ovpn # Make sure you have openvpn installed.
Use the command:
ls -lt /var/backups
ls is the listing command.-l shows in a list format.-t sorts by modification time newest firstSubmit the name of the file.
ls -i /var/backups/shadow.bak
-i is the flag to show inodes.An inode (short for "index node") is a hidden data structure that Linux uses to store information about a file or folder.
Submit the number as the answer.