command is rm -rf /home/xbenson/oldproj
To delete the /home/xbenson/oldproj directory and all of its contents, the following command can be used:
rm -rf /home/xbenson/oldproj
To create a hard link file to /home/xbenson/contacts.db with the name "contacts link" in the /home/sromero directory, the following command can be used:
ln /home/xbenson/contacts.db /home/sromero/contacts\ link
To modify the permissions on the /hr directory as specified, the following command can be used:
chmod 754 /hr
This command sets the permissions for the user to read, write, and execute (7); the permissions for the group to read and execute (5); and the permissions for other to read and execute (4).
To configure LVM as specified, the following actions can be taken:
Create the physical volumes using the 4-tb partitions /dev/sdb1 and /dev/sdc1:
pvcreate /dev/sdb1 /dev/sdc1
To Know More About directory, Check Out
https://brainly.com/question/10536810
#SPJ4