#mount
功能:查詢系統中已經掛載的裝置
#mount -a
功能:按照配置檔案 /etc/fstab 的內容,自動掛載
#mount [-t 檔案系統] [-o 特殊選項] [裝置檔名] [掛載點]
功能:將指定裝置按照指定要求掛載至指定掛載點,不能在掛載點對應目錄下操作
選項:-t 指定檔案系統,如 ext3、ext4、iso9660 等;
-o 指定掛載的額外選項,如下:
#mount -o remount, noexec /home 重新掛載 /home 分割槽,並使其中的可執行檔案不能執行
#mount -o remount, exec /home 恢復執行許可權
#umount [裝置檔名或掛載點]
功能:解除安裝指定的裝置,不能在掛載點對應目錄下操作
掛載光碟
1、插入光碟;
2、建立掛載點;
#mkdir /mnt/cdrom
3、掛載;
#mount -t iso9660 /dev/sr0 /mnt/cdrom 或者
#mount /dev/sr0 /mnt/cdrom 或者
#mount /dev/cdrom /mnt/cdrom
4、解除安裝;
#umount /dev/sr0 或者
#umount /dev/cdrom 或者
#umount /mnt/cdrom
5、抽出光碟 。
linux命令 掛載命令
一 掛載命令 1 mount 命令基本格式 linux 所有儲存裝置都必須掛載使用,包括硬碟 命令名稱 mount 命令所在路徑 bin mount 執行許可權 所有使用者 root localhost mount l 查詢系統中已經掛載的裝置,l 會顯示卷標名稱 root localhost mo...
尚矽谷Linux學習筆記 常用命令 掛載命令
root xyc mount l 查詢系統中已經掛載的裝置,l會顯示卷標名稱 root xyc mount a a auto 作用 掃瞄 etc fstab檔案,自動掛載 如果錯誤,則報錯。如果 etc fstab裡面錯了,系統會崩潰。mount a 使用後 極大的可能會避免崩潰的可能性 開機時,系...
Linux 掛載命令
掛載點 分配碟符 碟符 window是以c盤,d盤 linux是以目錄形式 usr boot mount 查詢系統中已經掛載好的裝置 mount a 自動掛載,依據配置檔案 etc fstab的內容,自動掛載 mount t 檔案系統 o 特殊選項 裝置檔名 掛載點 t 檔案系統 ext3 ext4...