扩展分区
,应该是56G,包括hda5和hda6。
你或许可以从hda2和hda3入手,把他们都删了装linux,1个做swap,一个做根分区,这样就不会超过4个
主分区
了。
或者,从hda5或者hda6入手,在扩展分区里,建几个区都没关系,不过,swap还是放在主分区里比较好。
再或者,内存够大的话,不用swap,或者和XP共用一个swap文件,在不影响性能的条件下,这也是可选的。
这个选项是mount 里面的选项,单独看fstab是不能说明问题的。
先截图man mount :
1)这里mount的选项:
-s Tolerate sloppy mount options rather than failing. This will ignore mount options not supported by a filesystem type. Not all filesystems
support this option. This option exists for support of the Linux autofs-based automounter.
意思是说可以忽略错误的选项,这个选项是为自动挂载设计的。
-w, --rw
Mount the filesystem read/write. This is the default. A synonym(同义词) is -o rw.
sw 应该是:自动挂载的可读写分区
2)你的fstab少了挂载点。
Linux系统挂载存储变成只读的解决方案:1、mount:
用于查看哪个模块输入只读,一般显示为:
[root@localhost ~]# mount
/dev/cciss/c0d0p2 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/cciss/c0d0p7 on /home type ext3 (rw)
/dev/cciss/c0d0p6 on /var type ext3 (rw)
/dev/cciss/c0d0p3 on /usr type ext3 (rw)
/dev/cciss/c0d0p1 on /boot type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
/dev/dm-0 on /home/book/upload/BookFile1 type ext3 (rw)
/dev/dm-1 on /home/book/upload/BookFile2 type ext3 (rw)
/dev/dm-2 on /backup type ext3 (rw)
/dev/dm-3 on /home/book/upload/BookFile3 type ext3 (ro)
2、如果发现有ro,就重新mount,或者umount以后再remount
3、umount /dev/dm-3
如果发现有提示“device is busy”,找到是什么进程使得他busy
fuser -m /mnt/data 将会显示使用这个模块的pid
fuser -mk /mnt/data 将会直接kill那个pid
然后重新mount即可。
4、还有一种方法是直接remount,命令为
mount -o rw,remount /mnt/data。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)