Skip to content

Commit e64cc36

Browse files
authored
Update nfs-performance.md
1 parent e75a269 commit e64cc36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/files/nfs-performance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn ways to improve the performance of NFS Azure file shares at s
44
author: khdownie
55
ms.service: azure-file-storage
66
ms.topic: conceptual
7-
ms.date: 09/25/2023
7+
ms.date: 09/26/2023
88
ms.author: kendownie
99
---
1010

@@ -33,11 +33,11 @@ To change this value, set the read-ahead size by adding a rule in udev, a Linux
3333
```output
3434
SUBSYSTEM=="bdi" \
3535
, ACTION=="add" \
36-
, PROGRAM="<absolute_path>/awk -v bdi=$kernel 'BEGIN{ret=1} {if ($4 == bdi) {ret=0}} END{exit ret}' /proc/fs/nfsfs/volumes" \
36+
, PROGRAM="/usr/bin/awk -v bdi=$kernel 'BEGIN{ret=1} {if ($4 == bdi) {ret=0}} END{exit ret}' /proc/fs/nfsfs/volumes" \
3737
, ATTR{read_ahead_kb}="15360"
3838
```
3939

40-
1. In a console, apply the udev rule by running the [udevadm](https://www.man7.org/linux/man-pages/man8/udevadm.8.html) command as a superuser:
40+
1. In a console, apply the udev rule by running the [udevadm](https://www.man7.org/linux/man-pages/man8/udevadm.8.html) command as a superuser and reloading the rules files and other databases. You only need to run this command once, to make udev aware of the new file.
4141

4242
```bash
4343
sudo udevadm control --reload

0 commit comments

Comments
 (0)