Skip to content

Commit 5c0fafb

Browse files
committed
add ubuntu install instructions
1 parent 99c4b5c commit 5c0fafb

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

articles/azure-netapp-files/configure-access-control-lists.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,19 @@ ACLs contain access control entities (ACEs), which specify the permissions (read
1919
- ACLs can only be configured on NFS4.1 volumes. You can [convert a volume from NFSv3 to NFSv4.1](convert-nfsv3-nfsv41.md).
2020

2121
- You must have two packages installed:
22-
- `nfs-utils` to mount NFS volumes
23-
- `nfs-acl-tools` to view and modify NFSv4 ACLs.
24-
If you do not have either, you can install them:
25-
```bash
26-
sudo yum install -y nfs-utils
27-
sudo yum install -y nfs4-acl-tools
28-
```
22+
1. `nfs-utils` to mount NFS volumes
23+
1. `nfs-acl-tools` to view and modify NFSv4 ACLs.
24+
If you do not have either, install them:
25+
- On a Red Hat Enterprise Linux or SuSE Linux instance:
26+
```bash
27+
sudo yum install -y nfs-utils
28+
sudo yum install -y nfs4-acl-tools
29+
```
30+
- On Ubuntu or Debian instance:
31+
```bash
32+
sudo apt-get install nfs-common
33+
sudo apt-get install nfs4-acl-tools
34+
```
2935

3036
## Configure ACLs
3137

0 commit comments

Comments
 (0)