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
This is the format of the `.env/debug.env` file specified in the `.vscode/launch.json` debug configuration
4
+
This is the format of the `.env/debug.env` file specified in the `.vscode/launch.json` debug configuration:
5
5
6
6
```
7
-
ACCESS_KEY=AKXXXXXXXC4PLERT
8
-
SECRET_KEY="2WOz2345678hnowi0EWSS"
9
-
BUCKET= "foobar"
7
+
PZ_ACCESS_KEY=AKXXXXXXXC4PLERT
8
+
PZ_SECRET_KEY="2WOz2345678hnowi0EWSS"
9
+
PZ_BUCKET= "foobar"
10
10
```
11
+
The file `run.env` is a sample input environment variable file for use when initiating the code with a stand-along container. Use the argument `--env-file .env/run.env` to specify the file.
Open Windows Explorer and find the photo (or document) in question.
33
-
Hold down the Shift key, then right-click the photo.
34
-
In the context menu that appears, find and click Copy as path. This copies the file location to the clipboard.
35
-
(FYI, if you don’t hold down Shift when you right-click, the Copy as path option won’t appear.)
36
-
Press Ctrl-V to paste the text in a file.
31
+
* Open Windows Explorer and find the photo (or document) in question.
32
+
* Hold down the Shift key, then right-click the photo.
33
+
* In the context menu that appears, find and click Copy as path. This copies the file location to the clipboard. (FYI, if you don’t hold down Shift when you right-click, the Copy as path option won’t appear.)
34
+
* Press Ctrl-V to paste the text in a file.
37
35
38
36
Mounting USB on VirtualBox
39
37
--------------------------
38
+
Mounting USB to Linux via VirtualBox to access files from the virtual machine.
39
+
40
+
Attach the USB drive to your system. Wait for the Operating System to recognize the removable media.
40
41
41
-
Mounting USB to Linux via VirtualBox to backup files - Create a device filter under USB in Virtual Box Manager
42
+
Use the VirtualBox Manager, Select USB, then create (add) a device filter, selecting the USB drive shown in the dialog box.
42
43
43
-
Locate the device:
44
+
>Note: you must power off the virtual machine in Virtual Box Manager and power on after the filter has been created for the USB drive to be recognized by the Linux OS.
45
+
46
+
Locate the device using either of these Linux commands:
44
47
45
48
`lsblk`
46
49
or
50
+
47
51
`sudo fdisk -l`
48
52
49
-
look for `/dev/sdb1` - it may take a few minutes.
53
+
look for `/dev/sdb1` - it may take a few minutes.
54
+
55
+
```
56
+
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
57
+
sda 8:0 0 16G 0 disk
58
+
├─sda1 8:1 0 1M 0 part
59
+
├─sda2 8:2 0 1G 0 part /boot
60
+
└─sda3 8:3 0 15G 0 part
61
+
└─ubuntu--vg-ubuntu--lv 253:0 0 15G 0 lvm /
62
+
sdb 8:16 1 14.9G 0 disk
63
+
└─sdb1 8:17 1 14.9G 0 part
64
+
sr0 11:0 1 1024M 0 rom
65
+
```
66
+
Create a mount point and mount the media:
50
67
51
68
```bash
52
69
sudo mkdir /media/usb
53
70
sudo mount /dev/sdb1 /media/usb
71
+
```
72
+
73
+
After mounting, the mount point is shown:
74
+
75
+
```
76
+
administrator@flint:~$ lsblk
77
+
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
78
+
sda 8:0 0 16G 0 disk
79
+
├─sda1 8:1 0 1M 0 part
80
+
├─sda2 8:2 0 1G 0 part /boot
81
+
└─sda3 8:3 0 15G 0 part
82
+
└─ubuntu--vg-ubuntu--lv 253:0 0 15G 0 lvm /
83
+
sdb 8:16 1 14.9G 0 disk
84
+
└─sdb1 8:17 1 14.9G 0 part /media/usb
85
+
sr0 11:0 1 1024M 0 rom
86
+
```
87
+
88
+
You can unmount the device using the command:
89
+
90
+
```bash
54
91
sudo umount /dev/sdb1
55
92
```
56
93
@@ -61,20 +98,19 @@ refer to: https://csurfer.github.io/rake-nltk/_build/html/index.html
61
98
62
99
Converting to US-ASCII
63
100
----------------------
101
+
Metadata characters must be US-ASCII. There are also limits on the size of the metadata in the HTTP header.
64
102
65
-
The metadata characters should be US-ASCII. There are also limites on the size of the metadata in the HTTP header.
```minio.error.S3Error: S3 operation failed; code: SignatureDoesNotMatch, message: The request signature we calculated does not match the signature you provided. Check your key and signing method.```
76
112
77
-
may be the result of non-supported data types in the meta data. For example, lists with a length of > 1.
113
+
is the result of non-supported data types in the meta data. For example, lists with a length of > 1.
0 commit comments