|
机子是双系统,现在需要读取之前在windows上的文档呢,怎么个挂载法?
=====================================
[ning@courser ~]$ sudo fdisk -l
Disk /dev/sda: 164.6 GB, 164696555520 bytes
255 heads, 63 sectors/track, 20023 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xcbcfcbcf
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1913 15366141 7 HPFS/NTFS
/dev/sda2 1914 15160 106406527+ f W95 Ext'd (LBA)
/dev/sda3 15161 20023 39062047+ 83 Linux
/dev/sda5 1914 5738 30724281 7 HPFS/NTFS
/dev/sda6 5739 9563 30724281 7 HPFS/NTFS
/dev/sda7 9564 9587 192748+ 83 Linux
/dev/sda8 9588 9773 1494013+ 82 Linux swap / Solaris
/dev/sda9 9774 11270 12024621 83 Linux
/dev/sda10 11271 15160 31246393+ 83 Linux
=============================
[ning@courser mnt]$ sudo mount -t vfat /dev/sda2 /mnt/usb
mount: wrong fs type, bad option, bad superblock on /dev/sda2,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
[ning@courser mnt]$ |
|