1. 삼바 패키지 설치


아래 명령어로 삼바를 설치하도록 하자.

$ sudo apt-get install samba samba-common



2. user 추가 


$ sudo smbpass -a "유저이름"


유저의 패스워드를 설정하도록 하자

New SMB password:

Retype new SMB password:

Added user "유저이름".




3. 삼바 설정 파일 수정


$ sudo vim /etc/samba/smb.conf

위 파일에서 [home]과 관련된 주석을 해제한다.


[homes]

   comment = Home Directories

   browseable = no

위 내용 앞에 ;를 지워주면 된다.
그러면 2에서 추가한 user의 홈 디렉토리가 자동으로 공유된다.



4. 삼바 재시작


$ sudo /etc/init.d/samba restart



이제 윈도우에서 접속해서 사용하면 된다.


\\"ip 주소"\"유저이름"

'linux > ubuntu' 카테고리의 다른 글

우분투 ssh 서버 설치  (0) 2014.07.10
우분투 저장소 변경  (0) 2014.07.08


1. ssh 서버 설치


우분투에 ssh서버를 설치 해야 한다.

$ sudo apt-get install openssh-server



2. 서버 ip 확인


$ ifconfig


eth0      Link encap:Ethernet  HWaddr xxxxxxxxx 

          inet addr:10.0.2.15  Bcast:10.0.2.255  Mask:255.255.255.0

          inet6 addr: fe80::a00:27ff:fed7:eea2/64 Scope:Link

          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

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

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

          collisions:0 txqueuelen:1000 

          RX bytes:3455 (3.4 KB)  TX bytes:9991 (9.9 KB)

빨간 게 IP이다.


'linux > ubuntu' 카테고리의 다른 글

우분투 14.04 삼바 설치  (0) 2014.07.10
우분투 저장소 변경  (0) 2014.07.08

우분투에서 apt-get install로 패키지를 설치할 때가 있다.

이때 서버에서 파일을 다운로드 받은 후 설치를 하게 되는데 기본으로 설정되어 있는 서버는 속도가 느리다.

따라서 이를 바꿀 필요가 있다.


아래 명령어를 입력해서 저장소가 무엇으로 되어 있는지 확인해 보자.

sudo cp /etc/apt/sources.list /etc/apt/sources.list-ori

sudo gedit /etc/apt/sources.list

만일을 대비해 원본을 복사해 두었다.

#deb cdrom:[Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417)]/ trusty main restricted


# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to

# newer versions of the distribution.

deb http://kr.archive.ubuntu.com/ubuntu/ trusty main restricted

deb-src http://kr.archive.ubuntu.com/ubuntu/ trusty main restricted

텍스트 창이 열리며 위와 같은 내용이 들어 있음을 확인 할 수 있다.

자세히는 모르지만 서버의 주소는 http://kr.archive.ubuntu.com/ubuntu/임을 확인할 수 있다.


여기서 ctrl+h를 눌러 바꾸기를 열고, kr.archive.ubuntu.com를 ftp.daum.net로 바꾸도록 하자.

추가로 extras.ubuntu.com와 security.ubuntu.com도 ftp.daum.net로 바꾸자.


ctrl+s를 눌러 저장을 하고 빠져나오면 서버의 주소가 바뀌었다.


마지막으로 바뀐 서버로 update와 upgrade를 하도록 하자.

sudo apt-get update

sudo apt-get upgrade


'linux > ubuntu' 카테고리의 다른 글

우분투 14.04 삼바 설치  (0) 2014.07.10
우분투 ssh 서버 설치  (0) 2014.07.10

+ Recent posts