server2012下mount命令用法?
掛載設置用的,如光盤,U盤等, 命令格式: mount [-t vfstype] [-o options] device dir 其中:
1.-t vfstype 指定文件系統的類型,通常不必指定。mount 會自動選擇正確的類型。常用類型有: 光盤或光盤鏡像:iso9660 DOS fat16文件系統:msdos Windows 9x fat32文件系統:vfat Windows NT ntfs文件系統:ntfs Mount Windows文件網絡共享:smbfs UNIX(LINUX) 文件網絡共享:nfs 2.-o options 主要用來描述設備或檔案的掛接方式。常用的參數有:
loop:用來把一個文件當成硬盤分區掛接上系統 ro:采用只讀方式掛接設備 rw:采用讀寫方式掛接設備 iocharset:指定訪問文件系統所用字符集 3.device 要掛接(mount)的設備。
4.dir設備在系統上的掛接點(mount point)。 如掛載光盤 mount /dev/cdrom /mnt (/mnt 必須在LINUX系統中已經在) 掛載U盤 mount -t ntfs /dev/sda /mnt/usbhd1 (NFTS格式的,前提/mnt/usbhd1已經存在)
mount -t vfat /dev/sdb /mnt/usbhd2 (FAT32格式的,前提/mnt/usbhd2已經存在)