Partitions under Mount win under the Linux partition
1. FAT32 Partition automatic Mount
$SU # switch to root user
#mkdir/mnt/c #在/mnt to create a directory to mount the C disk.
#gedit/ect/fstab & #编辑磁盘挂载配置文件.
In the Open Text editor, add the following line
DEV/HAA1/MNT/C vfat rw iocharset=utf800, save and exit the text editor.
This will automatically mount C when the FC6 is started, and other disks can be mounted in this way.
2. FAT32 Partition manual Mount
$SU # switch to root user
#mkdir/mnt/d
Mount-o iocharset=utf8/dev/hda5/mnt/d (dev/hda1 corresponding to the c:dev/hda5 corresponding to Windows D:dev/hda6 corresponding E: And so on, hehe. )
2. NTFS partition mount
This will be the next Linux patch, not to consider first.
3, Mount ISO
Assume that my ISO is placed in F, and that it is normally mounted under/mnt/f. We are going to mount the ISO under/mnt/iso.
$su
#mkdir/mnt/iso
#mount-t iso9660-o loop/mnt/f/zod/f/fc-6-i386-dvd.iso/mnt/iso
Edit/etc/ Yum.repos.d/fedora-core.repo
$US
#cd/etc/yum.repos.d/
#cp Fedora-core.repo fedora-core.repo.backup
#gedit Fedora-core.repo
Annotate all rows in the file that begin with BaseURL and mirrorlist with the # sign
then add a line at the end of the first section [core]:
Baseurl= File:///mnt/iso
4, OK
from the main Menu-> Add/Remove software, you can install/remove the ISO software.