linux基礎2 7訪問網路檔案共享服務

2021-07-30 12:27:04 字數 1598 閱讀 5458

1.網路共享

<1>安裝共享訪問客戶端:

yum install samba-client -y

<2>登入伺服器的共享目錄:

smbclient -l //伺服器ip ##可以檢視共享目錄

smbclient //伺服器ip/westos ##訪問共享目錄

2.自動掛載網路共享

掛載訪問:

mount /mnt -o username=guest

enter root』s password:

domain=[user-20161030de] os=[windows 5.1] server=[windows 2000 lan manager]

smb: >

設定開機自動掛載:

方法1:

vim /etc/fstab

/mnt cifs defaults,username=guest 0 0

方法2:

vim /etc/rc.d/rc.local

mount /mnt -o username=guest

3.nfs網路檔案系統訪問

(1)安裝訪問共享軟體:

yum install nfs-utils -y

(2)識別共享:

showmount -e 172.25.254.250

(3)使用共享:

mount 172.25.254.250:/nfsshare/nfs1 /mnt

(4)自動掛載:

方法1:

vim /etc/fstab

172.25.254.250:/nfsshare/nfs1 /mnt nfs defaults 0 0

方法2:

vim /etc/rc.d/rc.local

mount 172.25.25.250:/nfsshare/nfs1 /mnt

chmod 755 /etc/rc.d/rc.local

4.autofs自動掛載服務

預設使用mount掛載共享時當不使用共享也會處於掛載狀態,浪費共享伺服器資源.

autofs可以實現當使用時自動掛載,閒置時自動解除安裝.

(1)安裝服務

yum install autofs -y

systemctl start autofs

(2)訪問

cd /net/172.25.254.250/nfsshare/nfs1

(3)設定自動解除安裝時間

vim /etc/autofs.conf

timeout = 3 ##閒置3秒後自動解除安裝

(4)實現自定義共享掛載點

配置主檔案:

vim /etc/auto.master

/mnt /etc/auto.* ## /mnt是最終自定義掛載點的上層目錄 /etc/auto.是子配置檔案 為隨意的名字1

配置子檔案:

vim /etc/auto.*

最終掛載點 網路共享目錄

nfs1 172.25.254.250:/nfsshare/nfs1

* 172.25.254.250:/nfsshare/& ##指定任意共享掛載

訪問linux網路

1.安裝ssh伺服器 sudo apt get install openssh server 2.設定ubuntu固定ip 1 禁止ipv6 sudo vim etc modprobe.d blacklist.comf 在檔案最後新增 blacklist ipv6,儲存退出 2 設定靜態ip sud...

No 27網路基礎

1.re模組 search match finditer compile subsubn split 2.分組 引用分組 findall和分組 split和分組 search和分組 3.補充 4.習題 1 找出中所有標籤內的字串 import re ret re.findall print ret ...

day27 網路基礎

一 網路基礎 誕生於 美國 貝爾實驗室 linux系統 c語言gnu開源計畫 gcc編譯器 gcc hello.c cc或.cpp 等 物件導向的程式語言 面向過程的程式語言 組合語言 機器語言 源 彙編 編譯 鏈結 機器語言 010101 計算機網路 把分步在各個地點的不同的計算機系統 pc 筆記...