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與mac和windows的 檔案共享LinuxMacWindows
- Linux與Windows共享檔案Samba(轉)LinuxWindowsSamba
- Windows檔案共享LinuxWindowsLinux
- linux和Windows實現檔案共享之samba的安裝與配置LinuxWindowsSamba
- windows xp和linux虛擬機器之間使用ftp共享檔案WindowsLinux虛擬機FTP
- LINUX和WINDOWS之間的磁碟共享(轉)LinuxWindows
- Windows Linux 之間rsync同步CODE檔案WindowsLinux
- WLS中Linux與Windows間的環境共享LinuxWindows
- windows共享到linux系統檔案WindowsLinux
- 利用securecrt中的rs, sz在linux與windows之間傳輸檔案SecurecrtLinuxWindows
- linux如何掛載windows下的共享檔案LinuxWindows
- 番外篇:windows端共享檔案給LinuxWindowsLinux
- 簡單實現Windows和Linux檔案共享WindowsLinux
- linux與linux之間共享目錄設定Linux
- Linux與Windows之間的“冷戰”(轉)LinuxWindows
- Linux自學筆記——檔案共享之NFSLinux筆記NFS
- 檔案共享之nfsNFS
- Linux庫共享檔案的查詢與判斷Linux
- linux下的檔案共享(轉)Linux
- linux之間檔案傳輸scpLinux
- 使用sz rz命令在windows和linux系統之間傳檔案WindowsLinux
- Linux Shell檔案之間的包含關係Linux
- centos7使用samba搭建檔案共享伺服器CentOSSamba伺服器
- Linux訪問Windows共享檔案目錄LinuxWindows
- 蘋果手機和Windows之間互傳檔案蘋果Windows
- win10兩臺電腦怎麼共享檔案 兩臺win10電腦之間如何共享檔案Win10
- linux之touch命令修改檔案的時間戳Linux時間戳
- linux 系統之間傳輸檔案Linux
- DOS/Windows和Linux/Unix間檔案格式轉換WindowsLinux
- 29 檔案共享與保護
- 淺析 Linux 的共享記憶體與 tmpfs 檔案系統Linux記憶體
- Android 7.0應用之間共享檔案Android
- mysql之 共享表空間與獨立表空間、frm,MYD,MYI.idb,par檔案說明MySql
- Linux檔案共享(FTP+NFS)LinuxFTPNFS
- Windows到Linux之間的檔案傳輸---putty_psftp_pscp用法簡介WindowsLinuxFTP
- 利用 samba 實現 Ubuntu18.04 與 Windows10 的檔案共享SambaUbuntuWindows
- (轉)Linux之間copy檔案常用方法 scpLinux