挂载虚拟盘
内容
```sh
cat /etc/passwd | grep www
mkdir /app/cache
mount -t tmpfs -o size=100M,mode=0755 tmpfs /app/cache
#卸载
umount -l /app/cache
#强制杀死所有进程
fuser -m /app/cache
```
```sh
cat /etc/passwd | grep www
mkdir /app/cache
mount -t tmpfs -o size=100M,mode=0755 tmpfs /app/cache
#卸载
umount -l /app/cache
#强制杀死所有进程
fuser -m /app/cache
```