Final answer:
To create hard links for contacts.db, use the ln command followed by the paths to the original file and the target location. Brenda Cassini's and Vera Edwards's directories will use the command to create contacts_link for their access.
Step-by-step explanation:
To create hard links in Linux for the contacts.db file, you will use the ln command which is used for linking files. To create a hard link called contacts_link in the directories /home/bcassini and /home/vedwards, here's what you should type:
For Brenda Cassini's directory:ln /home/wadams/contacts.db /home/bcassini/contacts_link
For Vera Edwards's directory:ln /home/wadams/contacts.db /home/vedwards/contacts_link
After running these commands, both Brenda Cassini and Vera Edwards will have access to the contacts.db file through the hard links you've created in their respective home directories. Remember, hard links do not work across different filesystems, so make sure that /home/wadams, /home/bcassini, and /home/vedwards are on the same filesystem.