For the following exercises, open up your Terminal and try to solve the following tasks:
- Display the inode number of the /var/log directory.
- Display the number of hard links for the /boot directory.
- Create a new directory named coins in your home directory.
- Create a soft link to coins named currency.
- Inside the coins directory, create two files – silver and gold.
- Create a new file bronze inside currency.
- List the contents of both directories – coins and currency.
- Create a new file beverages with the line "coffee is awesome" in your home directory and create a hard link named drinks to beverages.
- Add the line "lemon is refreshing" to the drinks file and then remove the beverages file.
- Display the contents of your drinks file.
True or false
- The File Name is a part of the inode data structure.
- The File Size is a part of the inode data structure.
- You can create soft links to directories.
- You can create hard links to directories.
- The minimum...