Linux系統如何安裝AutoFs掛載服務
導讀 | 無論是Samba服務還是NFS服務,都要把掛載資訊寫入到/etc/fstab中,這樣遠端共享資源就會自動隨伺服器開機而進行掛載。 |
[root@localhost ~]# yum install autofs Loaded plugins: langpacks, product-id, subscription-manager ...... Running transaction Installing : hesiod-3.2.1-3.el7.x86_64 1/2 Installing : 1:autofs-5.0.7-40.el7.x86_64 2/2 Verifying : hesiod-3.2.1-3.el7.x86_64 1/2 Verifying : 1:autofs-5.0.7-40.el7.x86_64 2/2 Installed: autofs.x86_64 1:5.0.7-40.el7 Dependency Installed: hesiod.x86_64 0:3.2.1-3.el7 Complete!
處於生產環境中的 伺服器,一般會同時管理許多裝置的掛載操作。如果把這些裝置掛載資訊都寫入到autofs服務的主配置檔案中,無疑會讓主配置檔案臃腫不堪,不利於服務執行效率,也不利於日後修改裡面的配置內容,因此在 autofs 服務程式的主配置檔案中需要按照“掛載目錄 子配置檔案”的格式進行填寫。掛載目錄是裝置掛載位置的上一級目錄。
例如,光碟裝置一般掛載到/media/cdrom目錄中,那麼掛載目錄寫成/media即可。對應的子配置檔案則是對這個掛載目錄內的掛載裝置資訊作進一步的說明。子配置檔案需要使用者自行定義,檔名字沒有嚴格要求,但字尾必須以.misc結束。具體的配置引數如第7行的加粗字所示。
[root@localhost ~]# vim /etc/auto.master # # Sample auto.master file # This is an automounter map and it has the following format # key [ -mount-options-separated-by-comma ] location # For details of the format look at autofs(5). /media /etc/iso.misc /misc /etc/auto.misc # # NOTE: mounts done from a hosts map will be mounted with the # "nosuid" and "nodev" options unless the "suid" and "dev" # options are explicitly given. /net -hosts # # Include /etc/auto.master.d/*.autofs +dir:/etc/auto.master.d # # Include central master map if it can be found using # nsswitch sources. # # Note that if there are entries for /net or /misc (as # above) in the included master map any keys that are the # same will not be seen as the first read key seen takes # precedence. +auto.master
在子配置檔案中,應按照“掛載目錄 掛載檔案型別及許可權 :裝置名稱”的格式進行填寫。例如,要把光碟裝置掛載到/media/iso目錄中,可將掛載目錄寫為iso,而-fstype為檔案系統格式引數,iso9660為光碟裝置格式,ro、nosuid及nodev為光碟裝置具體的許可權引數,/dev/cdrom則是定義要掛載的裝置名稱。配置完成後再順手將autofs服務程式啟動並加入到系統啟動項中:
[root@localhost ~]# vim /etc/iso.misc iso -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom [root@localhost ~]# systemctl start autofs [root@localhost ~]# systemctl enable autofs ln -s '/usr/lib/systemd/system/autofs.service' '/etc/systemd/system/multi-user.target.wants/autofs.service'
接下來將發生一件非常有趣的事情。我們先檢視當前的光碟裝置掛載情況,確認光碟裝置沒有被掛載上,而且/media目錄中根本就沒有iso子目錄。但是,我們卻可以使用cd 切換到這個iso子目錄中,而且光碟裝置會被立即自動掛載上。我們也就能順利檢視光碟內的內容了。
[root@localhost ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/rhel-root 18G 3.0G 15G 17% / devtmpfs 905M 0 905M 0% /dev tmpfs 914M 140K 914M 1% /dev/shm tmpfs 914M 8.9M 905M 1% /run tmpfs 914M 0 914M 0% /sys/fs/cgroup /dev/sda1 497M 119M 379M 24% /boot [root@linuxprobe ~]# cd /media [root@localhost media]# ls [root@localhost media]# cd iso [root@localhost iso]# ls -l total 812 dr-xr-xr-x. 4 root root 2048 May 7 2017 addons dr-xr-xr-x. 3 root root 2048 May 7 2017 EFI -r--r--r--. 1 root root 8266 Apr 4 2017 EULA -r--r--r--. 1 root root 18092 Mar 6 2012 GPL dr-xr-xr-x. 3 root root 2048 May 7 2017 images dr-xr-xr-x. 2 root root 2048 May 7 2017 isolinux dr-xr-xr-x. 2 root root 2048 May 7 2017 LiveOS -r--r--r--. 1 root root 108 May 7 2017 media.repo dr-xr-xr-x. 2 root root 774144 May 7 2017 Packages dr-xr-xr-x. 24 root root 6144 May 7 2017 release-notes dr-xr-xr-x. 2 root root 4096 May 7 2017 repodata -r--r--r--. 1 root root 3375 Apr 1 2017 RPM-GPG-KEY-redhat-beta -r--r--r--. 1 root root 3211 Apr 1 2017 RPM-GPG-KEY-redhat-release -r--r--r--. 1 root root 1568 May 7 2017 TRANS.TBL
[root@localhost ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/rhel-root 18G 3.0G 15G 17% / devtmpfs 905M 0 905M 0% /dev tmpfs 914M 140K 914M 1% /dev/shm tmpfs 914M 8.9M 905M 1% /run tmpfs 914M 0 914M 0% /sys/fs/cgroup /dev/cdrom 3.5G 3.5G 0 100% /media/iso /dev/sda1 497M 119M 379M 24% /boot
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2765057/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- autofs服務動態自動掛載各種檔案系統(ZT)
- Linux系統安裝Redis服務LinuxRedis
- 如何使用 autofs 掛載 NFS 共享NFS
- windows系統IIS服務安裝Windows
- 【Linux學習筆記24-2】網路檔案系統 nfs + 自動掛解除安裝autofsLinux筆記NFS
- linux系統安裝MySQL服務,詳細圖文教程LinuxMySql
- ubuntu系統samba服務的安裝配置UbuntuSamba
- 在Mac系統上安裝redis服務MacRedis
- 如何在 Kali Linux 上安裝 SSH 服務Linux
- 【Linux學習筆記24-1】網路檔案系統 samba共享設定 + 自動掛解除安裝 autofsLinux筆記Samba
- linux 安裝git服務LinuxGit
- Linux系統下手把手完成無人值守安裝服務Linux
- Nexus windows安裝,配置為系統服務Windows
- Linux裝置掛載和解除安裝Linux
- Linux系統下無法解除安裝掛載的解決辦法Linux
- Linux系統下載mysql與安裝LinuxMySql
- Linux 安裝Mosquitto服務LinuxUI
- 在 Linux 系統中如何管理 systemd 服務Linux
- 如何快速搭建Linux系統中Samba服務LinuxSamba
- Linux 系統 安裝安全狗 必備外掛Linux
- linux磁碟掛載與解除安裝Linux
- Zookeeper 在Linux系統上的安裝,並且啟動zookeeper服務Linux
- Linux系統安裝並配置nginx實現多服務同一埠LinuxNginx
- Linux製作系統啟動盤以及掛載和解除安裝U盤Linux
- 入門:如何在 Kali Linux 上安裝 SSH 服務Linux
- linux系統服務解析Linux
- Windows如何安裝自定義服務Windows
- Linux下安裝SVN服務端Linux服務端
- linux下安裝、配置samba服務LinuxSamba
- 在Linux上安裝Memcached服務Linux
- 在Linux中,如何配置和管理系統服務?Linux
- [Linux]檔案掛載和解除安裝Linux
- 在Linux中,掛載和解除安裝檔案系統過程是什麼?Linux
- linux如何系統掛載u盤複製檔案Linux
- Linux系統安裝Linux
- Linux下注冊系統服務Linux
- Linux(centos)手動掛載系統磁碟和自動掛載系統磁碟教程LinuxCentOS
- linux 掛載xfs檔案系統Linux