溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Linux下mount命令的使用

發(fā)布時(shí)間:2021-09-01 17:52:33 來(lái)源:億速云 閱讀:169 作者:chen 欄目:系統(tǒng)運(yùn)維

這篇文章主要講解了“Linux下mount命令的使用”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Linux下mount命令的使用”吧!

Linux mount命令是經(jīng)常會(huì)使用到的命令,它用于掛載Linux系統(tǒng)外的文件,此命令的最常用于掛載cdrom,使我們可以訪問cdrom中的數(shù)據(jù),因?yàn)槟銓⒐獗P插入cdrom中,Linux并不會(huì)自動(dòng)掛載,必須使用Linux mount命令來(lái)手動(dòng)完成掛載。

Linux顯示所有的目錄都在一個(gè)目錄樹下,而于他們位于哪一個(gè)驅(qū)動(dòng)器/硬件無(wú)關(guān)。在Linux下的磁盤內(nèi)容作為子目錄形式出現(xiàn)的。

用Linux mount命令來(lái)掛載cdrom.

命令:
mount -t auto /dev/cdrom /mnt/cdrom

這命令就是把cdrom掛載在/mnt/cdrom目錄中,這里我就可以訪問里面的內(nèi)容了。

學(xué)習(xí)操作過程:
[OK_008@CentOS4 ~]$ mount -t auto /dev/cdrom /mnt/cdrom
mount: only root can do that  --一般用戶無(wú)法掛載cdrom,只有root用戶才可以操作。
[OK_008@CentOS4 ~]$

--切換用戶操作:
[root@CentOS4 /]# mount -t auto /dev/cdrom /mnt/cdrom
mount: mount point /mnt/cdrom does not exist --/mnt/cdrom目錄不存在,需要先創(chuàng)建。
[root@CentOS4 /]# cd /mnt
-bash: cd: /mnt: No such file or directory
[root@CentOS4 /]#
[root@CentOS4 /]# mkdir -p /mnt/cdrom  --創(chuàng)建/mnt/cdrom目錄
[root@CentOS4 /]# ls
bin   dev  home    lib         media  mnt  proc  sbin     srv  tmp  var
boot  etc  initrd  lost+found  misc   opt  root  selinux  sys  usr
[root@CentOS4 /]# mount -t auto /dev/cdrom /mnt/cdrom  --掛載cdrom
mount: block device /dev/cdrom is write-protected, mounting read-only --掛載成功
[root@CentOS4 /]# ls -l /mnt/cdrom --查看cdrom里面內(nèi)容
total 859
dr-xr-xr-x  4 root root   2048 Sep  4  2005 CentOS
-r--r--r--  2 root root   8859 Mar 19  2005 centosdocs-man.css
-r--r--r--  9 root root  18009 Mar  1  2005 GPL
dr-xr-xr-x  2 root root 241664 May  7 02:32 headers
dr-xr-xr-x  4 root root   2048 May  7 02:23 images
dr-xr-xr-x  2 root root   4096 May  7 02:23 isolinux
dr-xr-xr-x  2 root root  18432 May  2 18:50 NOTES
-r--r--r--  2 root root   5443 May  7 01:49 RELEASE-NOTES-en.html
dr-xr-xr-x  2 root root   2048 May  7 02:34 repodata
-r--r--r--  9 root root   1795 Mar  1  2005 RPM-GPG-KEY
-r--r--r--  2 root root   1795 Mar  1  2005 RPM-GPG-KEY-centos4
-r--r--r--  1 root root 571730 May  7 01:39 yumgroups.xml
[root@CentOS4 /]#
[root@CentOS4 /]# umount /mnt/cdrom  --卸載cdrom,很容易,直接使用umount /mnt/cdrom 即可。

另mount命令其他參數(shù)說明可以參考如下:

名稱 : mount
使用權(quán)限 : 系統(tǒng)管理者或/etc/fstab中允許的使用者
使用方式 :
mount [-hV]
mount -a [-fFnrsvw] [-t vfstype]
mount [-fnrsvw] [-o options [,...]] device | dir
mount [-fnrsvw] [-t vfstype] [-o options] device dir

說明 :

將某個(gè)檔案的內(nèi)容解讀成檔案系統(tǒng),然后將其掛在目錄的某個(gè)位置之上。當(dāng)這個(gè)命令執(zhí)行成功后,直到我們使用 umnount 將這個(gè)檔案系統(tǒng)移除為止,這個(gè)命令之下的所有檔案將暫時(shí)無(wú)法被調(diào)用。

