초보의 아웅다웅 설계하기/Ubuntu

Android - Samba to Window

로망와니 2011. 3. 6. 21:32
http://realpc.tistory.com/40
http://realizm.tistory.com/36


sudo apt-get update
sudo apt-get install samba smbfs
mkdir sambastore
chmod 777 ~/sambastore/
ls -l
sudo cp /etc/samba/smb.conf /etc/samba/smb_o.conf
sudo rm -rf /etc/samba/smb.conf
sudo vi /etc/samba/smb.conf

/*-----------------------------------------
[global]
workgroup = WORKGROUP
encrypt passwords = yes
server string = Samba-store
security = share

dos charset = CP949
display charset = UTF8
unix charset = UTF8

[saas]
comment = My Documents
path = /home/hk/sambastore
readonly = no
browsable = yes
guest ok = yes
public = yes
/*-----------------------------------------

sudo service smbd restart

'초보의 아웅다웅 설계하기 > Ubuntu' 카테고리의 다른 글

RSA, AES, ARIA, SHA256 암호 예제 C  (0) 2016.05.23
Ubuntu - Mount  (0) 2011.03.23
Ubuntu - Vi 편집기  (0) 2011.03.22
Ubuntu - 컴파일  (0) 2011.03.21
Android - Ubuntu 명령어  (0) 2011.03.14