Skip to content

Commit ae0c234

Browse files
authored
Merge pull request #107304 from priestlg/gdpBug45866-031120
Fixed bug #45866. Updated Step #2 in Connect to disks
2 parents 1d25db3 + 2ebad63 commit ae0c234

File tree

1 file changed

+38
-36
lines changed

1 file changed

+38
-36
lines changed

articles/databox/data-box-disk-deploy-set-up.md

Lines changed: 38 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -52,49 +52,49 @@ Before you begin, make sure that:
5252

5353
Perform the following steps to unpack your disks.
5454

55-
1. The Data Box Disks are mailed in a small shipping Box. Open the box and remove its contents. Check that the box has 1 to 5 solid-state disks (SSDs) and a USB connecting cable per disk. Inspect the box for any evidence of tampering, or any other obvious damage.
55+
1. The Data Box Disks are mailed in a small shipping Box. Open the box and remove its contents. Check that the box has 1 to 5 solid-state disks (SSDs) and a USB connecting cable per disk. Inspect the box for any evidence of tampering, or any other obvious damage.
5656

5757
![Data Box Disk shipping package](media/data-box-disk-deploy-set-up/data-box-disk-ship-package1.png)
5858

5959
2. If the shipping box is tampered or severely damaged, do not open the box. Contact Microsoft Support to help you assess whether the disks are in good working order and if they need to ship you a replacement.
60-
3. Verify that the box has a clear sleeve containing a shipping label (under the current label) for return shipment. If this label is lost or damaged, you can always download and print a new one from the Azure portal.
60+
3. Verify that the box has a clear sleeve containing a shipping label (under the current label) for return shipment. If this label is lost or damaged, you can always download and print a new one from the Azure portal.
6161

6262
![Data Box Disk shipping label](media/data-box-disk-deploy-set-up/data-box-disk-package-ship-label.png)
6363

6464
4. Save the box and packaging foam for return shipment of the disks.
6565

66-
## Connect to disks and get the passkey
66+
## Connect to disks and get the passkey
6767

68-
1. Use the included cable to connect the disk to the client computer running a supported OS as stated in the prerequisites.
68+
1. Use the included cable to connect the disk to the client computer running a supported OS as stated in the prerequisites.
6969

70-
![Data Box Disk connect](media/data-box-disk-deploy-set-up/data-box-disk-connect-unlock.png)
71-
72-
2. In the Azure portal, go to **General > Device details**. Use the copy icon to copy the passkey. This passkey will be used to unlock the disks.
70+
![Data Box Disk connect](media/data-box-disk-deploy-set-up/data-box-disk-connect-unlock.png)
71+
72+
2. 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. Use the copy icon to copy the passkey. This passkey will be used to unlock the disks.
7373

74-
![Data Box Disk unlock passkey](media/data-box-disk-deploy-set-up/data-box-disk-get-passkey.png)
74+
![Data Box Disk unlock passkey](media/data-box-disk-deploy-set-up/data-box-disk-get-passkey.png)
7575

7676
Depending on whether you are connected to a Windows or Linux client, the steps to unlock the disks are different.
7777

7878
## Unlock disks on Windows client
7979

8080
Perform the following steps to connect and unlock your disks.
81-
82-
1. In the Azure portal, go to **General > Device details**.
83-
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.
81+
82+
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.
83+
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.
8484

8585
In this procedure, you will use only the Data Box Disk Unlock tool. The other two tools will be used later.
8686

