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

請您先登陸,再發跟帖!