# Proxmox

# Commands

# Mount folder host to guest

Edit correct ID .conf file using

```bash
nano /etc/pve/lxc/102.conf
```

Add below

```bash
mp0: /mnt/raid10/movies,mp=/mnt/media
```

- mp0 = the first mount point (you can also use mp1, mp2, etc.)
- mp=/mnt/media = where the folder appears inside the container
- The original data is not touched or overwritten

You can also add multiple mount points like this:

```bash
mp0: /mnt/raid10/movies,mp=/mnt/media/movies
mp1: /mnt/raid10/series,mp=/mnt/media/series
```