우분투에서 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