三步命令實現liunx下檔案掛載

2021-10-06 15:15:11 字數 749 閱讀 5336

首先,為什麼要掛載?

掛載的主要原因就是硬碟儲存空間不足,將一部分檔案儲存到另外一台伺服器中。

例如:我打算將172.26.164.213的/springboot-tomcat-tmp 和 /mplogs裡面的內容掛載到172.26.164.215伺服器中。

第一步:

被掛載伺服器172.26.164.215

/etc/exports檔案增加內容如下:

第二步:

執行命令:

/etc/rc.d/init.d/portmap start (在redhat中portmap是預設啟動的) 

service rpcbind start && service nfs start

第三步:

掛載伺服器172.26.174.213執行命令

mount -t nfs -o rw 172.26.164.215:/springboot-tomcat-tmp /springboot-tomcat-tmp

mount -t nfs -o rw 172.26.164.215:/mplogs /mplogs

檢視結果:

三步找回刪除的檔案

一不小心把檔案給刪錯了,而且還把 站清空了,怎麼辦呢?別急!只需要三步,你就能找回你刪掉並清空 站的東西 步驟如下 1 單擊 開始 執行,然後輸入regedit 開啟登錄檔 2 依次展開 hekey local machime software microsoft windows currentve...

IDEA tomcat三步實現熱部署

新增artifacts選項,war 和 war exploded二選一,若要熱部署須選後者。on update action設定每次預設run選項為redeploy重新部署 相比重新啟動要快一些了,但速度還是不太理想 on frame deactivation設定為updata classes an...

三步實現Android懸浮效果

之前做專案的時候實現的乙個懸浮效果,如圖 可能不夠清晰 meibei.gif 接下來就是實現效果,如圖所示 sticky.gif 原理很簡單,用recyclerview addheaderview的方式實現,實現步驟 1.新增依賴 compile com.github.cymchad baserec...