掛載:mount
設備
掛載點
取消:umount
設備
vi
/etc/fstab
/dev/sdb1
/mnt/ext4
ext4
defaults
0
0
實現永久掛載
mount
-a
實行vim中的內容
B. 關於linux中mount的命令
先不看 -o 及後面的參數,命令配者
mount -t nfs client:/partition /partition
將 主機 `client' 下的 /partition 目錄 mount 到本機的 /partition 下,給個實例
mount -t nfs 192.168.100.1:/home/aaa /bbb
將 192.168.100.1 上的 /home/aaa 目錄mount 到本地的 /bbb 目錄。
mount -o 後面的則是用來指定文件系統的參數,對於你的情況,就是用來指定 NFS 系統的參數。你只要 man nfs 就可以看到這些參數的意義了,比如
timeo=n The time in deciseconds (tenths of a second) the NFS client waits for a response before it retries an NFS request.
即訪問超時的定義,所以 timeo=14 就是設置超時為1.4秒
rsize=n The maximum number of bytes in each network READ request that the NFS client can receive when reading data from a
file on an NFS server.
即一次 READ 操作最大能讀培仿薯取的數據位元組數,所以 rsize=8192 就是設置一次讀取最大 8k字大族節。
wsize=n The maximum number of bytes per network WRITE request that the NFS client can send when writing data to a file on
an NFS server.
即一次 WRITE 操作最大能寫的位元組數。
intr 這個參數你可以不用理了,(根據 man nfs) 從 linux 2.6.25 以後,這個參數就沒有意義了。
C. 為什麼linux虛擬機使用mount命令沒有反應
如果是掛nfs的話需要你伺服器在同一個內網,nfs服務允許該機器訪問,並且寫mount的時候應該是 mount /ip/dir /computerdir 這么寫,你網路路徑前面少了一個/。