answers already passed
What is the absolute pathname (for a Windows computer) for a file named
"bob" located on the D: drive, under the home directory? - correct answers D:\
home\bob
What is the absolute pathname (on a Linux System) for a file name keybd
located under the root directory's "dev" subdirectory? - correct answers
/dev/keybd
What command would allow you to change from your home directory to the
directory for tar located under the root directory's bin subdirectory? - correct
answers cd /bin/tar
If you are currently in your home directory, what is the relative pathname to
the "address" file located under the mylocation subdirectory? - correct
answers mylocation/address or ~/mylocation/address
If you are located in the directory /etc/cloud/templates directory, what
command will return you to your home directory (assume that your home
directory is /home/users/student? - correct answers Any of the following:
cd
cd ~
cd /home/users/student
What command would allow you to display the file passwd under the root's etc
directory? - correct answers cat /etc/passwd