From 594303452560cece8ea33b1978367609e513ed17 Mon Sep 17 00:00:00 2001 From: Freezed Date: Wed, 12 Oct 2022 18:52:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20=20Update=20NFS=20mount=20option?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/cloud/storage/nas_nfs/guide.de-de.md | 16 ++++++++-------- pages/cloud/storage/nas_nfs/guide.en-ca.md | 14 +++++++------- pages/cloud/storage/nas_nfs/guide.en-gb.md | 12 ++++++------ pages/cloud/storage/nas_nfs/guide.en-ie.md | 14 +++++++------- pages/cloud/storage/nas_nfs/guide.en-us.md | 10 +++++----- pages/cloud/storage/nas_nfs/guide.es-es.md | 10 +++++----- pages/cloud/storage/nas_nfs/guide.es-us.md | 10 +++++----- pages/cloud/storage/nas_nfs/guide.fr-ca.md | 10 +++++----- pages/cloud/storage/nas_nfs/guide.fr-fr.md | 10 +++++----- pages/cloud/storage/nas_nfs/guide.it-it.md | 10 +++++----- pages/cloud/storage/nas_nfs/guide.pl-pl.md | 10 +++++----- pages/cloud/storage/nas_nfs/guide.pt-pt.md | 10 +++++----- 12 files changed, 68 insertions(+), 68 deletions(-) diff --git a/pages/cloud/storage/nas_nfs/guide.de-de.md b/pages/cloud/storage/nas_nfs/guide.de-de.md index 7bc6700028d..e3ff929ad43 100644 --- a/pages/cloud/storage/nas_nfs/guide.de-de.md +++ b/pages/cloud/storage/nas_nfs/guide.de-de.md @@ -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: @@ -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| @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.en-ca.md b/pages/cloud/storage/nas_nfs/guide.en-ca.md index 8498ebc8791..cb1750e6fb9 100644 --- a/pages/cloud/storage/nas_nfs/guide.en-ca.md +++ b/pages/cloud/storage/nas_nfs/guide.en-ca.md @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.en-gb.md b/pages/cloud/storage/nas_nfs/guide.en-gb.md index 37b35b21d67..0cb16c17ef1 100644 --- a/pages/cloud/storage/nas_nfs/guide.en-gb.md +++ b/pages/cloud/storage/nas_nfs/guide.en-gb.md @@ -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. @@ -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` > @@ -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. @@ -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 diff --git a/pages/cloud/storage/nas_nfs/guide.en-ie.md b/pages/cloud/storage/nas_nfs/guide.en-ie.md index 8db91414f0b..629e28f99d6 100644 --- a/pages/cloud/storage/nas_nfs/guide.en-ie.md +++ b/pages/cloud/storage/nas_nfs/guide.en-ie.md @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.en-us.md b/pages/cloud/storage/nas_nfs/guide.en-us.md index 3f865b863bc..a3f84e8ff51 100644 --- a/pages/cloud/storage/nas_nfs/guide.en-us.md +++ b/pages/cloud/storage/nas_nfs/guide.en-us.md @@ -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| @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.es-es.md b/pages/cloud/storage/nas_nfs/guide.es-es.md index 942738a98e4..aff3514aaf7 100644 --- a/pages/cloud/storage/nas_nfs/guide.es-es.md +++ b/pages/cloud/storage/nas_nfs/guide.es-es.md @@ -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| @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.es-us.md b/pages/cloud/storage/nas_nfs/guide.es-us.md index 1c0522aca14..9fe6b9334e4 100644 --- a/pages/cloud/storage/nas_nfs/guide.es-us.md +++ b/pages/cloud/storage/nas_nfs/guide.es-us.md @@ -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| @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.fr-ca.md b/pages/cloud/storage/nas_nfs/guide.fr-ca.md index 755187f2922..45ea0e8b0a4 100644 --- a/pages/cloud/storage/nas_nfs/guide.fr-ca.md +++ b/pages/cloud/storage/nas_nfs/guide.fr-ca.md @@ -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| @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.fr-fr.md b/pages/cloud/storage/nas_nfs/guide.fr-fr.md index d545932edc7..97e90d29b96 100644 --- a/pages/cloud/storage/nas_nfs/guide.fr-fr.md +++ b/pages/cloud/storage/nas_nfs/guide.fr-fr.md @@ -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| @@ -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| @@ -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| @@ -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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.it-it.md b/pages/cloud/storage/nas_nfs/guide.it-it.md index 5eb469f81a8..f35f6310d2c 100644 --- a/pages/cloud/storage/nas_nfs/guide.it-it.md +++ b/pages/cloud/storage/nas_nfs/guide.it-it.md @@ -37,7 +37,7 @@ A questo punto, utilizza il comando: ```sh -mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT +mount -t nfs IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT ``` |Argomento|Descrizione| @@ -52,14 +52,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT > Per abilitare il mount del NAS all'avvio del sistema, aggiungi al file `/etc/fstab` questa riga di comando: > > ``` -> IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT nfs rw,_netdev,mountproto=tcp 0 0 +> IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT nfs rw 0 0 > ``` > Esempio: ```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 ``` |Argomento|Descrizione| @@ -90,7 +90,7 @@ Riavvia il servizio `rpcbind` con il comando: A questo punto, utilizza il comando: ```sh -mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT +mount -t nfs IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT ``` |Argomento|Descrizione| @@ -105,7 +105,7 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT > Per abilitare il mount del NAS all'avvio del sistema, aggiungi al file `/etc/fstab` questa riga di comando: > > ``` -> IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT nfs rw,_netdev,mountproto=tcp 0 0 +> IP_NAS:/PERCORSO_NFS /CARTELLA_MOUNT nfs rw 0 0 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.pl-pl.md b/pages/cloud/storage/nas_nfs/guide.pl-pl.md index 3d9f1458c63..931d1a6f569 100644 --- a/pages/cloud/storage/nas_nfs/guide.pl-pl.md +++ b/pages/cloud/storage/nas_nfs/guide.pl-pl.md @@ -36,7 +36,7 @@ Następnie użyj polecenia: ```sh -mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE +mount -t nfs IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE ``` |Argument|Opis | @@ -51,14 +51,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE > Przestrzeń NAS może być montowana automatycznie w momencie uruchamiania dystrybucji. W tym celu dodaj poniższe polecenie do pliku /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 > ``` > *Przykład:* ```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|Opis | @@ -89,7 +89,7 @@ Następnie zrestartuj usługę `rpcbind` przy użyciu polecenia: Teraz zastosuj polecenie: ```sh -mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE +mount -t nfs IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE ``` |Argument|Opis | @@ -104,7 +104,7 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE > Przestrzeń NAS może być montowana automatycznie w momencie uruchamiania dystrybucji. W tym celu dodaj poniższe polecenie do pliku /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 > ``` > diff --git a/pages/cloud/storage/nas_nfs/guide.pt-pt.md b/pages/cloud/storage/nas_nfs/guide.pt-pt.md index 0a5ef9e2cd9..4a901dd20bb 100644 --- a/pages/cloud/storage/nas_nfs/guide.pt-pt.md +++ b/pages/cloud/storage/nas_nfs/guide.pt-pt.md @@ -35,7 +35,7 @@ De seguida, utilize o seguinte comando de montagem: ```sh -mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE +mount -t nfs IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE ``` |Argumento|Descrição| @@ -50,14 +50,14 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CHEMIN_NFS /DOSSIER_MONTAGE > Pode automatizar a montagem do NAS ao iniciar a sua distribuição através da seguinte linha que deve adicionar ao ficheiro /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 > ``` > *Por exemplo:* ```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|Descrição| @@ -88,7 +88,7 @@ A seguir, reinicie o serviço `rpcbind` através do seguinte comando: De seguida, utilize o seguinte comando de montagem: ```sh -mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CAMINHO_NFS /PASTA_MONTAGEM +mount -t nfs IP_NAS:/CAMINHO_NFS /PASTA_MONTAGEM ``` |Argumento|Descrição| @@ -103,7 +103,7 @@ mount -t nfs -o _netdev,mountproto=tcp IP_NAS:/CAMINHO_NFS /PASTA_MONTAGEM > Pode automatizar a montagem do NAS ao iniciar a sua distribuição através da seguinte linha que deve adicionar ao ficheiro /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 > ``` >