mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 17:37:17 +03:00
45 lines
915 B
Markdown
45 lines
915 B
Markdown
---
|
||
title: Установка и конфигурация NFS-сервера на Linux
|
||
description: И его монтирование на клиентах
|
||
date: 2022-11-25T17:57:00+05:00
|
||
tags: [linux, nfs]
|
||
---
|
||
## Настройка NFS-сервера
|
||
|
||
### Установка пакета
|
||
```shell
|
||
apt -y install nfs-kernel-server
|
||
```
|
||
|
||
### Создание каталога, который будет расшарен
|
||
```shell
|
||
mkdir /nfs
|
||
chmod 777 /nfs
|
||
```
|
||
|
||
### Разрешение сетевого доступа
|
||
```shell
|
||
/nfs <client-ip>(rw,sync,no_root_squash,no_subtree_check)
|
||
|
||
# /etc/exports
|
||
```
|
||
|
||
## Настройка NFS-клиента
|
||
|
||
### Установка пакета
|
||
```shell
|
||
apt -y install nfs-common
|
||
```
|
||
|
||
### Запуск службы
|
||
``` shell
|
||
systemctl enable --now rpcbind
|
||
```
|
||
|
||
### Автомонитрование
|
||
```shell
|
||
<server-ip>:/nfs /nfs nfs defaults 0 0
|
||
|
||
# /etc/fstab
|
||
```
|