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: docs/tips_ssd-docker.md
+46-35Lines changed: 46 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Tips - SSD + Docker
2
2
3
-
Once you have your Jetson set up by flashing the latest Jetson Linux (L4T) BSP on it or by flashing the SD card with the whole JetPack image, before embarking on testing out all the great generative AI application using `jetson-containers`, you want to make sure you have a huge storage space for all the containers and the models you will download.
3
+
Once you have your Jetson set up by flashing the latest Jetson Linux (L4T) BSP on it or by flashing the SD card with the whole JetPack image, before embarking on testing out all the great generative AI application using `jetson-containers`, you want to make sure you have a huge storage space for all the containers and the models you will download.
4
4
5
5
We are going to show how you can install SSD on your Jetson, and set it up for Docker.
6
6
@@ -35,27 +35,27 @@ We are going to show how you can install SSD on your Jetson, and set it up for D
35
35
36
36
```log
37
37
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
38
-
loop0 7:0 0 16M 1 loop
39
-
mmcblk1 179:0 0 59.5G 0 disk
38
+
loop0 7:0 0 16M 1 loop
39
+
mmcblk1 179:0 0 59.5G 0 disk
40
40
├─mmcblk1p1 179:1 0 58G 0 part /
41
-
├─mmcblk1p2 179:2 0 128M 0 part
42
-
├─mmcblk1p3 179:3 0 768K 0 part
43
-
├─mmcblk1p4 179:4 0 31.6M 0 part
44
-
├─mmcblk1p5 179:5 0 128M 0 part
45
-
├─mmcblk1p6 179:6 0 768K 0 part
46
-
├─mmcblk1p7 179:7 0 31.6M 0 part
47
-
├─mmcblk1p8 179:8 0 80M 0 part
48
-
├─mmcblk1p9 179:9 0 512K 0 part
49
-
├─mmcblk1p10 179:10 0 64M 0 part
50
-
├─mmcblk1p11 179:11 0 80M 0 part
51
-
├─mmcblk1p12 179:12 0 512K 0 part
52
-
├─mmcblk1p13 179:13 0 64M 0 part
53
-
└─mmcblk1p14 179:14 0 879.5M 0 part
41
+
├─mmcblk1p2 179:2 0 128M 0 part
42
+
├─mmcblk1p3 179:3 0 768K 0 part
43
+
├─mmcblk1p4 179:4 0 31.6M 0 part
44
+
├─mmcblk1p5 179:5 0 128M 0 part
45
+
├─mmcblk1p6 179:6 0 768K 0 part
46
+
├─mmcblk1p7 179:7 0 31.6M 0 part
47
+
├─mmcblk1p8 179:8 0 80M 0 part
48
+
├─mmcblk1p9 179:9 0 512K 0 part
49
+
├─mmcblk1p10 179:10 0 64M 0 part
50
+
├─mmcblk1p11 179:11 0 80M 0 part
51
+
├─mmcblk1p12 179:12 0 512K 0 part
52
+
├─mmcblk1p13 179:13 0 64M 0 part
53
+
└─mmcblk1p14 179:14 0 879.5M 0 part
54
54
zram0 251:0 0 1.8G 0 disk [SWAP]
55
55
zram1 251:1 0 1.8G 0 disk [SWAP]
56
56
zram2 251:2 0 1.8G 0 disk [SWAP]
57
57
zram3 251:3 0 1.8G 0 disk [SWAP]
58
-
nvme0n1 259:0 0 238.5G 0 disk
58
+
nvme0n1 259:0 0 238.5G 0 disk
59
59
```
60
60
61
61
Identify the device corresponding to your SSD. In this case, it is `nvme0n1`.
@@ -66,7 +66,7 @@ We are going to show how you can install SSD on your Jetson, and set it up for D
66
66
sudo mkfs.ext4 /dev/nvme0n1
67
67
```
68
68
69
-
> You can choose any name forthe mount point directory. We use `/ssd` here, butin`jetson-containers`' [setup.md](https://github.com/dusty-nv/jetson-containers/blob/master/docs/setup.md) documentation, `/mnt` is used.
69
+
> You can choose any name forthe mount point directory. We use `/ssd` here, butin`jetson-containers`' [setup.md](https://github.com/dusty-nv/jetson-containers/blob/master/docs/setup.md) documentation, `/mnt` is used.
70
70
71
71
```bash
72
72
sudo mkdir /ssd
@@ -138,23 +138,34 @@ We are going to show how you can install SSD on your Jetson, and set it up for D
0 commit comments