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

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.


所有跟帖: 

You ought to through this shitty and pitty partition away -德州老外- 给 德州老外 发送悄悄话 德州老外 的博客首页 (25 bytes) () 07/12/2008 postreply 16:00:39

请您先登陆,再发跟帖!