我想在linux下再挂一块fat分区的硬盘,不知如何实现访问。
---------------------------------------------------------------
先判断你这块硬盘是hda,还是 hdb,还是hdc,还是hdd(启动时可看到,也可用dmesg查看到)
这里假设是hdb
cd /mnt
mkdir win
mount -t vfat /dev/hdb1 /mnt/win (hdb1是你第二块硬盘的第一个分区)
这样你的 c盘就可以在/mnt/win下访问了
访问完以后用/umount /mnt/win来卸载,卸载前要退出/mnt/win的目录