> For the complete documentation index, see [llms.txt](https://tk233.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tk233.gitbook.io/notes/tools/ubuntu/linux-mounting-sd-card.md).

# Linux Mounting SD Card

List all the cards by using command. You might want to use sudo priviledge.

```bash
fdisk -l
```

<figure><img src="/files/AZggyL3pZTsY79520zLu" alt=""><figcaption></figcaption></figure>

Create mounting directory by

```bash
mkdir /mnt/sdcard
```

Mount

```bash
sudo mount /dev/sdd2 /mnt/sdcard
```

after mounting, reload the disk with the following command

```bash
systemctl daemon-reload
```

Unmount

```bash
sudo umount /mnt/sdcard
```
