1.设备挂载

    mount -t 文件系统类型设备名挂载点

    mount -t msdos /dev/fd0 /mnt/floppy    挂载软盘

    mount -t vfat /dev/sda1 /mnt/usb    挂载U盘

    mount -t iso9660 /dev/hda /mnt/cdrom    或mount /dev/cdrom /mnt/cdrom 挂载光盘

2.设备卸载

    umount    挂载目录

    umount    /mnt/usb

    umount    /mnt/cdrom