Skip to content

Commit

Permalink
📝 Update NFS mount options
Browse files Browse the repository at this point in the history
  • Loading branch information
fzindovh committed Oct 13, 2022
1 parent 3b9cb42 commit d7ce5fa
Show file tree
Hide file tree
Showing 12 changed files with 68 additions and 68 deletions.
16 changes: 8 additions & 8 deletions pages/cloud/storage/nas_nfs/guide.de-de.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ In dieser Anleitung erfahren Sie, wie Sie auf den gängigsten Distributionen ein

### Linux

Kompatibilität: Debian & Ubuntu
Kompatibilität: Debian & Ubuntu

Voraussetzungen zum Mounten einer NFS-Freigabe unter Linux:

Expand All @@ -35,7 +35,7 @@ Verwenden Sie anschließend folgenden Mount-Befehl:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Beschreibung|
Expand All @@ -48,16 +48,16 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> [!primary]
>
> Um den NAS-Mount beim Start Ihrer Distribution zu automatisieren, fügen Sie die folgende Zeile zur Datei /etc/fstab hinzu:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
*Beispiel:*
```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```
|Argument|Beschreibung|
Expand Down Expand Up @@ -88,7 +88,7 @@ Starten Sie anschließend den Dienst `rpcbind` mit folgendem Befehl neu:
Verwenden Sie anschließend folgenden Mount-Befehl:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Beschreibung|
Expand All @@ -101,9 +101,9 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> [!primary]
>
> Um den NAS-Mount beim Start Ihrer Distribution zu automatisieren, fügen Sie die folgende Zeile zur Datei /etc/fstab hinzu:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
Expand Down
14 changes: 7 additions & 7 deletions pages/cloud/storage/nas_nfs/guide.en-ca.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Then use the following mount command:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
Expand All @@ -50,14 +50,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
*For example:*
```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```
|Argument|Description|
Expand Down Expand Up @@ -90,22 +90,22 @@ Then restart the `rpcbind` service with the following command:
Then use the following mount command:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
|---|---|
|IP_NAS|Corresponds to NAS name or IP|
|/NFS_PATH|Path to NFS server for sharing (Ex: "nas-000YY/partition")|
|/NFS_PATH|Path to NFS server for sharing (Ex: `/zpool-000YY/partition`)|
|MOUNTING_FOLDER|Corresponds to the folder where you will mount your NFS share on your server|


> [!primary]
>
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
Expand Down
12 changes: 6 additions & 6 deletions pages/cloud/storage/nas_nfs/guide.en-gb.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ ubuntu@server:~$ sudo apt install nfs-common
Then use the following mount command:

```bash
ubuntu@server:~$ sudo mount -t nfs -o _netdev,mountproto=tcp IP_HA-NAS:NFS_PATH /MOUNTING_FOLDER
ubuntu@server:~$ sudo mount -t nfs IP_HA-NAS:NFS_PATH /MOUNTING_FOLDER
```

**Example:**

```bash
ubuntu@server:~$ sudo mount -t nfs -o _netdev,mountproto=tcp 10.1.1.1:zpool-123456/partition01 /mount/ha_nas
ubuntu@server:~$ sudo mount -t nfs 10.1.1.1:zpool-123456/partition01 /mount/ha_nas
```

You can now access your mounted partition at the specified folder.
Expand All @@ -77,7 +77,7 @@ You can now access your mounted partition at the specified folder.
>
> In order to automate the mounting process for each time the server boots, add the following line to the file `/etc/fstab`:
>
> `IP_HA-NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0`
> `IP_HA-NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0`
>

Expand All @@ -100,13 +100,13 @@ centos@server:~$ sudo systemctl restart rpcbind
To mount your partition, use the following command:

```bash
centos@server:~$ sudo mount -t nfs -o _netdev,mountproto=tcp IP_HA-NAS:NFS_PATH /MOUNTING_FOLDER
centos@server:~$ sudo mount -t nfs IP_HA-NAS:NFS_PATH /MOUNTING_FOLDER
```

**Example:**

```bash
centos@server:~$ sudo mount -t nfs -o _netdev,mountproto=tcp 10.1.1.1:zpool-123456/partition01 /mount/ha_nas
centos@server:~$ sudo mount -t nfs 10.1.1.1:zpool-123456/partition01 /mount/ha_nas
```

You can now access your mounted partition at the specified folder.
Expand All @@ -115,7 +115,7 @@ You can now access your mounted partition at the specified folder.
>
> In order to automate the mounting process for each time the server boots, add the following line to the file `/etc/fstab`:
>
> `IP_HA-NAS:NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0`
> `IP_HA-NAS:NFS_PATH /MOUNTING_FOLDER nfs rw 0 0`
>
### Fedora
Expand Down
14 changes: 7 additions & 7 deletions pages/cloud/storage/nas_nfs/guide.en-ie.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Then use the following mount command:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
Expand All @@ -50,14 +50,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
*For example:*
```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```
|Argument|Description|
Expand Down Expand Up @@ -90,22 +90,22 @@ Then restart the `rpcbind` service with the following command:
Then use the following mount command:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
|---|---|
|IP_NAS|Corresponds to NAS name or IP|
|/NFS_PATH|Path to NFS server for sharing (Ex: "nas-000YY/partition")|
|/NFS_PATH|Path to NFS server for sharing (Ex: `/zpool-000YY/partition`)|
|MOUNTING_FOLDER|Corresponds to the folder where you will mount your NFS share on your server|


