ubuntu12 04下nfs安裝 配置 測試

2021-06-08 07:28:37 字數 818 閱讀 8578

先說明一下ubuntu預設root是禁用的,所以先要建立root使用者,這樣以後不用再sudo了:

1.sudo passwd

輸入當前使用者密碼

輸入root使用者密碼

再次確定root使用者密碼

成功! su

輸入root密碼

ok,進入root使用者,不用再sudo了!

2.nfs 安裝

apt-get install nfs-kernel-server

vi  /etc/exports

加上下面這句

/home/zyp/rootfs(這個路徑自己定,我是這個)  *(rw,sync,no_root_squash)

4.修改掛載點的訪問許可權

chmod 777 /home/zyp/rootfs

5.重啟nfs(每一次修改exports都要重啟nfs)

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

/etc/init.d/portmap restart

6.測試

在/home/zyp/rootfs下建立乙個檔案(空的就是看不見)

cd /home/zyp/rootfs

touch test

mount 127.0.0.1(這是你要掛的東西的主機的ip):/home/zyp/nfsroot     /mnt(要掛的地方)

ls -l /mnt

cd /mnt ls

如果有test的話就說明ok了

離開掛在的目錄(/home/zyp/rootfs)

umount  /mnt (解除安裝剛剛掛在的東西)

ubuntu12 04下nfs安裝 配置 測試

先說明一下ubuntu預設root是禁用的,所以先要建立root使用者,這樣以後不用再sudo了 1.sudo passwd 輸入當前使用者密碼 輸入root使用者密碼 再次確定root使用者密碼 成功!su 輸入root密碼 ok,進入root使用者,不用再sudo了!2.nfs 安裝 apt g...

ubuntu12 04配置NFS服務詳解

1 安裝nfs sudo apt get install nfs kernel server 2 配置服務 sudo vim etc exports 在末尾新增 home jyg rw,sync,no root squash 解釋 注 nfs允許掛載的目錄及許可權,在檔案 etc exports中進...

Ubuntu12 04下配置OwnCloud私有雲

前邊已經寫過安裝owncloud,這裡配置一下資料庫,使用mysql資料庫。在 etc php5 conf.d 目錄下配置mysql.ini檔案為 configuration for php mysql module extension pdo mysql.so extension mysql.so...