linux 使用 fstab 挂载的问题

linux 使用 fstab 挂载的问题

我正在尝试在虚拟机内创建 ramdisk。我认为我可以使用 tmpfs,因为它是 Ubuntu 10.04,附带内核 > 2.6。我将其添加到/etc/fstab

none /mnt/test tmpfs defaults,user,size=1G,mode=0777 0 0

那为什么我尝试mount /mnt/test,我得到:

mount: wrong fs type, bad option, bad superblock on none,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount.<type> helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

该怎么办 ?

答案1

不幸的是,Lucid 手册页没有正确告诉您 tmpfs 的第一个字段。

http://manpages.ubuntu.com/manpages/lucid/man5/fstab.5.html

将“none”替换为“tmpfs”。

相关内容