Describe how the mv command moves a file even though it doesn’t touch the data blocks belonging to the file.
What will be an ideal response?
The mv command merely alters the directory information about a particular file. A directory file
contains a pointer to the data blocks for each file in the directory. To move a file from dir1 to dir2,
mv removes the link to the data blocks from dir1 and inserts the pointer in dir2. The data blocks
themselves are never accessed.
Computer Science & Information Technology
You might also like to view...
Which of the following is used along with the width property to configure centered page content?
a. margin-left: auto; margin-right: auto b. margin: top-10, left-0, right-0, bottom-10; c. margin: 15px 0 5px 0; d. margin: 20px;
Computer Science & Information Technology
If the recursive function call does not lead towards a stopping case, you have ______________.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology