QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 985|回复: 23

windows linux 9.0 共享

[复制链接]
发表于 2003-6-10 15:07:34 | 显示全部楼层 |阅读模式
有什么让windows 2000 和linux共享的软件,越简单越好!
在线请教。那位大侠棒棒忙!
 楼主| 发表于 2003-6-10 15:20:52 | 显示全部楼层
是不是我说的不清出,我的电脑装了两个系统,我想共享文件,在RED HAT LINUX9.0和WINDOWS2000上,有没有办法?
回复

使用道具 举报

发表于 2003-6-10 15:35:43 | 显示全部楼层
你想怎样共享,MOUNT WIN2000分区不就行了,不过LINUX不能写NT分区
回复

使用道具 举报

发表于 2003-6-10 16:33:58 | 显示全部楼层
Win共享Linux分区中的文件的最容易方法: TotalCommander ,安装linux文件系统插件,安装rpm文件插件,你会发现Windows访问本机Linux分区就像是访问一个ftp,
看rmp就像看zip和rar一样.
回复

使用道具 举报

 楼主| 发表于 2003-6-10 16:36:06 | 显示全部楼层
MOUNT 的格式,能不能详细一些!
回复

使用道具 举报

发表于 2003-6-10 16:42:56 | 显示全部楼层
mount -t ntfs -o iocharset=gb2312 /dev/hdax /mnt/xxxx,其中X字母要看情况而定,RH8.0好象默认不支持NTFS,不知RH9.0怎么样?如果不支持那你的重新编译内核,那就麻烦了!
回复

使用道具 举报

 楼主| 发表于 2003-6-10 16:46:55 | 显示全部楼层
谢些!我试了,好象不行,有没有别的办法,我记得有一种软件可以?
回复

使用道具 举报

发表于 2003-6-10 16:47:20 | 显示全部楼层
在FAQ区里面有答案,自己找找阿,肯定能找到的
回复

使用道具 举报

发表于 2003-6-10 16:50:00 | 显示全部楼层
谢些!我试了,好象不行,有没有别的办法,我记得有一种软件可以?

怎么个不行法,说说看?
回复

使用道具 举报

 楼主| 发表于 2003-6-10 16:54:50 | 显示全部楼层
[root@localhost mnt]# mount -t iocharset=gb2312 /dev/hda5/mnt/share
Usage: mount -V                 : print version
       mount -h                 : print this help
       mount                    : list mounted filesystems
       mount -l                 : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
       mount -a [-t|-O] ...     : mount all stuff from /etc/fstab
       mount device             : mount device at the known place
       mount directory          : mount known device here
       mount -t type dev dir    : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
       mount --bind olddir newdir
or move a subtree:
       mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options].
For many more details, say  man 8 mount .
就是这些
回复

使用道具 举报

 楼主| 发表于 2003-6-10 16:55:42 | 显示全部楼层
share是我自己建的空目录。
回复

使用道具 举报

发表于 2003-6-10 16:59:18 | 显示全部楼层
[root@localhost mnt]# mount -t iocharset=gb2312 /dev/hda5/mnt/share

你用错参数了,请用mount -t ntfs -o iocharset=gb2312 /dev/hda5 /mnt/share
另外你的2000是否装在HDA5上,还有你的分区是不是NTFS,还是VFAT
回复

使用道具 举报

 楼主| 发表于 2003-6-10 17:05:03 | 显示全部楼层
Disk /dev/hda: 40.0 GB, 40020664320 bytes
255 heads, 63 sectors/track, 4865 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot    Start       End    Blocks   Id  System
/dev/hda1   *         1       637   5116671    b  Win95 FAT32
/dev/hda2          1275      4865  28844707+   f  Win95 Ext'd (LBA)
/dev/hda3           638       650    104422+  83  Linux
/dev/hda5          1339      2613  10241406    c  Win95 FAT32 (LBA)
/dev/hda6          2614      3250   5116671   83  Linux
/dev/hda7          3251      3315    522081   82  Linux swap

应该是VFAT ,
回复

使用道具 举报

发表于 2003-6-10 17:08:38 | 显示全部楼层
Disk /dev/hda: 40.0 GB, 40020664320 bytes
255 heads, 63 sectors/track, 4865 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hda1 * 1 637 5116671 b Win95 FAT32
/dev/hda2 1275 4865 28844707+ f Win95 Ext'd (LBA)
/dev/hda3 638 650 104422+ 83 Linux
/dev/hda5 1339 2613 10241406 c Win95 FAT32 (LBA)
/dev/hda6 2614 3250 5116671 83 Linux
/dev/hda7 3251 3315 522081 82 Linux swap

应该是VFAT ,


那就用VFAT试试:
mount -t vfat -o iocharset=gb2312 /dev/hda5 /mnt/share
回复

使用道具 举报

 楼主| 发表于 2003-6-10 17:11:45 | 显示全部楼层
还是不行,跟原来的提示一样

[root@localhost root]# mount -t vfat  -o iocharset=gb2312/dev/hda5/mnt/share
Usage: mount -V                 : print version
       mount -h                 : print this help
       mount                    : list mounted filesystems
       mount -l                 : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
       mount -a [-t|-O] ...     : mount all stuff from /etc/fstab
       mount device             : mount device at the known place
       mount directory          : mount known device here
       mount -t type dev dir    : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
       mount --bind olddir newdir
or move a subtree:
       mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options].
For many more details, say  man 8 mount .
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-10-2 01:36 , Processed in 0.045670 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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