Skip to content

Commit c470b55

Browse files
authored
Merge pull request #185399 from v-dalc/backupoperator
Data Box: [Update] Backup operator option in robocopy sample (backupoperator)
2 parents 2a3c3a4 + 349d445 commit c470b55

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

articles/databox/data-box-deploy-copy-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: alkohli
77
ms.service: databox
88
ms.subservice: pod
99
ms.topic: tutorial
10-
ms.date: 11/10/2021
10+
ms.date: 01/20/2022
1111
ms.author: alkohli
1212

1313
# Customer intent: As an IT admin, I need to be able to copy data to Data Box to upload on-premises data from my server onto Azure.
@@ -128,7 +128,7 @@ Once you're connected to the Data Box shares, the next step is to copy data. Bef
128128
After you connect to the SMB share, begin the data copy. You can use any SMB-compatible file copy tool, such as Robocopy, to copy your data. Multiple copy jobs can be initiated using Robocopy. Use the following command:
129129

130130
```console
131-
robocopy <Source> <Target> * /e /r:3 /w:60 /is /nfl /ndl /np /MT:32 or 64 /fft /Log+:<LogFile>
131+
robocopy <Source> <Target> * /e /r:3 /w:60 /is /nfl /ndl /np /MT:32 or 64 /fft /B /Log+:<LogFile>
132132
```
133133

134134
The attributes are described in the following table.
@@ -144,7 +144,7 @@ The attributes are described in the following table.
144144
|/np |Specifies that the progress of the copying operation (the number of files or directories copied so far) will not be displayed. Displaying the progress significantly lowers the performance. |
145145
|/MT | Use multithreading, recommended 32 or 64 threads. This option not used with encrypted files. You may need to separate encrypted and unencrypted files. However, single threaded copy significantly lowers the performance. |
146146
|/fft | Use to reduce the time stamp granularity for any file system. |
147-
|/b | Copies files in Backup mode. |
147+
|/B | Copies files in Backup mode. |
148148
|/z | Copies files in Restart mode, use this if the environment is unstable. This option reduces throughput due to additional logging. |
149149
| /zb | Uses Restart mode. If access is denied, this option uses Backup mode. This option reduces throughput due to checkpointing. |
150150
|/efsraw | Copies all encrypted files in EFS raw mode. Use only with encrypted files. |

articles/databox/data-box-file-acls-preservation.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: alkohli
77
ms.service: databox
88
ms.subservice: pod
99
ms.topic: conceptual
10-
ms.date: 07/16/2021
10+
ms.date: 01/20/2022
1111
ms.author: alkohli
1212
---
1313

@@ -74,10 +74,10 @@ To transfer the ACLs, timestamps, and attributes for your data, use the followin
7474

7575
To copy data to your Data Box via SMB, use an SMB-compatible file copy tool such as `robocopy`. The following sample command copies all files and directories, transferring metadata along with the data.
7676

77-
When using the `/copyall` or `/dcopy:DAT` option, make sure the required Backup Operator privileges aren't disabled. For more information, see [Use the local web UI to administer your Data Box and Data Box Heavy](./data-box-local-web-ui-admin.md).
77+
When using the `/copyall` or `/dcopy:DAT` option, make sure the required Backup Operator privileges aren't disabled. For more information, see [Use the local web UI to administer your Data Box and Data Box Heavy](./data-box-local-web-ui-admin.md).
7878

7979
```console
80-
robocopy <Source> <Target> * /copyall /e /dcopy:DAT /r:3 /w:60 /is /nfl /ndl /np /MT:32 or 64 /fft /log+:<LogFile>
80+
robocopy <Source> <Target> * /copyall /e /dcopy:DAT /B /r:3 /w:60 /is /nfl /ndl /np /MT:32 or 64 /fft /log+:<LogFile>
8181
```
8282

8383
where
@@ -87,6 +87,7 @@ where
8787
|`/copyall` |Copies all attributes.|
8888
|`/e` |Copies subdirectories, including empty directories. |
8989
|`/dcopy:DAT` |Copies data, attributes, and timestamps. Note: The /dcopy:DAT option must be used to transfer `CreationTime` on directories. |
90+
|`/B` |Copies files in Backup mode. |
9091
|`/r:3` |Specifies 3 retries on failed copies. |
9192
|`/w:60` |Specifies a wait time of 60 seconds between retries. |
9293
|`/is` |Includes the same files. |

0 commit comments

Comments
 (0)