Skip to content

Commit a464e93

Browse files
authored
PR review edit
1 parent 2570087 commit a464e93

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

articles/storage/blobs/network-file-system-protocol-support-how-to.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,23 +78,27 @@ Create a directory on your Linux system, and then mount the container in the sto
7878
mkdir -p /nfsdata
7979
```
8080

81-
2. Mount the container by one of the following methods:
82-
- In both methods replace the `<storage-account-name>` placeholder with the name of your storage account and `<container-name>` with the name of your container.
81+
2. Mount the container by using one of the following methods. In both methods, replace the `<storage-account-name>` placeholder with the name of your storage account, and replace `<container-name>` with the name of your container.
8382

84-
- To have the share mounted automatically on reboot
85-
- create an entry in the /etc/fstab file by adding the following line
83+
- To have the share mounted automatically on reboot:
84+
85+
1. Create an entry in the /etc/fstab file by adding the following line:
86+
8687
```
8788
<storage-account-name>.blob.core.windows.net:/<storage-account-name>/<container-name> /nfsdata nfs defaults,sec=sys,vers=3,nolock,proto=tcp,nofail 0 0
8889
```
89-
- Run the following command to immediately process the /etc/fstab entries and attempt mount the above path
90+
91+
1. Run the following command to immediately process the /etc/fstab entries and attempt to mount the preceding path:
92+
9093
```
9194
mount /nfsdata
9295
```
9396
94-
- For a temporary mount which will not persist across reboots
95-
```
96-
mount -o sec=sys,vers=3,nolock,proto=tcp <storage-account-name>.blob.core.windows.net:/<storage-account-name>/<container-name> /nfsdata
97-
```
97+
- For a temporary mount that doesn't persist across reboots, run the following command:
98+
99+
```
100+
mount -o sec=sys,vers=3,nolock,proto=tcp <storage-account-name>.blob.core.windows.net:/<storage-account-name>/<container-name> /nfsdata
101+
```
98102
99103
## Resolve common errors
100104

0 commit comments

Comments
 (0)