8787
> [!div class="nextstepaction"]
88-
> [Download Data Box Disk toolset for Windows](https://aka.ms/databoxdisktoolswin)
88+
> [Download Data Box Disk toolset for Windows](https://aka.ms/databoxdisktoolswin)
8989
90-
3. Extract the toolset on the same computer that you will use to copy the data.
90+
3. Extract the toolset on the same computer that you will use to copy the data.
9191
4. Open a Command Prompt window or run Windows PowerShell as administrator on the same computer.
92-
5. (Optional) To verify the computer that you are using to unlock the disk meets the operating system requirements, run the system check command. A sample output is shown below.
92+
5. (Optional) To verify the computer that you are using to unlock the disk meets the operating system requirements, run the system check command. A sample output is shown below.
9393

9494
```powershell
9595
Windows PowerShell
9696
Copyright (C) Microsoft Corporation. All rights reserved.
97-
97+
9898
PS C:\DataBoxDiskUnlockTool\DiskUnlock> .\DataBoxDiskUnlock.exe /SystemCheck
9999
Successfully verified that the system can run the tool.
100100
PS C:\DataBoxDiskUnlockTool\DiskUnlock>
@@ -107,50 +107,51 @@ Perform the following steps to connect and unlock your disks.
107107
PS C:\DataBoxDiskUnlockTool\DiskUnlock> .\DataBoxDiskUnlock.exe
108108
Enter the passkey :
109109
testpasskey1
110-
110+
111111
Following volumes are unlocked and verified.
112112
Volume drive letters: D:
113-
113+
114114
PS C:\DataBoxDiskUnlockTool\DiskUnlock>
115115
```
116116
117-
7. Repeat the unlock steps for any future disk reinserts. Use the `help` command if you need help with the Data Box Disk unlock tool.
117+
7. Repeat the unlock steps for any future disk reinserts. Use the `help` command if you need help with the Data Box Disk unlock tool.
118118
119119
```powershell
120120
PS C:\DataBoxDiskUnlockTool\DiskUnlock> .\DataBoxDiskUnlock.exe /help
121121
USAGE:
122122
DataBoxUnlock /PassKey:<passkey_from_Azure_portal>
123-
123+
124124
Example: DataBoxUnlock /PassKey:<your passkey>
125125
Example: DataBoxUnlock /SystemCheck
126126
Example: DataBoxUnlock /Help
127-
127+
128128
/PassKey: Get this passkey from Azure DataBox Disk order. The passkey unlocks your disks.
129129
/SystemCheck: This option checks if your system meets the requirements to run the tool.
130130
/Help: This option provides help on cmdlet usage and examples.
131-
131+
132132
PS C:\DataBoxDiskUnlockTool\DiskUnlock>
133133
```
134-
8. Once the disk is unlocked, you can view the contents of the disk.
134+
135+
8. Once the disk is unlocked, you can view the contents of the disk.
135136
136137
![Data Box Disk contents](media/data-box-disk-deploy-set-up/data-box-disk-content.png)
137138
138-
If you run into any issues while unlocking the disks, see how to [troubleshoot unlock issues](data-box-disk-troubleshoot-unlock.md).
139+
If you run into any issues while unlocking the disks, see how to [troubleshoot unlock issues](data-box-disk-troubleshoot-unlock.md).
139140
140141
## Unlock disks on Linux client
141142
142-
1. In the Azure portal, go to **General > Device details**.
143+
1. In the Azure portal, go to **General > Device details**.
143144
2. Download the Data Box Disk toolset corresponding to the Linux client.
144145
145146
> [!div class="nextstepaction"]
146-
> [Download Data Box Disk toolset for Linux](https://aka.ms/databoxdisktoolslinux)
147+
> [Download Data Box Disk toolset for Linux](https://aka.ms/databoxdisktoolslinux)
147148
148-
3. On your Linux client, open a terminal. Navigate to the folder where you downloaded the software. Change the file permissions so that you can execute these files. Type the following command:
149+
3. On your Linux client, open a terminal. Navigate to the folder where you downloaded the software. Change the file permissions so that you can execute these files. Type the following command:
149150
150151
`chmod +x DataBoxDiskUnlock_x86_64`
151-
152+
152153
`chmod +x DataBoxDiskUnlock_Prep.sh`
153-
154+
154155
A sample output is shown below. Once the chmod command is run, you can verify that the file permissions are changed by running the `ls` command.
155156
156157
```
@@ -160,6 +161,7 @@ If you run into any issues while unlocking the disks, see how to [troubleshoot u
160161
-rwxrwxr-x. 1 user user 1152664 Aug 10 17:26 DataBoxDiskUnlock_x86_64
161162
-rwxrwxr-x. 1 user user 795 Aug 5 23:26 DataBoxDiskUnlock_Prep.sh
162163
```
164+
163165
4. Execute the script so that it installs all the binaries needed for the Data Box Disk Unlock software. Use `sudo` to run the command as root. Once the binaries are successfully installed, you will see a note to that effect on the terminal.
164166
165167
`sudo ./DataBoxDiskUnlock_Prep.sh`
@@ -171,15 +173,15 @@ If you run into any issues while unlocking the disks, see how to [troubleshoot u
171173
OS = CentOS Version = 6.9
172174
Release = CentOS release 6.9 (Final)
173175
Architecture = x64
174-
176+
175177
The script will install the following packages and dependencies.
176178
epel-release
177179
dislocker
178180
ntfs-3g
179181
fuse-dislocker
180182
Do you wish to continue? y|n :|
181183
```
182-
184+
183185
184186
5. Type `y` to continue the install. The packages that the script installs are:
185187
- **epel-release** - Repository that contains the following three packages.
@@ -220,12 +222,12 @@ If you run into any issues while unlocking the disks, see how to [troubleshoot u
220222
221223
Type the following command.
222224
223-
`sudo ./DataBoxDiskUnlock_x86_64 /PassKey:<Your passkey from Azure portal>
225+
`sudo ./DataBoxDiskUnlock_x86_64 /PassKey:'<Your passkey from Azure portal>'
224226
225227
The sample output is shown below.
226228
227229
```
228-
[user@localhost Downloads]$ sudo ./DataBoxDiskUnlock_x86_64 /Passkey:qwerqwerqwer
230+
[user@localhost Downloads]$ sudo ./DataBoxDiskUnlock_x86_64 /Passkey:'qwerqwerqwer'
229231
230232
START: Mon Aug 13 14:25:49 2018
231233
Volumes: /dev/sdbl
@@ -247,10 +249,10 @@ If you run into any issues while unlocking the disks, see how to [troubleshoot u
247249
[user@localhost Downloads]$ sudo ./DataBoxDiskUnlock_x86_64 /Help
248250
START: Mon Aug 13 14:29:20 2018
249251
USAGE:
250-
sudo DataBoxDiskUnlock /PassKey:<passkey from Azure_portal>
252+
sudo DataBoxDiskUnlock /PassKey:'<passkey from Azure_portal>'
251253
252-
Example: sudo DataBoxDiskUnlock /PassKey:passkey
253-
Example: sudo DataBoxDiskUnlock /PassKey:passkey /Volumes:/dev/sdbl
254+
Example: sudo DataBoxDiskUnlock /PassKey:'passkey'
255+
Example: sudo DataBoxDiskUnlock /PassKey:'passkey' /Volumes:'/dev/sdbl'
254256
Example: sudo DataBoxDiskUnlock /Help Example: sudo DataBoxDiskUnlock /Clean
255257
256258
/PassKey: This option takes a passkey as input and unlocks all of your disks.
@@ -305,7 +307,7 @@ If you run into any issues while unlocking the disks, see how to [troubleshoot u
305307
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.
306308
307309
```
308-
sudo ./DataBoxDiskUnlock_x86_64 /PassKey:<Your passkey from Azure portal>
310+
sudo ./DataBoxDiskUnlock_x86_64 /PassKey:'<Your passkey from Azure portal>'
309311
```
310312
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.
311313

0 commit comments

Comments
 (0)