fedora 27 配置samba伺服器

2021-08-18 10:42:28 字數 1961 閱讀 2123

我配置的時候全程在root裡面操作的:

su -    #進入root使用者

配置samba:

安裝samba service

yum install samba.service

開始配置samba:

smbpasswd -a -u your_username               #設定登陸的使用者名稱和密碼,你可以執行 whoami 檢視你的使用者名稱

systemctl enable smb.service                           # 開機啟動samba

systemctl start smb.service                               #  立即啟動samba

systemctl restart smb.service                             # 立即重啟samba

firewall-cmd --permanent --zone=public --add-service=samba                           # 配置防火牆

增加共享資料夾:

mkdir /home/share

chmod 777 /home/share #使share資料夾可讀可寫

在etc/samba/smb.conf中增加:

[share]

comment = share

path = /home/share

writable = yes

valid users = your_username          # 你可以執行 whoami 檢視你的使用者名稱

#setsebool -p samba_enable_home_dirs on #命令解除selinux對samba的限制

配置好後,重啟samba ( systemctl restart smb.service)

關閉 防火牆

systemctl stop firewalld.service

systemctl disable firewalld.service

停止selinux(如果不需要它)

vi /etc/sysconfig/selinux

# this file controls the state of selinux on the system.

# selinux= can take one of these three values:

#enforcing - selinux security policy is enforced. 

# permissive - selinux prints warnings instead of enforcing. 

# disabled - selinux is fully disabled. 

selinux= disabled # change here

# selinuxtype= type of policy in use. possible values are:

# targeted - only targeted network daemons are protected. 

# strict - full selinux protection. 

selinuxtype=targeted

(sestatus -v可以檢視selinux狀態。

getenforce也可以。

setenforce命令可以臨時關閉selinux,不需要重啟。

)另外關閉windows的防火牆

使用ifcongfig檢視ip

在windows隨便乙個資料夾下輸入ip就可以登入進去啦。

fedora27 上使用grpc詳解

今天在fedora上安裝並測試grpc,記錄以備日後查閱。1 安裝grpc 過程很曲折,遇到的問題很多簡單記錄下 pip install upgrade pip pip install grpcio pip install protobuf pip install grpcio tools yum ...

fedora27 更新yum源的解決方法

yum源核心有問題,查詢了網上關於yum源更新的問題,都說需要刪除 etc yum.repos.d,或者將其剪下到其他的資料夾裡面,但是都不太行。要國內源和原始國外源並存,需要安裝乙個選最快的源的程式 sudo dnf install yum fastestmirror 然後就可以安裝國內源了 cd...

Fedora27 在筆記本上安裝雙顯示卡驅動

上週無聊,就研究了以往一直安裝不成功雙顯示卡的fedora,安裝系統的過程就不介紹了。安裝顯示卡方案用的是bumblebee 方案。當然。用了一天後,還是把fedora刪除了,老電腦,用這個版本實在太卡。滑鼠大概率移動位置,螢幕上的滑鼠圖示1 2s後才動,體驗極差,當然這和安裝這顯示卡方案沒關係,沒...