You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Customer intent: As a Linux system administrator, I want to mount an NFS Azure file share, so that I can securely access and manage data stored in Azure from my Linux environment.
11
11
---
@@ -110,13 +110,35 @@ sudo mount -t nfs <YourStorageAccountName>.core.windows.net:/<YourStorageAccount
110
110
111
111
### Mount an NFS share using /etc/fstab
112
112
113
-
If you want the NFS file share to automatically mount every time the Linux server or VM boots, create a record in the **/etc/fstab** file for your Azure file share. Replace `YourStorageAccountName` and `FileShareName` with your information.
113
+
If you want the NFS file share to automatically mount every time the Linux server or VM boots, create a record in the **/etc/fstab** file for your Azure file share. The record will differ depending on whether or not you're using the AZNFS Mount Helper or the native NFS mount commands.
114
+
115
+
To determine whether the AZNFS Mount Helper package is installed on your client, run the following command:
116
+
117
+
```bash
118
+
systemctl is-active --quiet aznfswatchdog &&echo -e "\nAZNFS Mount Helper is installed! \n"
119
+
```
120
+
121
+
If the package is installed, then the message `AZNFS Mount Helper is installed!` appears.
122
+
123
+
The record in **/etc/fstab** should look like this if you're using the AZNFS Mount Helper and want to mount the share using encryption in transit:
For more information, enter the command `man fstab` from the Linux command line.
141
+
Remember to replace `<YourStorageAccountName>` and `<FileShareName>` with your information. For more information, enter the command `man fstab` from the Linux command line.
0 commit comments