开发者社区 问答 正文

求高手帮忙配置下啊

求高手帮忙配置下啊
mount /dev/xvdb1 /home
mount: you must specify the filesystem type
咋整呢

已经弄了mkfs.ext3 /dev/xvdb1

展开
收起
caice 2011-07-24 21:32:40 7541 分享 版权
1 条回答
写回答
取消 提交回答
  • 应该是你没有配置/etc/fstab

    nano /etc/fstab
    #加入一行
    /dev/xvdb1              /home     ext3    defaults        0 0

    然后再:
    mount /dev/xvdb1 /home

    --------------------------------------------------------------------
    或者mount -t ext3  /dev/xvdb1 /home
    2011-07-24 22:24:24
    赞同 展开评论
问答地址: