# Use sshfs in proxmox lxc container
On the first try you’ll get this error when trying to mount some sshfs:
```
fuse: device not found, try 'modprobe fuse' first
```
Fuse is build into the proxmox kernel an only needs to be “connected” in the lxc containter. Execute:
```
mknod -m 666 /dev/fuse c 10 229
```
[source](https://forum.proxmox.com/threads/kernel-module-fuse-for-lxc.24855/post-126112)
