回複:怎樣把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.