0. 选用 VMWare 个人免费版player 配置网络
个人免费版player 网络连接
1.配置成=》【桥接模式】
2.勾选【复制网络连接状态】
ps.
workstation 自带VMTools,可以拖拽,移动文件。
1. 安装samba
1.更新当前软件。
sudo apt-get upgrade
sudo apt-get update
sudo apt-get dist-upgrade
2.安装samba服务器。
sudo apt-get install samba samba-common
3.添加用户(下面的testn是用户名,之后会需要设置samba的密码)。
sudo smbpasswd -a test
4.配置samba的配置文件。
sudo vim /etc/samba/smb.conf
在配置文件smb.conf的最后添加下面的内容:
[test]
comment = test
browseable = yes
path = /home/test
create mask = 0700
directory mask = 0700
valid users = test
force user = test
force group = test
public = yes
available = yes
writable = yes
5.重启samba服务器。(注:每次配置完,必须重启samba服务)
sudo service smbd restart
参考
https://www.cnblogs.com/midhillzhou/p/14893889.html
https://www.cnblogs.com/tansuoxinweilai/p/11617419.html
tips:
目录要自己创建一下
2. 安装openssh
sudo apt-get update
sudo apt-get install openssh-server
参考
https://www.cnblogs.com/conefirst/articles/15225952.html