Windows 與 Linux (CentOS7) 之間的檔案共享
折騰了好幾天,終於搞定了,之前還以為直接拖進去虛擬機器裡就行,但是一直說解壓錯誤,後面看檔案大小,發現才只有原來的十分之一大,所以肯定是傳輸的過程中出錯了。後面搜尋解決方案,不能直接複製貼上,搜尋發現有以下三種方式:
- 安裝 samba;
- 設定 VMware 共享目錄;
- window 中安裝 FTP 或 SSH 軟體。
我主要講的是第一種方法,第二種我自己試了一下,沒成功,接下來正式開始安裝!
一、安裝 Samba
檢查samba是否已經安裝
[root@localhost ~]# rpm -qa | grep samba
samba-common-4.9.1-6.el7.noarch
samba-client-4.9.1-6.el7.x86_64
samba-4.9.1-6.el7.x86_64
samba-client-libs-4.9.1-6.el7.x86_64
samba-common-tools-4.9.1-6.el7.x86_64
samba-common-libs-4.9.1-6.el7.x86_64
samba-libs-4.9.1-6.el7.x86_64
注意:我是已經安裝好了的,所以才會有如上的顯示,如果未安裝,則沒有上面的顯示。一般安裝 CentOS 7 就會預設帶有 Samba 的安裝包,所以只需要執行一下命令:
yum -y install samba samba-client samba-common
這個命令既安裝了 Samba 也安裝了客戶端 samba-client,所以再次檢查安裝結果就會跟我的一樣了,有差別的只有版本號不同。
[root@localhost ~]# rpm -qa | grep samba
samba-common-4.9.1-6.el7.noarch
samba-client-4.9.1-6.el7.x86_64
samba-4.9.1-6.el7.x86_64
samba-client-libs-4.9.1-6.el7.x86_64
samba-common-tools-4.9.1-6.el7.x86_64
samba-common-libs-4.9.1-6.el7.x86_64
samba-libs-4.9.1-6.el7.x86_64
二、配置 samba
1.關閉 SELINUX
[root@localhost ~]# 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 - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
3.關閉防火牆
[root@localhost ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
4.重啟計算機
[root@localhost ~]# shutdown -r now
5.建立共享目錄
[root@localhost home]# mkdir -p /home/share/software
6.建立共享使用者組
[root@localhost home]# groupadd share
7.建立共享使用者
[root@localhost home]# useradd -g share -s /sbin/nologin share
8.設定共享目錄許可權
[root@localhost home]# chown -R share:share /home/share/software
9.修改共享使用者密碼
[root@localhost home]# /bin/smbpasswd -a share
New SMB password:
Retype new SMB password:
Added user share.
10.修改 samba 配置檔案
[root@localhost share]# vi /etc/samba/smb.conf
11.配置檔案說明如下
[global] #全域性變數
? workgroup = WORKGROUP #工作組
? security = user #登陸才可訪問共享
? passdb backend = tdbsam
? printing = cups
? printcap name = cups
? load printers = yes
? cups options = raw
[software] #顯示的共享目錄名
? path = /home/share/software #共享目錄路徑
? comment = Software Directories #共享目錄描述
? writeable = Yes #共享目錄可寫入
? write list = share #有寫入許可權的使用者
? valid users = share #共享目錄的使用者
? browseable = Yes #是否可瀏覽檔案
? read #是否只讀
? inherit acls = No
注意:自己寫的時候可以複製上面的 [software] 裡的內容,但是必須要把 # 號後面的內容刪除掉,這裡是為了跟你說明是用來幹什麼的,實際檔案裡不要帶這些註釋說明,否則會報錯!我就是一開始不知道,導致出錯的!
12.修改完配置檔案後,需要先執行一下(這個是檢查 smb.conf 有沒有錯誤的命令):
[root@localhost home]# testparm
看有沒有什麼錯誤,我之前報的如下的錯誤:
錯誤一:
rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
見到如上的錯誤,就得繼續以下的修改:
[root@localhost ~]# vim /etc/security/limits.conf
root - nofile 16384
root指root使用者 如果想都所有使用者生效,把root替換為 * 即可!我是設定的 * 下面是配置檔案內容
\#subdirectory, but a user specific setting here can be overriden only
#with a user specific setting in the subdirectory.
#
#Each line describes a limit for a user in the form:
#
#
#
#Where:
# can be:
# - a user name
# - a group name, with @group syntax
# - the wildcard *, for default entry
# - the wildcard %, can be also used with %group syntax,
# for maxlogin limit
* - nofile 16384
#
# can have the two values:
# - "soft" for enforcing the soft limits
# - "hard" for enforcing hard limits
#
# can be one of the following:
# - core - limits the core file size (KB)
# - data - max data size (KB)
# - fsize - maximum filesize (KB)
# - memlock - max locked-in-memory address space (KB)
錯誤二:
set_variable_helper(Yes #共享目錄可寫入): value is not boolean! Error loading services.
這個錯誤就是我之前所說的,沒有刪掉 # 號以及 # 後面的註釋的內容,當然這裡不要把開頭的那幾行帶 # 號的內容刪掉了!
13.給共享目錄賦予各種許可權 (這裡設定好了 就沒有許可權問題了!)
[root@localhost ~]# chmod 777 /etc/samba
[root@localhost ~]# chmon 777 /etc/samba
14.啟動samba服務
[root@localhost share]# systemctl start smb
15.設定samba服務開機自啟動
[root@localhost share]# systemctl enable smb
Created symlink from /etc/systemd/system/multi-user.target.wants/smb.service to /usr/lib/systemd/system/smb.service.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69948194/viewspace-2666159/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- windows 與 Centos7 共享檔案方法WindowsCentOS
- Linux與Windows共享檔案Samba(轉)LinuxWindowsSamba
- Windows檔案共享LinuxWindowsLinux
- windows共享到linux系統檔案WindowsLinux
- WLS中Linux與Windows間的環境共享LinuxWindows
- 番外篇:windows端共享檔案給LinuxWindowsLinux
- Linux Shell檔案之間的包含關係Linux
- Linux檔案共享(FTP+NFS)LinuxFTPNFS
- 利用 samba 實現 Ubuntu18.04 與 Windows10 的檔案共享SambaUbuntuWindows
- Xshell在Windows和Linux間檔案的上傳和下載WindowsLinux
- Android 7.0應用之間共享檔案Android
- mac下用scp命令實現本地檔案與伺服器Linux檔案之間的相互傳輸Mac伺服器Linux
- centos7使用samba搭建檔案共享伺服器CentOSSamba伺服器
- 蘋果手機和Windows之間互傳檔案蘋果Windows
- win10兩臺電腦怎麼共享檔案 兩臺win10電腦之間如何共享檔案Win10
- Linux(CentOS7)使用vim編輯檔案LinuxCentOS
- Linux與windows檔案傳輸詳解及例項LinuxWindows
- 【VMware vSphere】沒有共享儲存的ESXi主機之間如何共享本地儲存上的ISO檔案。
- ArgoWorkflow教程(七)---高效的步驟間檔案共享策略Go
- Linux和windows系統之間的區別LinuxWindows
- Linux程式間通訊之共享記憶體Linux記憶體
- 【Linux】Linux檔案之/etc/fstabLinux
- 蘋果裝置訪問 Windows 檔案共享教程蘋果Windows
- Linux系統掛載win系統的共享檔案Linux
- 超級簡單的實現window共享Linux檔案Linux
- Linux系統配置NFS檔案共享服務LinuxNFS
- Linux----12 檔案與檔案操作Linux
- linux下使用windows標頭檔案LinuxWindows
- Window主機與Linux 虛擬機器之間的檔案傳輸(二):FileZilla客戶端Linux虛擬機客戶端
- CentOS 6 NFS 共享檔案與掛載CentOSNFS
- Linux之檔案管理(一)Linux
- Linux刪除指定時間之前的檔案Linux
- 如何實現檔案共享,檔案共享的設定方法-鐳速
- linux系列之: 你知道檢視檔案空間的兩種方法嗎?Linux
- 加速檔案傳輸:檔案和UDP之間的區別UDP
- 檔案共享之SMB/CIFS協議及Samba的使用協議Samba
- scp命令 用於Linux之間複製檔案和目錄Linux
- 幾種windows到linux上傳檔案的方式WindowsLinux