查看磁盘信息
[root@localhost ~]# df -h
文件系统 容量 已用 可用 已用% 挂载点
tmpfs 910M 32K 910M 1% /dev/shm
[root@localhost ~]#
挂载/cache目录
[root@localhost /]# mkdir /cache
[root@localhost /]# mount tmpfs /cache -t tmpfs -o size=256M
再次查看磁盘信息
[root@localhost /]# df -h
文件系统 容量 已用 可用 已用% 挂载点
tmpfs 910M 32K 910M 1% /dev/shm
tmpfs 256M 0 256M 0% /cache
[root@localhost /]#
实现开机自动挂载/cache目录
[root@localhost ~]# vim /etc/fstab
……此处省略部分内容……
# 挂载内存目录/cache
tmpfs /cache tmpfs size=256M 0 0
[root@localhost ~]#