Network Mounts Flashcards

(20 cards)

1
Q

What do network mounts do?

A

Connect computers to share files as if they were local

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

Name common types of network mounts.

A

NFS (Network File System) and SMB (Server Message Block or Samba)

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

What is NFS designed for?

A

Linux-to-Linux file sharing

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

How do remote directories behave in NFS?

A

Like local storage

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

Ideal use case for NFS?

A

Environments using Unix-like systems

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

Syntax for NFS mount?

A

mount -t nfs <server>:/<remote-path> <local-mountpoint></local-mountpoint></remote-path></server>

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

Example of NFS mount?

A

sudo mount -t nfs 192.168.1.100:/exports/data /mnt/data

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

What does -t nfs specify?

A

NFS type

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

What is 192.168.1.100:/exports/data in NFS example?

A

Server and export path

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

What is /mnt/data in NFS example?

A

Local directory where the share appears

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

Why is NFS common?

A

Centralized data access for multiple Linux systems

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

What does SMB support?

A

Cross-platform file sharing including Windows and Linux

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

How is SMB implemented in Linux?

A

As Samba

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

What protocol does SMB use?

A

CIFS (Common Internet File System)

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

Syntax for SMB mount?

A

mount -t cifs //<server>/<share> <local-mountpoint> -o username=<user>,password=<pass></pass></user></local-mountpoint></share></server>

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

Example of SMB mount?

A

sudo mount -t cifs //192.168.1.50/shared /mnt/shared -o username=admin,password=secret

17
Q

What does -t cifs specify?

A

CIFS protocol for SMB

18
Q

What is //192.168.1.50/shared in SMB example?

A

SMB server and share name

19
Q

What is /mnt/shared in SMB example?

A

Local mount point

20
Q

Why is SMB useful?

A

Mixed environments where both Windows and Linux users need file access