week 10 lecture Flashcards

1
Q

what is a file system?

A

-The way files are stored and organized
-Consists of disk partitions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is the linux file system?

A

Hierarchical directory structure descending from root directory (/)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is a inode

A

Data structure that stores all information about a file except the actual data and filename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is a innode number?

A

-Like an address
-References an entry in the inode table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is a hard link

A

Files that point to data on the hard drive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is a symbolic link

A

-Also called soft links
-Special types of files that point to other files instead of pointing to data on the hard drive
-Do not share the same inode number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is a block

A

To store a file, it is decomposed into fixed size blocks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How does the Kernel locate a particular block of a disk

A

File Systems use an indexing scheme

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how many pointers does an inode contain

A

15
12 Direct pointers
1 indirect pointer
1 double indirect pointer
1 triple indirect pointer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is a directory

A

Collection of data blocks on Directory Structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is a directory

A

Collection of data blocks on Directory Structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is a filesystem

A

can be thought of as a type of database of files and directories

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what are the types of filesystems

A

-Disk file system
-Network File System (NFS)
-virtual filesystem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is a partition

A

a disk partition or partition is a section of the hard drive that is separated from other segments.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is a distributed file system

A

A network allows you to share resources

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what are the Advantages of setting up a file server in Ubuntu Linux

A

-Central location
-Increased security
-Remote access

17
Q

what does Exporting a file system enable

A

users to distribute file systems over the network

18
Q

what does Importing a file system enable

A

Makes it possible for users to mount file systems on other hosts

19
Q

what is a remote procedure call

A

A protocol that allows one network computer to request a service from a program on another network computer

20
Q

what is a remote procedure call

A

A protocol that allows one network computer to request a service from a program on another network computer

21
Q

what is a client-side stub?

A

a procedure that looks to the client as if it were a callable server procedure

22
Q

what is a server-side stub

A

looks to the server as if a client called it