VMWare Ubuntu Server Samba 연결

Posted by [하늘이]
2014. 4. 27. 17:06 IT/PC Util 및 Tips
반응형


@ 삼바를 설치

$ sudo apt-get install samba smbfs


@ samba pw 설정

$ sudo smbpasswd -a userID

=> userID 로 접속하는 사용자에 대한 PW를 설정한다.



@ samba config 파일에 공유 정보 추가

$ sudo vim /etc/samba/smb.conf

  => config 파일 마지막 부분에 아래와 같이 추가.

[info]                  <-- 공유 폴더 이름

comment=ubuntu_32bit    <-- 코맨트

path=/home/             <-- (윈도우즈에서 접속시 보일 디렉토리)

read only = no

writable = yes

printable = no

public = yes

browsable = yes

guest ok=no


@ 삼바 재시작

$ sudo /etc/init.d/smbd restart


@ Windown에서 연결한 ip 확인

$ ifconfig

eth0      Link encap:Ethernet  HWaddr 00:0c:29:a8:xx:xx

          inet addr:192.XXX.XXX.XXX  Bcast:192.168.110.255  Mask:255.255.255.0

          inet6 addr: xxxx::20c:xxxx:fea8:327f/64 Scope:Link

          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

          RX packets:97 errors:0 dropped:0 overruns:0 frame:0

          TX packets:175 errors:0 dropped:0 overruns:0 carrier:0

          collisions:0 txqueuelen:1000

          RX bytes:18644 (18.6 KB)  TX bytes:26803 (26.8 KB)

          Interrupt:19 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


@ window 에서 네트웍 드라이브로 탐색기에서 설정한다.




반응형