2020년 7월 18일 토요일

우분투 업데이트, 용량 늘리기 및 각종 에러 해결 방법

우분투 사용 중에 갑자기 업데이트나 패키지 설치가 안되는 경우가 있다. 이 경우 sudo apt-get update 명령 입력 시 아래와 같은 에러 메시지들이 출력된다. 참고로, 본인의 경우, 엔비디아 보드 임베디드 패키지 설치를 위한 호스트 컴퓨터 사용중 시스템이 꼬였었다. 
E: Unable to locate package –f
e sub-process returned an error code


해결 방법을 정리한다. 

apt 시스템 오류 수정
다음과 같이 오류 수정 명령을 입력한다.
sudo dpkg --configure -a
sudo apt install -f
sudo apt --fix-broken install
sudo apt-get update

Sources.list 수정
다음과 같이 해당 파일을 수정한다.
sudo vi /etc/apt/sources.list

파일 내용은 이 링크를 참고해 다음과 같이 복사해 붙여 저장한다.
#deb cdrom:[Ubuntu 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.2)]/ xenial main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ xenial main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ xenial universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universe
deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ xenial multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu xenial partner
# deb-src http://archive.canonical.com/ubuntu xenial partner

deb http://security.ubuntu.com/ubuntu xenial-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://security.ubuntu.com/ubuntu xenial-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe
deb http://security.ubuntu.com/ubuntu xenial-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse

소프트웨어 업데이트 설정 수정 및 에러 처리
다음과 같이 소프트웨어 업데이트 앱(Software Updates application)에서 설정을 수정한다.
1. "Other Software" tab 선택
all options 해제
2. Ubuntu Software tab 선택
"Download from:" 선택 후 "Main server" option 선택
3. "Close" 

다음 명령을 입력한다.
sudo sed -i -e 's|disco|eoan|g' /etc/apt/sources.list
sudo apt update

특정 패키지 업데이트 시 에러가 나면, 아래와 같이 업데이트 탭에서 해당 패키지 항목들을 삭제한다.

var/lib/dpkg/lock 에러 수정 방법
에러 수정 방법은 다음과 같다. 
sudo rm /var/lib/apt/lists/lock 
sudo rm /var/cache/apt/archives/lock 
sudo rm /var/lib/dpkg/lock*
sudo rm -rf /var/lib/dpkg/lock-frontend

sudo dpkg --configure -a 
sudo apt update

우분투 용량 확인 및 정리하는 방법
아래 명령으로 불필요한 파일들을 확인한 후 삭제한다.
df -h
sudo du -sh *

특히 루트의 snap, tmp, var를 확인하고 불필요한 부분은 삭제한다.
sudo rm -rf /var/cache/snapd/
sudo apt autoremove --purge snapd gnome-software-plugin-snap
rm -fr ~/snap

다음과 같이 현재 우분투 커널 버전을 확인하고, 사용안되는 오래된 커널들을 삭제한다.
uname -r
apt-get purge linux-image-버전

sudo apt-get clean
sudo apt-get autoclean
sudo apt-get autoremove

참고: 한글 설정 방법
한글이 갑자기 안될 때는 이 링크를 참고한다.

댓글 없음:

댓글 쓰기