Security_Analysis

Ubuntu 16.04 LTS apt update Error Command Fix 본문

Operating System/Unix&Linux

Ubuntu 16.04 LTS apt update Error Command Fix

Positivie 2019. 1. 16. 11:35
728x90
반응형

- 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가 정상적으로 해결된 것을 확인 할 수 있다. 






728x90
반응형