Skip to content

Commit 5371b6d

Browse files
authored
Merge pull request #3414 from jjjadand/docusaurus-version
Update jetson_FAQ.md
2 parents 82eb135 + dce7df1 commit 5371b6d

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

docs/Edge/NVIDIA_Jetson/FAQs/jetson_FAQ.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,35 @@ sudo apt-mark hold nvidia-l4t-core
7777

7878
For details, please click [here](/how_to_build_the_ko_module_for_seeed_jetson)
7979

80-
#### Q17:How to encrypt the disk of Jetson before flashing the image?
80+
#### Q17:How can I mount an external hard drive formatted with exFAT on Jetson (JetPack 6)?
81+
82+
First, install the dependencies:
83+
```
84+
sudo apt install build-essential autoconf automake libtool pkg-config
85+
sudo apt install git libfuse-dev
86+
```
87+
88+
Then clone and build the exFAT driver from source:
89+
```
90+
git clone https://github.com/relan/exfat
91+
cd exfat
92+
autoreconf --install
93+
./configure
94+
make
95+
sudo make install
96+
```
97+
98+
Next, manually mount the disk to a local directory:
99+
```
100+
lsblk # Check the device name of your external hard drive
101+
102+
sudo mkdir /media/seeed/tmp-exfat # Create a mount point
103+
sudo mount.exfat /dev/sda3 /media/seeed/tmp-exfat/
104+
```
105+
106+
This mounts the exFAT-formatted external drive to `/media/seeed/tmp-exfat/` so that it can be accessed normally on the Jetson.
107+
108+
#### Q18:How to encrypt the disk of Jetson before flashing the image?
81109

82110
For details, please click [here](/how_to_encrypt_the_disk_for_jetson)
83111

@@ -95,3 +123,4 @@ Thank you for choosing our products! We are **here** to provide you with differe
95123
<a href="https://discord.gg/eWkprNDMU7" class="button_discord"></a>
96124
<a href="https://github.com/Seeed-Studio/wiki-documents/discussions/69" class="button_discussion"></a>
97125
</div>
126+

0 commit comments

Comments
 (0)