在进行U-BOOT移植的时候,需要windows与LINUX之间共享文件,因此就有了这种服务。创建Samba服务布置:
1.确保linux在安装的时候安装了Samba 的RPM包
2.修改samba的配置文件,位置在/etc/samba/smb.conf
1)编辑:vim /etc/samba/smb.conf,在248行加入:
[root]
248 comment =Root Directories
249 browseable = yes
250 writable = yes //文件可以写
251 path = / //路径为根目录
252 valid users = smb //用户smb
2)保存退出,wq
3.添加用户
1)在/home目录下添加用户,命令为useradd smb
2)设置密码,目录不变,命令为smbpasswd -a smb
4.重新启动samba服务器
1)命令:/etc/init.d /smb start
2)命令:/etc/init.d /smb restart
5.在当前目录下输入setup,进入系统配置里面会看见smb服务。
6.查看IP
[root@localhost /]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:0C:29:3B:BE:83
inet addr:192.168.0.5 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe3b:be83/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4359 errors:0 dropped:0 overruns:0 frame:0
TX packets:5251 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:605935 (591.7 KiB) TX bytes:3316255 (3.1 MiB)
Interrupt:18 Base address:0x2000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:3469 errors:0 dropped:0 overruns:0 frame:0
TX packets:3469 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5556516 (5.2 MiB) TX bytes:5556516 (5.2 MiB)
7.查看windows IP,在命令是ipconfig
8.由于我们的虚拟机的网络方式是桥接,因为linux与windows的IP必须在一个网段内。
9.关掉windows与linux的防火墙。
10.linux与windows互相ping.
1)在linux下:
[root@localhost /]# ping 192.168.0.2
PING 192.168.0.2 (192.168.0.2) 56(84) bytes of data.
64 bytes from 192.168.0.2: icmp_seq=1 ttl=128 time=0.550 ms
64 bytes from 192.168.0.2: icmp_seq=2 ttl=128 time=0.234 ms
64 bytes from 192.168.0.2: icmp_seq=3 ttl=128 time=0.171 ms
64 bytes from 192.168.0.2: icmp_seq=4 ttl=128 time=0.231 ms
64 bytes from 192.168.0.2: icmp_seq=5 ttl=128 time=0.190 ms
64 bytes from 192.168.0.2: icmp_seq=6 ttl=128 time=0.185 ms
这样的数据说明网络是通的,如果想停止,必须ctrl+c
2)在windows下:ping 192.168.0.5
3)如果相互之间都可以ping的话,就可以进行Samba工作了(在有的PC上,linux不能ping windows,但是windows能ping linux,在这种情况下也能进行samba,但是有的就不行,我还没有弄清楚为什么)。
11.在windows下运行://192.168.0.5
1)进入界面后输入用户名smb,密码:
2)这样就可以进入samba服务的界面(由于这里好象不能copy界面,所以就没有截图)
11.实现 windows与linux之间传输文件,如果有的文件下下面不能加文件,说明smb用户的权限不够,在linux下输入chmod (如777)改变文件的读写权限。
以上几个步骤就可以实现samba服务。
阅读(1067) | 评论(0) | 转发(3) |