Ubuntu software not showing any software
After installing 16.04, Ubuntu Software is always empty as shown in the screenshot. How can I fix this?
16.04 package-management software-installation software-sources gnome-software
add a comment |
After installing 16.04, Ubuntu Software is always empty as shown in the screenshot. How can I fix this?
16.04 package-management software-installation software-sources gnome-software
2
did u runsudo apt-get update
andsudo apt-get upgrade
command
– bhordupur
Apr 22 '16 at 20:21
this is a duplicate of askubuntu.com/questions/761210/…
– Amias
May 5 '16 at 15:48
add a comment |
After installing 16.04, Ubuntu Software is always empty as shown in the screenshot. How can I fix this?
16.04 package-management software-installation software-sources gnome-software
After installing 16.04, Ubuntu Software is always empty as shown in the screenshot. How can I fix this?
16.04 package-management software-installation software-sources gnome-software
16.04 package-management software-installation software-sources gnome-software
edited Apr 10 '18 at 6:00
Hee Jin
660317
660317
asked Apr 22 '16 at 20:09
zandradezandrade
36112
36112
2
did u runsudo apt-get update
andsudo apt-get upgrade
command
– bhordupur
Apr 22 '16 at 20:21
this is a duplicate of askubuntu.com/questions/761210/…
– Amias
May 5 '16 at 15:48
add a comment |
2
did u runsudo apt-get update
andsudo apt-get upgrade
command
– bhordupur
Apr 22 '16 at 20:21
this is a duplicate of askubuntu.com/questions/761210/…
– Amias
May 5 '16 at 15:48
2
2
did u run
sudo apt-get update
and sudo apt-get upgrade
command– bhordupur
Apr 22 '16 at 20:21
did u run
sudo apt-get update
and sudo apt-get upgrade
command– bhordupur
Apr 22 '16 at 20:21
this is a duplicate of askubuntu.com/questions/761210/…
– Amias
May 5 '16 at 15:48
this is a duplicate of askubuntu.com/questions/761210/…
– Amias
May 5 '16 at 15:48
add a comment |
3 Answers
3
active
oldest
votes
Change the Download from server in Software & Updates. I had mine set on to a nearby Swedish one (which maybe itself has not updated yet). I changed to a more official looking UK server and Ubuntu software is now working.
Note they are all "official". However, there could be issues with the servers, yes.
– Tim
Apr 24 '16 at 14:30
add a comment |
This is most likely because newly installed systems lack a database of available packages. You can generate a recent one from the package repositories with the below steps.
Open a terminal. There are many ways to achieve that but the most common are to
- type
terminal
in the dash and start the application of the same name or - press Ctrl+Alt+T.
- type
Type or copy & paste the following commands into the terminal an run them:
sudo apt update
sudo apt upgrade -y
(If you run into any errors in the process, please open a new question and include the entire output of these commands verbatim.)
Re-open Software Center and try again.
You also possibly might want to check your sources. It's possible to do this in a GUI-way ("Software and Updates" launcher), but I recommend doing it in command line if you're already having issues with Ubuntu Software.
– Hee Jin
Apr 9 '18 at 20:17
add a comment |
If sudo apt-get update && sudo apt-get upgrade
followed by a restart doesn't fix the issue, I would suggest:
sudo apt-get dist-upgrade
Restart. If that doesn't help, you could also try backing up then deleting a folder in your home directory associated with the program. First, in Terminal or other CLI:
killall gnome-software
Then
mv ~/.local/share/gnome-software{,-BAK}
Reopen Ubuntu Software. (If needed, you can always undo the removal of the gnome-software folder and restore the backup: rm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
Finally, if none of this works for you, I would be interested to know the output of:
find /etc/apt/ -name '*.list' -ls -exec cat {} ;
This is a list of all your allowed sources (sources are the repositories that contain the available software to download).
Although I can't think of any reason why you'd have nothing in sources.list, it's also the only explanation I can think of as to why nothing shows up as available in Ubuntu Software after trying all the normal troubleshooting steps.
Example output of the above command:
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
In the above example, the four main repositories are enabled.
- Main - Canonical-supported free and open-source software.
- Universe - Community-maintained free and open-source software.
- Restricted - Proprietary drivers for devices.
- Multiverse - Software restricted by copyright or legal issues.
Updates are also enabled. Repos with software from Canonical partners are not enabled. These represent the standard options that are enabled when you install Ubuntu for the first time.
If you had added any PPA's they would also appear in the output above.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f760817%2fubuntu-software-not-showing-any-software%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Change the Download from server in Software & Updates. I had mine set on to a nearby Swedish one (which maybe itself has not updated yet). I changed to a more official looking UK server and Ubuntu software is now working.
Note they are all "official". However, there could be issues with the servers, yes.
– Tim
Apr 24 '16 at 14:30
add a comment |
Change the Download from server in Software & Updates. I had mine set on to a nearby Swedish one (which maybe itself has not updated yet). I changed to a more official looking UK server and Ubuntu software is now working.
Note they are all "official". However, there could be issues with the servers, yes.
– Tim
Apr 24 '16 at 14:30
add a comment |
Change the Download from server in Software & Updates. I had mine set on to a nearby Swedish one (which maybe itself has not updated yet). I changed to a more official looking UK server and Ubuntu software is now working.
Change the Download from server in Software & Updates. I had mine set on to a nearby Swedish one (which maybe itself has not updated yet). I changed to a more official looking UK server and Ubuntu software is now working.
edited Apr 22 '16 at 22:36
answered Apr 22 '16 at 21:53
MichaelMichael
712
712
Note they are all "official". However, there could be issues with the servers, yes.
– Tim
Apr 24 '16 at 14:30
add a comment |
Note they are all "official". However, there could be issues with the servers, yes.
– Tim
Apr 24 '16 at 14:30
Note they are all "official". However, there could be issues with the servers, yes.
– Tim
Apr 24 '16 at 14:30
Note they are all "official". However, there could be issues with the servers, yes.
– Tim
Apr 24 '16 at 14:30
add a comment |
This is most likely because newly installed systems lack a database of available packages. You can generate a recent one from the package repositories with the below steps.
Open a terminal. There are many ways to achieve that but the most common are to
- type
terminal
in the dash and start the application of the same name or - press Ctrl+Alt+T.
- type
Type or copy & paste the following commands into the terminal an run them:
sudo apt update
sudo apt upgrade -y
(If you run into any errors in the process, please open a new question and include the entire output of these commands verbatim.)
Re-open Software Center and try again.
You also possibly might want to check your sources. It's possible to do this in a GUI-way ("Software and Updates" launcher), but I recommend doing it in command line if you're already having issues with Ubuntu Software.
– Hee Jin
Apr 9 '18 at 20:17
add a comment |
This is most likely because newly installed systems lack a database of available packages. You can generate a recent one from the package repositories with the below steps.
Open a terminal. There are many ways to achieve that but the most common are to
- type
terminal
in the dash and start the application of the same name or - press Ctrl+Alt+T.
- type
Type or copy & paste the following commands into the terminal an run them:
sudo apt update
sudo apt upgrade -y
(If you run into any errors in the process, please open a new question and include the entire output of these commands verbatim.)
Re-open Software Center and try again.
You also possibly might want to check your sources. It's possible to do this in a GUI-way ("Software and Updates" launcher), but I recommend doing it in command line if you're already having issues with Ubuntu Software.
– Hee Jin
Apr 9 '18 at 20:17
add a comment |
This is most likely because newly installed systems lack a database of available packages. You can generate a recent one from the package repositories with the below steps.
Open a terminal. There are many ways to achieve that but the most common are to
- type
terminal
in the dash and start the application of the same name or - press Ctrl+Alt+T.
- type
Type or copy & paste the following commands into the terminal an run them:
sudo apt update
sudo apt upgrade -y
(If you run into any errors in the process, please open a new question and include the entire output of these commands verbatim.)
Re-open Software Center and try again.
This is most likely because newly installed systems lack a database of available packages. You can generate a recent one from the package repositories with the below steps.
Open a terminal. There are many ways to achieve that but the most common are to
- type
terminal
in the dash and start the application of the same name or - press Ctrl+Alt+T.
- type
Type or copy & paste the following commands into the terminal an run them:
sudo apt update
sudo apt upgrade -y
(If you run into any errors in the process, please open a new question and include the entire output of these commands verbatim.)
Re-open Software Center and try again.
answered Oct 3 '16 at 18:52
David FoersterDavid Foerster
27.9k1364110
27.9k1364110
You also possibly might want to check your sources. It's possible to do this in a GUI-way ("Software and Updates" launcher), but I recommend doing it in command line if you're already having issues with Ubuntu Software.
– Hee Jin
Apr 9 '18 at 20:17
add a comment |
You also possibly might want to check your sources. It's possible to do this in a GUI-way ("Software and Updates" launcher), but I recommend doing it in command line if you're already having issues with Ubuntu Software.
– Hee Jin
Apr 9 '18 at 20:17
You also possibly might want to check your sources. It's possible to do this in a GUI-way ("Software and Updates" launcher), but I recommend doing it in command line if you're already having issues with Ubuntu Software.
– Hee Jin
Apr 9 '18 at 20:17
You also possibly might want to check your sources. It's possible to do this in a GUI-way ("Software and Updates" launcher), but I recommend doing it in command line if you're already having issues with Ubuntu Software.
– Hee Jin
Apr 9 '18 at 20:17
add a comment |
If sudo apt-get update && sudo apt-get upgrade
followed by a restart doesn't fix the issue, I would suggest:
sudo apt-get dist-upgrade
Restart. If that doesn't help, you could also try backing up then deleting a folder in your home directory associated with the program. First, in Terminal or other CLI:
killall gnome-software
Then
mv ~/.local/share/gnome-software{,-BAK}
Reopen Ubuntu Software. (If needed, you can always undo the removal of the gnome-software folder and restore the backup: rm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
Finally, if none of this works for you, I would be interested to know the output of:
find /etc/apt/ -name '*.list' -ls -exec cat {} ;
This is a list of all your allowed sources (sources are the repositories that contain the available software to download).
Although I can't think of any reason why you'd have nothing in sources.list, it's also the only explanation I can think of as to why nothing shows up as available in Ubuntu Software after trying all the normal troubleshooting steps.
Example output of the above command:
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
In the above example, the four main repositories are enabled.
- Main - Canonical-supported free and open-source software.
- Universe - Community-maintained free and open-source software.
- Restricted - Proprietary drivers for devices.
- Multiverse - Software restricted by copyright or legal issues.
Updates are also enabled. Repos with software from Canonical partners are not enabled. These represent the standard options that are enabled when you install Ubuntu for the first time.
If you had added any PPA's they would also appear in the output above.
add a comment |
If sudo apt-get update && sudo apt-get upgrade
followed by a restart doesn't fix the issue, I would suggest:
sudo apt-get dist-upgrade
Restart. If that doesn't help, you could also try backing up then deleting a folder in your home directory associated with the program. First, in Terminal or other CLI:
killall gnome-software
Then
mv ~/.local/share/gnome-software{,-BAK}
Reopen Ubuntu Software. (If needed, you can always undo the removal of the gnome-software folder and restore the backup: rm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
Finally, if none of this works for you, I would be interested to know the output of:
find /etc/apt/ -name '*.list' -ls -exec cat {} ;
This is a list of all your allowed sources (sources are the repositories that contain the available software to download).
Although I can't think of any reason why you'd have nothing in sources.list, it's also the only explanation I can think of as to why nothing shows up as available in Ubuntu Software after trying all the normal troubleshooting steps.
Example output of the above command:
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
In the above example, the four main repositories are enabled.
- Main - Canonical-supported free and open-source software.
- Universe - Community-maintained free and open-source software.
- Restricted - Proprietary drivers for devices.
- Multiverse - Software restricted by copyright or legal issues.
Updates are also enabled. Repos with software from Canonical partners are not enabled. These represent the standard options that are enabled when you install Ubuntu for the first time.
If you had added any PPA's they would also appear in the output above.
add a comment |
If sudo apt-get update && sudo apt-get upgrade
followed by a restart doesn't fix the issue, I would suggest:
sudo apt-get dist-upgrade
Restart. If that doesn't help, you could also try backing up then deleting a folder in your home directory associated with the program. First, in Terminal or other CLI:
killall gnome-software
Then
mv ~/.local/share/gnome-software{,-BAK}
Reopen Ubuntu Software. (If needed, you can always undo the removal of the gnome-software folder and restore the backup: rm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
Finally, if none of this works for you, I would be interested to know the output of:
find /etc/apt/ -name '*.list' -ls -exec cat {} ;
This is a list of all your allowed sources (sources are the repositories that contain the available software to download).
Although I can't think of any reason why you'd have nothing in sources.list, it's also the only explanation I can think of as to why nothing shows up as available in Ubuntu Software after trying all the normal troubleshooting steps.
Example output of the above command:
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
In the above example, the four main repositories are enabled.
- Main - Canonical-supported free and open-source software.
- Universe - Community-maintained free and open-source software.
- Restricted - Proprietary drivers for devices.
- Multiverse - Software restricted by copyright or legal issues.
Updates are also enabled. Repos with software from Canonical partners are not enabled. These represent the standard options that are enabled when you install Ubuntu for the first time.
If you had added any PPA's they would also appear in the output above.
If sudo apt-get update && sudo apt-get upgrade
followed by a restart doesn't fix the issue, I would suggest:
sudo apt-get dist-upgrade
Restart. If that doesn't help, you could also try backing up then deleting a folder in your home directory associated with the program. First, in Terminal or other CLI:
killall gnome-software
Then
mv ~/.local/share/gnome-software{,-BAK}
Reopen Ubuntu Software. (If needed, you can always undo the removal of the gnome-software folder and restore the backup: rm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
Finally, if none of this works for you, I would be interested to know the output of:
find /etc/apt/ -name '*.list' -ls -exec cat {} ;
This is a list of all your allowed sources (sources are the repositories that contain the available software to download).
Although I can't think of any reason why you'd have nothing in sources.list, it's also the only explanation I can think of as to why nothing shows up as available in Ubuntu Software after trying all the normal troubleshooting steps.
Example output of the above command:
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
In the above example, the four main repositories are enabled.
- Main - Canonical-supported free and open-source software.
- Universe - Community-maintained free and open-source software.
- Restricted - Proprietary drivers for devices.
- Multiverse - Software restricted by copyright or legal issues.
Updates are also enabled. Repos with software from Canonical partners are not enabled. These represent the standard options that are enabled when you install Ubuntu for the first time.
If you had added any PPA's they would also appear in the output above.
edited Apr 9 '18 at 21:00
David Foerster
27.9k1364110
27.9k1364110
answered Apr 9 '18 at 20:46
Hee JinHee Jin
660317
660317
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f760817%2fubuntu-software-not-showing-any-software%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
did u run
sudo apt-get update
andsudo apt-get upgrade
command– bhordupur
Apr 22 '16 at 20:21
this is a duplicate of askubuntu.com/questions/761210/…
– Amias
May 5 '16 at 15:48