【For.马金宝的Lenovo】【Fedora13?】
U盘、硬盘挂载
mountAllDisk.sh
#Here are commands for mount disk
#mount U disk
fdisk -l
#to show the U disk
#e.g. your UDisk named "sdb1"
#Then mkdir a directory in /mnt/
#Here I had made a dir named "usb"(/mnt/usb)
#So you just need to mount the Udisk on the directory
mount -t vfat -o iocharset=utf8 /dev/sdb1 /mnt/usb
#mount the NTFS disk for windows7
#Also use
fdisk -l
#to see what's your Disk are named
#e.g. sda5 (Maybe for C: in the windows system)
mkdir /mnt/CDisk
#Then mount it
mount -t ntfs /dev/sda5 /mnt/CDisk
#Once if you mount the disk(weather your UDisk or the HardDisk), you can go to /mnt/somename/ to manage it^_^
mountUDisk.sh
umount /mnt/usb
mount -t vfat -o iocharset=utf8 /dev/sdb1 /mnt/usb
mountWin7.sh
#umount them to avoid remount
umount /mnt/C
umount /mnt/D
umount /mnt/E
umount /mnt/F
umount /mnt/G
#mount C-G disk
mount -t ntfs /dev/sda2 /mnt/C
mount -t ntfs /dev/sda3 /mnt/D
mount -t ntfs /dev/sda5 /mnt/E
mount -t ntfs /dev/sda6 /mnt/F
mount -t ntfs /dev/sda7 /mnt/G
其它相关文件已经备份至:
链接: http://pan.baidu.com/s/1bnCkAVt 密码: zwru