Skip to content

Commit 5598373

Browse files
Merge pull request #312404 from khdownie/patch-7
Wait 30 seconds for .snapshots dir to become available
2 parents e4f730e + bc49ddd commit 5598373

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

articles/storage/files/storage-snapshots-files.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use Azure Files share snapshots
2+
title: Use Azure Files Share Snapshots
33
description: A share snapshot is a read-only, point-in-time copy of an Azure file share that you can use to recover previous versions of a file. Learn how to take snapshots using the Azure portal, Azure PowerShell, and Azure CLI.
44
author: khdownie
55
ms.service: azure-file-storage
@@ -383,21 +383,21 @@ az storage share list --account-name <storage-account-name> --include-snapshots
383383

384384
### Restore from an NFS Azure file share snapshot
385385

386-
To mount an NFS Azure file share snapshot to a Linux VM (NFS client) and restore files, follow these steps.
386+
To mount an NFS Azure file share snapshot to a Linux VM (NFS client) and restore files, follow these steps.
387387

388388
1. Run the following command in a console. See [Mount options](storage-files-how-to-mount-nfs-shares.md#mount-options) for other recommended mount options. To improve copy performance, mount the snapshot with [nconnect](nfs-performance.md#nfs-nconnect) to use multiple TCP channels.
389389

390390
```bash
391391
sudo mount -o vers=4,minorversion=1,proto=tcp,sec=sys $server:/nfs4account/share /media/nfs
392392
```
393393

394-
1. Change the directory to `/media/nfs/.snapshots` so you can view the available snapshots. The `.snapshots` directory is hidden by default, but you can access and read from it like any directory.
394+
1. Change the directory to `/media/nfs/.snapshots` so you can view the available snapshots. The `.snapshots` directory is hidden by default, but you can access and read from it like any directory. If you just created the snapshot, wait at least 30 seconds for the `.snapshots` directory to become available.
395395

396396
```bash
397397
cd /media/nfs/.snapshots
398398
```
399399

400-
1. List the contents of the `.snapshots` folder.
400+
1. List the contents of the `.snapshots` directory.
401401

402402
```bash
403403
ls

0 commit comments

Comments
 (0)