Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

CIT 315 Working with the Network File System, Lecture notes of Computer Network Management and Protocols

CIT 315 Working with the Network File System

Typology: Lecture notes

2024/2025

Available from 07/10/2025

Grace_Alesy
Grace_Alesy 🇺🇸

22 documents

1 / 10

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Linux Operations and
Administration
Chapter Thirteen
Working with the Network File System
pf3
pf4
pf5
pf8
pf9
pfa

Partial preview of the text

Download CIT 315 Working with the Network File System and more Lecture notes Computer Network Management and Protocols in PDF only on Docsity!

Linux Operations and

Administration

Chapter Thirteen

Working with the Network File System

Objectives

  • Describe the Network File System
  • Export and import file systems in Ubuntu
  • Identify key NFS services
  • Edit NFS configuration files to export and import network file systems manually

An Overview of the Network File System

Network File System (NFS)

  • A distributed file system protocol for allowing remote access to shared resources across networks
  • You can mount shared file systems on remote machines Mount
    • Term for making files appear as though they’re on a local machine instead of on a remote machine
    • Similar to drive mapping in Windows
  • Advantages of setting up a file server in Linux
    • Central location
    • Increased security
    • Remote access

An Overview of the Network File System

Remote Procedure Calls

Remote Procedure Calls (RPC) is a protocol that allows one network computer to request a service from a program on another network computer. NFS relies on RPC to route requests between NFS server and client

Exporting File Systems in Ubuntu

NFS server

  • A Linux network computer that exports directories to all networked hosts that have access to it Installing NFS Server software
  • Start Terminal and type the following command: sudo apt install nfs-kernel-server

Importing File Systems in Ubuntu

Ensure that nfs-common is installed (command below): sudo apt install nfs-common