LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1387|回复: 4

How to mount a file in /etc/fstab?

[复制链接]
发表于 2005-10-27 10:20:02 | 显示全部楼层 |阅读模式
I am making 一个文件 to 直接限定一个user home目录的大小, as advised by Kevin in one posting.  It works fine, but my question is how to make this change permanent?

Steps:

1. . dd if=/dev/zero of=/tmp/texthd1 bs=1024 count=102400
这样你就有了100M的文件.

2.mkfs.ext3 /tmp/texthd1
这样你就有了一个100M的ext3的分区

3.mount -o loop /tmp/texthd1 /home/user1
这样你就有了一个大小为100M的用户空间(实际因为有日志系统和Superblock的原故
会小一点)

Great! But after reboot, the setting is gone and you need to run the mount command again....

I  tried to edit /etc/fstab as:
/tmp/texthd1   /home/user1   ext3   defaults  1 2

but failed....my machine even crashed and can't boot up......

Any clue....thanks a lot.....
发表于 2005-10-27 12:56:48 | 显示全部楼层
defaults --> loop
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-10-27 22:40:39 | 显示全部楼层
Thanks....After I change defaults to loop, my machine can boot up correctly, but it is not mounted yet

????
回复 支持 反对

使用道具 举报

发表于 2005-10-28 13:35:55 | 显示全部楼层
Post by zaiwen
Thanks....After I change defaults to loop, my machine can boot up correctly, but it is not mounted yet

????

put a "auto" in the option section.
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-10-28 21:06:18 | 显示全部楼层
Bingo...I changed to "auto" and it works fine....

Thanks!!!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表