如何用Windows 10访问Linux服务器的共享文件夹

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用Windows 10访问Linux服务器的共享文件夹相关的知识,希望对你有一定的参考价值。

参考技术A

一、目标

通过Windows 10系统访问Linux服务器的共享文件夹,可将Linux服务器的文件夹映射到Windows 10系统,实现在Windows 10系统方便的读、写Linux服务器的文件夹和文件。

二、需要的条件

1、安装有Ubuntu或者是CentOS操作系统的服务器。

2、Windows 10和Linux服务器处于同一个局域网内。

三、实现步骤

1、在Linux服务器安装Samba服务软件,安装命令如下:

Ubuntu系统:

sudo apt update

sudo apt install samba -y

CentOS系统:

yum install samba -y

安装完成后,可运行命令 whereis samba 检查是否安装成果,以下应该是它的输出:

samba: /usr/sbin/samba /usr/lib/samba /etc/samba /usr/share/samba /usr/share/man/man7/samba.7.gz /usr/share/man/man8/samba.8.gz

2、在Linux服务器设置用于共享的文件夹

新建一个目录:

mkdir /home/ /sambashare/

编辑配置文件 /etc/samba/smb.conf 设置共享目录,如下所示:

sudo vim /etc/samba/smb.conf

[sambashare]

comment = Samba on Ubuntu

path = /home/username/sambashare

read only = no

browsable = yes

3、设置用户账号并连接共享文件夹

由于 Samba 不使用系统账户密码,我们需要为我们的用户账户设置一个 Samba 密码:

sudo smbpasswd -a username

在Windows 10 系统连接共享文件夹,在资源管理器里输入:

ip-addresssambashare

注:ip-address是 Samba 服务器的 IP 地址,sambashare是共享的名称。

四、参考资料

https://ubuntu.com/tutorials/install-and-configure-samba#1-overview。

[Windows] 如何用编程的方式格式化硬盘

If memory serves, you‘re looking for SHFormatDrive().

 

Sounds like you are looking for Disk Management Control Codes.

answered Oct 7 ‘10 at 11:10
技术图片

Luke

 

ThI have ended up using a combination of WMI & DeviceIoControl with the Disk Management Control Codes. This looks to be able to do everything that I want, except that currently I am having some issues with using the Win32_Volume Format method in C++, I am constantly getting a WBEM_E_INVALID_METHOD_PARAMETERS error. – Zac Shenker Oct 12 ‘10 at 4:36
 
https://stackoverflow.com/questions/3879294/windows-c-c-drive-init-partition-format

以上是关于如何用Windows 10访问Linux服务器的共享文件夹的主要内容,如果未能解决你的问题,请参考以下文章

windows 中如何用SSH 连接 linux

如何用zabbix的snmp方式监控windows的温度

如何用Linux连接Windows的远程桌面

如何用windows IIS服务器申请Let’s Encrypt的免费证书

如何用win10访问网络上的共享文件夹

如何用win10上的vscode看虚拟机里的代码?