回复:怎样把unix下的文件拷贝到本地windows的磁盘上? 向各位请教了...

来源: 2008-07-12 12:42:59 [旧帖] [给我悄悄话] 本文已被阅读:

You have to mount windows partition first. It is easier if your Windows partition is FAT32. For NTFS, you need some extra works. To mount FAT32:

1) create a mounting point under UNIX
# mkdir /mydos

2) find Windows paratition by using fdisk command, you may get like:

/dev/hda4

3) mount this partition:

# mount -t fat32 /dev/hda4 /mydos

(use "man mount" to see mounting options)

4) # cd /mydos to access it.