要解決CentOS 7無法共享文件的問題,您可以嘗試以下方法:
systemctl status smb
如果服務(wù)未運行,使用以下命令啟動它:
systemctl start smb
vi /etc/samba/smb.conf
在文件末尾添加共享配置,例如:
[share]
path = /path/to/shared/folder
writable = yes
valid users = user1 user2
其中,path
指定共享文件夾的路徑,writable
指定是否允許寫入,valid users
指定允許訪問共享的用戶。
chmod -R 755 /path/to/shared/folder
chown -R user:usergroup /path/to/shared/folder
將user
和usergroup
替換為具有共享訪問權(quán)限的用戶和用戶組。
systemctl reload smb
firewall-cmd --permanent --add-service=samba
firewall-cmd --reload
完成上述步驟后,您應(yīng)該能夠成功共享文件。如果問題仍然存在,請檢查日志文件(/var/log/samba)以獲取更多詳細(xì)信息,并確保網(wǎng)絡(luò)和用戶權(quán)限設(shè)置正確。