Ubuntu 和Centos 系統搭建nfs伺服器

2021-07-16 02:47:48 字數 887 閱讀 2054

apt-get install nfs-kernel-server

/hksdata/shell

10.45

.234

.109(rw,sync,no_subtree_check)

說明:/hksdata/shell 共享的目錄

10.45

.234

.109 ip位址

rw :可讀可寫

sync: 資料同步寫入記憶體和硬碟

no_root_squash:root使用者具有對根目錄的完全管理訪問許可權。

no_subtree_check:不檢查父目錄的許可權。

/etc/init.d/rpcbind start

/etc/init.d/nfs-kernel-server start

mount -t nfs -onolock,nfsvers=3 10.45.236.4:/hksdata/shell /opt/shell/

showmount -e 10.45.236.4

/opt 192.168.1.30(rw,sync,no_subtree_check)
/etc/init.d/rpcbind start

/etc/init.d/nfs start

showmount -e 192.168.1.25

mount -t nfs -onolock,nfsvers=3

192.168.1.25

:/opt /opt/

Centos和Ubuntu哪個更實用

這個真沒有必要糾結,主要還是看你學linux做什麼用的。如果你是工作上需要,centos能更快的讓你上手你工作上的事情,因為國內redhat還是商用上的主流。這麼說吧。如果你愛折騰和喜歡嘗鮮,如果你手很懶那麼你要用ubuntu。如果你是工作需要學習,那麼你就用centos,節省你學習的時間和精力。能...

Ubuntu和Centos的定時指令碼

一.環境準備 1.系統環境 二.ubuntu的定時任務設定 檢視定時任務 crontab l 編輯定時任務 crontab e 重啟定時服務,開啟定時任務 service cron restart 三.centos的定時任務設定 檢視定時任務 crontab l 編輯定時任務 crontab e 重...

Ubuntu系統與Centos系統一些命令的區別

使用者管理 1.新增新使用者 在ubuntu下,root使用者預設是沒有密碼的,因此也就無法使用 想用root的話,得給root使用者設定乙個密碼,密碼安全性不做強制要求的。sudo passwd root ubuntu建使用者最好用adduser adduser和useradd是一樣的在別的lin...