這個(gè)命令可以被用來(lái)掛上任何的檔案系統(tǒng),你甚至可以用 -o loop 選項(xiàng)將某個(gè)一般的檔案當(dāng)成硬盤機(jī)分割掛上系統(tǒng)。這個(gè)功能對(duì)于 ramdisk,romdisk 或是 ISO 9660 的影像檔之解讀非常實(shí)用。

參數(shù)

-V

顯示程序版本
-h

顯示輔助訊息
-v

顯示較訊息,通常和 -f 用來(lái)除錯(cuò)。
-a
將 /etc/fstab 中定義的所有檔案系統(tǒng)掛上。

-F
這個(gè)命令通常和 -a 一起使用,它會(huì)為每一個(gè) mount 的動(dòng)作產(chǎn)生一個(gè)行程負(fù)責(zé)執(zhí)行。在系統(tǒng)需要掛上大量 NFS 檔案系統(tǒng)時(shí)可以加快掛上的動(dòng)作。

-f
通常用在除錯(cuò)的用途。它會(huì)使 mount 并不執(zhí)行實(shí)際掛上的動(dòng)作,而是模擬整個(gè)掛上的過程。通常會(huì)和 -v 一起使用。

-n
一般而言,mount 在掛上后會(huì)在 /etc/mtab 中寫入一筆資料。但在系統(tǒng)中沒有可寫入檔案系統(tǒng)存在的情況下可以用這個(gè)選項(xiàng)取消這個(gè)動(dòng)作。

-s-r
等于 -o ro

-w
等于 -o rw

-L
將含有特定標(biāo)簽的硬盤分割掛上。

-U
將檔案分割序號(hào)為 的檔案系統(tǒng)掛下。-L 和 -U 必須在/proc/partition 這種檔案存在時(shí)才有意義。

-t
指定檔案系統(tǒng)的型態(tài),通常不必指定。mount 會(huì)自動(dòng)選擇正確的型態(tài)。

-o async
打開非同步模式,所有的檔案讀寫動(dòng)作都會(huì)用非同步模式執(zhí)行。

-o sync
在同步模式下執(zhí)行。

-o atime
-o noatime
當(dāng) atime 打開時(shí),系統(tǒng)會(huì)在每次讀取檔案時(shí)更新檔案的『上一次調(diào)用時(shí)間』。當(dāng)我們使用 flash 檔案系統(tǒng)時(shí)可能會(huì)選項(xiàng)把這個(gè)選項(xiàng)關(guān)閉以減少寫入的次數(shù)。

-o auto
-o noauto
打開/關(guān)閉自動(dòng)掛上模式。

-o defaults
使用預(yù)設(shè)的選項(xiàng) rw, suid, dev, exec, auto, nouser, and async.

-o dev
-o nodev-o exec
-o noexec
允許執(zhí)行檔被執(zhí)行。

-o suid
-o nosuid
允許執(zhí)行檔在 root 權(quán)限下執(zhí)行。

-o user
-o nouser
使用者可以執(zhí)行 mount/umount 的動(dòng)作。

-o remount
將一個(gè)已經(jīng)掛下的檔案系統(tǒng)重新用不同的方式掛上。例如原先是唯讀的系統(tǒng),現(xiàn)在用可讀寫的模式重新掛上。

-o ro
用唯讀模式掛上。

-o rw
用可讀寫模式掛上。

-o loop=
使用 loop 模式用來(lái)將一個(gè)檔案當(dāng)成硬盤分割掛上系統(tǒng)。

范例

將 /dev/hda1 掛在 /mnt 之下。

#mount /dev/hda1 /mnt

將 /dev/hda1 用唯讀模式掛在 /mnt 之下。

#mount -o ro /dev/hda1 /mnt

將 /tmp/image.iso 這個(gè)光碟的 image 檔使用 loop 模式掛在 /mnt/cdrom之下。用這種方法可以將一般網(wǎng)絡(luò)上可以找到的 Linux 光 碟 ISO 檔在不燒錄成光碟的情況下檢視其內(nèi)容。

#mount -o loop /tmp/image.iso /mnt/cdrom
另一個(gè)和Linux mount命令相關(guān)的命令是Linux umount命令。

感謝各位的閱讀,以上就是“Linux下mount命令的使用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)Linux下mount命令的使用這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI