You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/databox/data-box-disk-deploy-set-up.md
+46-60Lines changed: 46 additions & 60 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,7 @@ Perform the following steps to connect and unlock your disks.
124
124
1. In the Azure portal, navigate to your Data Box Disk Order. Search for it by navigating to **General > All resources**, then select your Data Box Disk Order.
125
125
2. Download the Data Box Disk toolset corresponding to the Windows client. This toolset contains 3 tools: Data Box Disk Unlock tool, Data Box Disk Validation tool, and Data Box Disk Split Copy tool.
126
126
127
-
In this procedure, you will use only the Data Box Disk Unlock tool. The other two tools will be used later.
127
+
This procedure requires only the Data Box Disk Unlock tool. The remaining tools will be used in subsequent steps.
128
128
129
129
> [!div class="nextstepaction"]
130
130
> [Download Data Box Disk toolset for Windows](https://aka.ms/databoxdisktoolswin)
@@ -168,57 +168,10 @@ Perform the following steps to connect and unlock your disks.
168
168
169
169
If you run into any issues while unlocking the disks, see how to [troubleshoot unlock issues](data-box-disk-troubleshoot-unlock.md).
170
170
171
-
<!--
172
-
This is the end.
173
-
174
-
175
-
176
-
Perform the following steps to connect to and unlock your self-encrypted Data Box Disks on a Windows client.
177
-
178
-
1. Using the [Azure portal](https://portal.azure.com), navigate to your Data Box Disk order. You might find it helpful to search for your order by navigating to *General* > *All resources*, and then selecting your Data Box Disk order.
179
-
1. Download the [Data Box Disk toolset](https://aka.ms/databoxdisktoolswin) for the Windows client. This toolset contains four tools: the **Data Box Disk Unlock tool**, the **Data Box SED Unlock tool**, the **Data Box Disk Validation tool**, and the **Data Box Disk Split Copy tool**.
180
-
181
-
> [!IMPORTANT]
182
-
> Only the **Data Box SED Unlock tool** is used with self-encrypted disks. Neither the **Data Box Disk Validation tool** nor **Data Box Disk Split Copy tool** are supported for hardware encryption-enabled disks.
183
-
184
-
In this procedure, you use the **Data Box SED Unlock tool** only.
185
-
1. Extract the toolset to a location on the same computer you use to copy your data.
186
-
1. Open a **Command Prompt** window or run **Windows PowerShell** with elevated privileges on the same computer.
187
-
1. Verify that your client computer meets the operating system requirements for the **Data Box SED Unlock tool**. Run a system check in the folder containing the extracted **Data Box Disk toolset** as shown in the following example.
188
-
189
-
```powershell
190
-
.\DataBoxDiskUnlock.exe /SystemCheck /SED
191
-
```
192
-
193
-
The following sample output confirms that your client computer meets the operating system requirements.
194
-
195
-
:::image type="content" source="media/data-box-disk-deploy-set-up/system-check.png" alt-text="Screen capture showing the results of a successful system check using the Data Box Disk Unlock tool." lightbox="media/data-box-disk-deploy-set-up/system-check-lrg.png":::
196
-
197
-
1. Run `DataBoxDiskUnlock.exe`. Use the passkey obtained in the **Connect to disks and get the passkey** section as the `Passkey` parameter value as shown in the following example.
A successful response includes the drive letter assigned to the disk as shown in the following example.
204
-
205
-
:::image type="content" source="media/data-box-disk-deploy-set-up/disk-unlocked-win.png" alt-text="Screen capture showing a successful response from the Data Box Disk Unlock tool containing the drive letter assigned." lightbox="media/data-box-disk-deploy-set-up/disk-unlocked-win-lrg.png":::
206
-
207
-
1. Repeat the unlock steps for any future disk reinserts. Use the `help` command if you need help with the Data Box Disk unlock tool.
208
-
209
-
> [!NOTE]
210
-
> Don't format or modify the contents or existing file structure of the disk.
211
-
212
-
If you run into any issues while unlocking the disks, see how to [troubleshoot unlock issues](data-box-disk-troubleshoot-unlock.md).
Perform the following steps to connect and unlock hardware encrypted Data Box disks on a Linux-based machine.
219
174
220
-
221
-
222
175
1. The Trusted Platofrm Module (TPM) must be enabled on Linux systems for SATA-based drives. To enable TPM, set `libata.allow_tpm` to `1` by editing the GRUB config as shown in the following distro-specific examples. More details can be found on the Drive-Trust-Alliance public Wiki located at [https://github.com/Drive-Trust-Alliance/sedutil/wiki](https://github.com/Drive-Trust-Alliance/sedutil/wiki).
223
176
224
177
> [!WARNING]
@@ -233,8 +186,8 @@ Perform the following steps to connect and unlock hardware encrypted Data Box di
233
186
```bash
234
187
sudo nano /etc/default/grub
235
188
236
-
#Manually add \"libata.allow_tpm=1\" to the grub command line argument
@@ -273,9 +226,16 @@ Perform the following steps to connect and unlock hardware encrypted Data Box di
273
226
> [!IMPORTANT]
274
227
> SEDUtil is an external utility for Self-Encrypting Drives. This is not managed by Microsoft. More information, including license information for this utility, can be found at [https://sedutil.com/](https://sedutil.com/).
275
228
276
-
1. Extract `SEDUtil` to a local path on the machine and add the extracted tool path to the `PATH` environment variable. This is required in a later step when the utility utilizes `SEDUtil` to unlock the disk.
229
+
1. Extract `SEDUtil` to a local path on the machine and add the extracted tool path to the `PATH` environment variable using the distro-agnotic example. This is required in a later step when the utility utilizes `SEDUtil` to unlock the disk.
230
+
231
+
```bash
232
+
chmod +x /path/to/sedutil-cli
233
+
234
+
#add a symbolic link to the extracted sedutil tool
1. Validate that `SEDUtil` has been extracted to a local path and that the `PATH` environment variable contains the it's path. Use the following command to perform the Validation.
238
+
1. The `sedutil-cli –scan` command lists all the drives connected to the server. The command is distro agnostic.
279
239
280
240
```bash
281
241
sudo sedutil-cli --scan
@@ -297,7 +257,11 @@ Perform the following steps to connect and unlock hardware encrypted Data Box di
297
257
298
258
```bash
299
259
chmod +x DataBoxDiskUnlock
300
-
sudo ./DataBoxDiskUnlock /Volumes:'/dev/sdb' /PassKey:'<Your passkey from Azure portal>' /sed
260
+
261
+
#add a symbolic link to the downloaded DataBoxDiskUnlock tool
The following example output indicates that the volume was successfully unlocked. The mount point is also displayed for the volume in whick your data can be copied.
@@ -310,21 +274,42 @@ Perform the following steps to connect and unlock hardware encrypted Data Box di
310
274
You can use the help switch if you need additional assistance with the Data Box Disk Unlock Utility as shown in the following example.
311
275
312
276
```bash
313
-
sudo ./DataBoxDiskUnlock /Help /SED
277
+
sudo ./DataBoxDiskUnlock /Help
314
278
```
315
279
316
280
The following image shows the sample output.
317
281
318
282
:::image type="content" source="media/data-box-disk-deploy-set-up/help-output.png" alt-text="Screen capture displaying sample output from the Data Box Disk Unlock Utility help command." lightbox="media/data-box-disk-deploy-set-up/help-output-lrg.png":::
319
283
320
284
1. After the disk is unlocked, you can go to the mount point and view the contents of the disk. You are now ready to copy the data to folders based on the desired destination data type.
321
-
1. After the required data is copied to the disk, make sure to unmount and remove the disk safely using the following command.
285
+
1. After you've finished copying your data to the disk, make sure to unmount and remove the disk safely using the following command.
286
+
322
287
```bash
323
-
sudo ./DataBoxDiskUnlock /Unmount /sed
288
+
sudo ./DataBoxDiskUnlock /Unmount /SED
324
289
```
325
290
326
291
The following example output confirms that the volume unmounted successfully.
327
292
293
+
:::image type="content" source="media/data-box-disk-deploy-set-up/disk-unmount.png" alt-text="Screen capture displaying sample output showing the Data Box Disk successfully unmounted." lightbox="media/data-box-disk-deploy-set-up/disk-unmount-lrg.png":::
294
+
295
+
1. You can validate the data on your disk by connecting to a Windows-based machine with a supported operating system. Be sure to review the [OS requirements](data-box-disk-system-requirements.md#supported-operating-systems-for-clients) for Windows-based operating systems before connecting disks to your local machine.
296
+
297
+
Perform the following steps to unlock self-encrypting disks using Windows-based machines.
298
+
299
+
- Download the [Data Box Disk toolset](https://aka.ms/databoxdisktoolswin) for Windows clients. This toolset contains four tools: the Data Box Disk Unlock tool, the Data Box SED Unlock tool, the Data Box Disk Validation tool, and the Data Box Disk Split Copy tool. Extract the toolset on the same computer that you will use to validate your data.
300
+
- Connect your Data Box Disk to an available SATA 3 connection on your Windows-based machine.
301
+
- Using a command prompt or PowerShell, run the following command to unlock self-encrypting disks.
The following example output confirms that the disk was successfully unlocked.
308
+
309
+
:::image type="content" source="media/data-box-disk-deploy-set-up/disk-unlocked-windows.png" alt-text="Screen capture displaying sample output showing the Data Box Disk successfully unlocked on a Windows-based machine." lightbox="media/data-box-disk-deploy-set-up/disk-unlocked-windows-lrg.png":::
310
+
311
+
- Make sure to safely remove drives before ejecting them.
312
+
328
313
If you encounter issues while unlocking the disks, refer to the [troubleshoot unlock issues](data-box-disk-troubleshoot-unlock.md) article.
The following example output confirms that the volume unmounted successfully.
@@ -511,8 +496,9 @@ Perform the following steps to connect and unlock software encrypted Data Box di
511
496
Run the Data Box Disk Unlock tool. Get the passkey from **General > Device details** in the Azure portal and provide it here. Optionally specify a list of BitLocker encrypted volumes within single quotes to unlock.
512
497
513
498
```
514
-
sudo ./DataBoxDiskUnlock /PassKey:'<Your passkey from Azure portal>'
499
+
sudo ./DataBoxDiskUnlock /PassKey:'<passkey>'
515
500
```
501
+
516
502
5. Repeat the unlock steps for any future disk reinserts. Use the help command if you need help with the Data Box Disk unlock tool.
517
503
518
504
After the disk is unlocked, you can view the contents of the disk.
0 commit comments