Is each of the following an absolute pathname, a relative pathname, or a simple filename?
Question #9
Is each of the following an absolute pathname, a relative pathname, or a
simple filename?
- milk_co
- correspond/business/milk_co
- /home/max
- /home/max/literature/promo
- ..
- letter.0210
Question #10
Suppose you have a file that is linked to a file owned by another user. How
can you ensure that changes to the file are no longer shared?
Question #11
If /home/zach/draft and /home/max/letter are links to the same file and the
following sequence of events occurs, what will be the date in the opening of
the letter?
- Max gives the command vim letter.
- Zach gives the command vim draft.
- Zach changes the date in the opening of the letter to January 31, writes
the file, and exits from vim.
- Max changes the date to February 1, writes the file, and exits from vim.
Question #12
What is an inode? What happens to the inode when you move a file within
a filesystem?
Question #13
The ls –i command displays a filename preceded by the inode number of the
file (page 115). Write a command to output inode/filename pairs for the
files in the working directory, sorted by inode number. (Hint: Use a
pipeline.)
Question #14
Is it possible to distinguish a file from a hard link to a file? That is, given a
filename, can you tell whether it was created using an ln command?
Explain.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps