QQme 发表于 2003-4-29 15:24:38

实现这个功能要加如什么模块?

本人安了Linux和win2000(用的是fat32)如何实习linux于windows之间的互访?是要在内核中加入什么模块吗?
要怎么作?

超级用户 发表于 2003-4-29 16:54:40

fat
<vfat>……

当然,只要用mount指令就可以啦

pjc5520 发表于 2003-4-29 16:59:44

加上SMB支持,在网络文件系统里面。

Dragonfly 发表于 2003-5-1 03:50:12

QQme, u need say u want to share file between (1)two machines or file on (2) same machines under different partitions.

if (1) pjc5520,is right
if (2) 超级用户, is right.

anyway, pls describe u question in more detail when u ask question next time. thx.
:wink:

QQme 发表于 2003-5-1 06:50:13

我的问题是:

我有一台机(无软驱,安了双操作系统;linux还没能上网,win2000可以)
1)我想在win2000下载linux内核源代码在win2000下的分区(fat32),到linux把代码考到linux分区。
2)我想在win2000下访问linux分区了的文件并作些修改。当在win2000里只能看到linux分区盘符在,不能进入访问。

第一个问题:
我安超级用户的方法:
我知道insmod fat--》insmod vfat 以后就支持访问win2000分区了,
但我不知道如何访问,安文章了的
mount -t vfat /dev/hda1/dosc
是不是这样?-t 是什么意思。然后我将如何访问win2000下的C盘。
第二个问题如何解决?

Dragonfly 发表于 2003-5-1 06:58:37

mount -t fat /dev/hda1 /dosc.
the t is to set the file system type to fat. so what is u c partition file system type? fat32 or ntfs? if u use ntfs, u need insmod ntfs.o instead of fat.

for windows, u have to install extra software to access ext3 or ext2 partition,

QQme 发表于 2003-5-1 07:13:20

1)我的c盘是fat32
mount -t fat /dev/hda1 /dosc之后,我如何访问c盘
2)win2000下访问ext3,ext2分区要按什么软件。能说下名称吗?www.linuxfans.org有下载吗?
在此谢谢cheungming的回答。

Dragonfly 发表于 2003-5-1 08:05:15

if u succ to mount it under dosc, then u can cd dosc to access the files.

i do not know, maybe this one works
http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm

i seldom access ext2 under widnows, sincei only install linux on my laptop now.

QQme 发表于 2003-5-1 08:17:21

mount 时出错!

在linux下,我
1)insmod fat.o ->insmod vfat.o
2)mount -t bfat /dev/hda1 /dosc时
出错:
mount point/dosc does not exist
(dosc装载点不存在)
怎么解决?


另外!装载模块用 insmod 卸载模块用rmmod
但是我 insmod fat.o ;insmod vfat.o 之后用lsmod查看。看到有fat和vfat存在。
之后我用rmmod vfat.o 和rmmod fat.o shi时却出现
类似vfat.o is not loaded .
为什么? 我如何卸载模块?

Dragonfly 发表于 2003-5-1 08:49:20

when u want to mount a partition to a dir, u need create that dir first.
rmmod with vfat, not vfat.o,
页: [1]
查看完整版本: 实现这个功能要加如什么模块?