# Linux Mounting SD Card

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

```bash
fdisk -l
```

<figure><img src="https://1287130752-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FvVJ0h2a4qMIhB1I8GdV8%2Fuploads%2Fgit-blob-507e3d0e12b490117fa5698f5a7f15538423ea8d%2Fimage.png?alt=media" 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
```
