Share folders on remote Linux PC to your local Windows PC

With samba on Linux PC already installed

On Linux PC:

1. vi /etc/samba/smb.conf

add the following text in the end,  NOTE, there are  SPACEs before those options.

[192.168.0.27.home]
         comment = Linux Server 192.168.0.27 home
         path = /home/xxxxx/
         writeable = yes
;       browseable = yes
         create mask = 0777
         directory mask = 0777
         guest ok = yes
         force user = xxxxx

2. restart services

service smbd restart

service nmbd restart

3. on Windows PC

\\192.168.0.27 to access that Linux PC

Done.

时间: 2024-10-01 02:30:32

Share folders on remote Linux PC to your local Windows PC的相关文章

Share folders on your local Windows PC to remote Linux PC

1. make the folders(H:\win7_host_backup) on Windows PC shared 2. on remote Linux PC cmdline, mount -t cifs -o username=xxxxxxx,password=xxxxx,dir_mode=0755,file_mode=0755 //WindowsPC_IP/win7_host_backup ~/remote_windows Done.

start a GUI software on a remote Linux PC via SSH

Is there a way to start a GUI software on a remote Linux PC via SSH? => We just need to run export DISPLAY=:0 in ssh session and programs run will run on the remote display. ex: [email protected]:~$ ssh tim [email protected]:~$ export DISPLAY=:0 [ema

Connect to a Windows PC from Ubuntu via Remote Desktop Connection

http://www.7tutorials.com/connecting-windows-remote-desktop-ubuntu A useful feature of Windows is being able to connect to your Desktop from another location to remotely manage your computer. While this functionality is native in Windows, it is not s

Linux下使用VirtualBox安装Windows系统

(文档比较长,只是写的详细,实际操作起来相对简单.) 由于一些特殊原因,我们并不能完全抛下Windows而使用Linux.VirtualBox 是一款虚拟机软件,支持多系统.在Linux下安装 VirtualBox 后,我们就可以安装Windows系统,并使用Windows下的软件了. 1.下载首先需要下载 VirtualBox,下载地址:http://www.virtualbox.org/wiki/Downloads点击 VirtualBox 3.2.8 for Linux hosts,跳转到

如何在 Linux 上永久挂载一个 Windows 共享

导读 如果你已经厌倦了每次重启 Linux 就得重新挂载 Windows 共享,读读这个让共享永久挂载的简单方法. 在 Linux 上和一个 Windows 网络进行交互从来就不是件轻松的事情.想想多少企业正在采用 Linux,需要在这两个平台上彼此协作.幸运的是,有了一些工具的帮助,你可以轻松地将 Windows 网络驱动器映射到一台 Linux 机器上,甚至可以确保在重启 Linux 机器之后共享还在. 在我们开始之前 要实现这个,你需要用到命令行.过程十分简单,但你需要编辑 /etc/fs

用samba和Microsoft Sync Toy从linux备份日志文件到windows

利用samba使linux系统日志备份到windows系统,以便查看与分析. 一.linux作为服务器, 1.vi  /etc/samba/smb.conf 在文件结尾添加如下行:[share]comment=this is Linux share directorypath=/home/myth/share hosts allow = 172.28.8.177 public=yeswritable=yes 保存退出:wq 2.重启smb服务 service smb restart 二.wind

stm32 USB hid设备与PC进行双向数据传输时PC不识别USB设备

stm32 USB hid设备与PC进行双向数据传输时PC不识别USB设备,或者开始时识别,拔出后再插入就没有反应了,就连鼠标U盘也没有反应. 我的问题是,我安装了VMware虚拟机,并进行USB设备的分配,使得虚拟机系统也识别USB设备. 所以,解决问题的办法如下: 在<属性>中选择禁用. 然后把下面的VMware Workstation Server 也禁用了.重启电脑就OK了.

Linux系统如何装回Windows系统

直接插上制作的WindowsU盘启动,到选择安装到哪个磁盘时,Windows无法识别Linux的磁盘格式ext4. 解决办法是: 选中驱动器,点击下面的删除按钮,重新分区即可,最多好像只能分4个区. 装好系统后,除系统盘之外的盘需要重新格式化. Linux系统如何装回Windows系统,布布扣,bubuko.com

(8)Linux(客户端)和Windows(服务端)下socket通信实例

Linux(客户端)和Windows(服务端)下socket通信实例: (1)首先是Windows做客户端,Linux做服务端的程序 Windows   Client端 #include <stdio.h> #include <Windows.h> #pragma comment(lib, "ws2_32.lib") #define Port 5000 #define IP_ADDRESS "192.168.1.30"     //服务器地址