일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 취약점진단
- gns3
- 정보보안산업기사
- NEXUS
- GitLab
- 웹모의해킹
- 드림핵
- Bigdata
- 보안컨설팅
- NQ5
- snort2.9
- 데이터모델링
- 기아
- dreamhack.io
- 리눅스
- 보안기사실기
- Synology
- Snort
- 리눅스보안
- AI
- 정보보안기사
- M1
- docker
- 모의해킹
- VMware
- 정보보안
- 스노트
- Python
- 유닉스
- DreamHack
- Today
- Total
Security_Analysis
Ubuntu 16.04 LTS apt update Error Command Fix 본문
Ubuntu 16.04 LTS apt update Error Command Fix
Positivie 2019. 1. 16. 11:35- Ubuntu 16.04 LTS <Command : apt-update> Error Fix -
vim 패키지를 설치하는 방법에 대해서 포스팅을 한 적이 있다.
https://securitypositive.tistory.com/entry/vivim-editor-Package-설치
명령어는 아래와 같다.
root@ubuntu:~# apt upgrade root@ubuntu:~# apt update root@ubuntu:~# apt-get install vim |
하지만, apt update 를 하는도중 에러가 발생하였다.
이 오류는 무엇인지 구글링 해보았더니
http://us.archive.ubuntu.com/ubuntu/dists/xenial-updates/main/binary-amd64/by-hash/~~~~~
이 사이트에서 update 파일을 다운받아야하지만, 기간이 오래 지나서 더이상 다운을 받을 수 없다는 메시지 인 것으로 확인했다.
Update를 하기 위해서 새로운 오류 설정을 해야하는데 아래와 같이 설정후 "apt update" 명령어를 써주면 오류는 해결된다.
#apt update Error Fix command
root@ubuntu: cat > /etc/apt/sources.list << EOF deb http://archive.ubuntu.com/ubuntu xenial main restricted universe multiverse deb-src http://archive.ubuntu.com/ubuntu xenial main restricted universe multiverse deb http://archive.ubuntu.com/ubuntu xenial-updates main restricted universe multiverse deb-src http://archive.ubuntu.com/ubuntu xenial-updates main restricted universe multiverse deb http://archive.ubuntu.com/ubuntu xenial-backports main restricted universe multiverse deb-src http://archive.ubuntu.com/ubuntu xenial-backports main restricted universe multiverse deb http://archive.ubuntu.com/ubuntu xenial-security main restricted universe multiverse deb-src http://archive.ubuntu.com/ubuntu xenial-security main restricted universe multiverse #deb http://archive.ubuntu.com/ubuntu xenial-proposed main restricted universe multiverse #deb-src http://archive.ubuntu.com/ubuntu xenial-proposed main restricted universe multiverse deb http://archive.canonical.com/ubuntu xenial partner deb-src http://archive.canonical.com/ubuntu xenial partner EOF root@ubuntu: apt clean root@ubuntu: apt update |
위와 같이 sources.list 라는 파일에 내용을 추가해주면서 "EOF" 라는 문자가 입력됬을시 종료하게끔 설정 후
deb 와 관련된 내용을 입력해준 후 , apt clean 과 ,
update를 해보면 update가 정상적으로 해결된 것을 확인 할 수 있다.
'Operating System > Unix&Linux' 카테고리의 다른 글
Ubuntu 16.04 LTS Setup Chrome Browser (0) | 2019.01.16 |
---|---|
Ubuntu 16.04 LTS Setup "Atom Editor" (0) | 2019.01.16 |
Ubuntu 16.04 LTS - Telnet Server Setting - (0) | 2018.10.23 |
Ubuntu 16.04 LTS - 한/영 버튼을 이용한 언어 변경하기 - (0) | 2018.10.22 |
Ubuntu 16.04 LTS - 관리자 권한 파일(sudoers) 셋팅 (0) | 2018.10.13 |