> [!primary]
>
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
Expand Down
10 changes: 5 additions & 5 deletions pages/cloud/storage/nas_nfs/guide.en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Then use the following mount command:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
Expand All @@ -50,14 +50,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
*For example:*
```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```
|Argument|Description|
Expand Down Expand Up @@ -90,7 +90,7 @@ Then restart the `rpcbind` service with the following command:
Then use the following mount command:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
mount -t nfs IP_NAS:/NFS_PATH /MOUNTING_FOLDER
```

|Argument|Description|
Expand All @@ -105,7 +105,7 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/NFS_PATH /MOUNTING_FOLDER
> In order to automate the NAS mount when your distribution starts up, add the following line to the /etc/fstab file:
>
> ```
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/NFS_PATH /MOUNTING_FOLDER nfs rw 0 0
> ```
>
Expand Down
10 changes: 5 additions & 5 deletions pages/cloud/storage/nas_nfs/guide.es-es.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ A continuación, utilice el siguiente comando para montarlo:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
mount -t nfs IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
```

|Argumento|Descripción|
Expand All @@ -50,14 +50,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
> Puede automatizar el montaje del NAS al arrancar su distribución añadiendo la siguiente línea al archivo **/etc/fstab**:
>
> ```
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw 0 0
> ```
>
**Ejemplo:**
```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```
|Argumento|Descripción|
Expand Down Expand Up @@ -88,7 +88,7 @@ A continuación, reinicie el servicio rpcbind mediante el siguiente comando:
A continuación, utilice el siguiente comando para montarlo:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
mount -t nfs IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
```

|Argumento|Descripción|
Expand All @@ -103,7 +103,7 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
> Puede automatizar el montaje del NAS al arrancar su distribución añadiendo la siguiente línea al archivo **/etc/fstab**:
>
> ```
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw 0 0
> ```
>
Expand Down
10 changes: 5 additions & 5 deletions pages/cloud/storage/nas_nfs/guide.es-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ A continuación, utilice el siguiente comando para montarlo:


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
mount -t nfs IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
```

|Argumento|Descripción|
Expand All @@ -50,14 +50,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
> Puede automatizar el montaje del NAS al arrancar su distribución añadiendo la siguiente línea al archivo **/etc/fstab**:
>
> ```
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw 0 0
> ```
>
**Ejemplo:**
```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```
|Argumento|Descripción|
Expand Down Expand Up @@ -88,7 +88,7 @@ A continuación, reinicie el servicio rpcbind mediante el siguiente comando:
A continuación, utilice el siguiente comando para montarlo:

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
mount -t nfs IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
```

|Argumento|Descripción|
Expand All @@ -103,7 +103,7 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE
> Puede automatizar el montaje del NAS al arrancar su distribución añadiendo la siguiente línea al archivo **/etc/fstab**:
>
> ```
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/RUTA_NFS /DIRECTORIO_MONTAJE nfs rw 0 0
> ```
>
Expand Down
10 changes: 5 additions & 5 deletions pages/cloud/storage/nas_nfs/guide.fr-ca.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Utilisez ensuite la commande de montage suivante :


```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE
mount -t nfs IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE
```

|Argument|Description|
Expand All @@ -50,14 +50,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE
> Vous pouvez automatiser le montage du NAS au démarrage de votre distribution via la ligne suivante à ajouter dans le fichier /etc/fstab :
>
> ```
> IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE nfs rw 0 0
> ```
>
*Exemple :*
```sh
mount -t nfs -o _netdev,mountproto=tcp 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
mount -t nfs 10.16.XXX.YYY:zpool-999888/PartitionName /media/NasHA -v
```
|Argument|Description|
Expand Down Expand Up @@ -88,7 +88,7 @@ Redémarrez ensuite le service `rpcbind` via la commande suivante :
Utilisez ensuite la commande de montage suivante :

```sh
mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE
mount -t nfs IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE
```

|Argument|Description|
Expand All @@ -103,7 +103,7 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE
> Vous pouvez automatiser le montage du NAS au démarrage de votre distribution via la ligne suivante à ajouter dans le fichier /etc/fstab :
>
> ```
> IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE nfs rw,_netdev,mountproto=tcp 0 0
> IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE nfs rw 0 0
> ```
>
Expand Down
Loading

0 comments on commit d7ce5fa

Please sign in to comment.