답변:
새로 설치된 시스템에 사용 가능한 패키지 데이터베이스가 없기 때문일 수 있습니다. 아래 단계에 따라 패키지 리포지토리에서 최신 항목을 생성 할 수 있습니다.
터미널을 엽니 다. 이를 달성하는 방법에는 여러 가지가 있지만 가장 일반적인 방법은
terminal
대시를 입력 하고 동일한 이름의 응용 프로그램을 시작하거나다음 명령을 터미널에 입력하거나 복사하여 붙여 넣어 실행하십시오.
sudo apt update
sudo apt upgrade -y
(프로세스에서 오류가 발생하면 새 질문을 열고이 명령 의 전체 출력을 그대로 사용하십시오 .)
소프트웨어 센터를 다시 열고 다시 시도하십시오.
sudo apt-get update && sudo apt-get upgrade
재시작 후에도 문제가 해결되지 않으면 다음을 제안합니다.
sudo apt-get dist-upgrade
재시작. 그래도 문제가 해결되지 않으면 프로그램과 관련된 홈 디렉토리의 폴더를 백업 한 후 삭제 해보십시오. 먼저 터미널 또는 다른 CLI에서
killall gnome-software
그때
mv ~/.local/share/gnome-software{,-BAK}
우분투 소프트웨어를 다시여십시오. (필요한 경우 언제든지 gnome-software 폴더 제거를 취소하고 백업을 복원 할 수 있습니다. rm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
마지막으로, 이것이 당신에게 효과가 없다면 다음의 결과를 알고 싶습니다.
find /etc/apt/ -name '*.list' -ls -exec cat {} \;
허용되는 모든 소스 목록입니다 (소스는 다운로드 할 수있는 소프트웨어가 들어있는 리포지토리입니다).
나는 당신이 sources.list에 아무것도없는 이유를 생각할 수는 없지만, 모든 정상적인 문제 해결 단계를 시도한 후에 우분투 소프트웨어에서 아무것도 사용할 수없는 것으로 생각할 수있는 유일한 설명이기도합니다.
위 명령의 출력 예 :
1234567 4 -rw-r--r-- 1 root root 3026 Apr 8 22:39 /etc/apt/sources.list
# deb cdrom:[Ubuntu 16.04.1 LTS _Xenial Xerus_ - Release amd64 (20160719)]/ xenial main multiverse restricted universe
# 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, 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
## 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
위의 예에서 네 개의 기본 리포지토리가 활성화되었습니다.
업데이트도 가능합니다. Canonical 파트너의 소프트웨어를 사용한 저장소는 사용할 수 없습니다. 이들은 Ubuntu를 처음 설치할 때 활성화되는 표준 옵션을 나타냅니다.
PPA를 추가 한 경우 위의 출력에도 나타납니다.
mv ~/.local/share/gnome-software{,-BAK}
왜 그런지 모르겠다.
sudo apt-get update
및sudo apt-get upgrade
명령 않았다