Unable to install ukuu kernel updater
I was following this tutorial, but when it came to installing ukuu, it gave a bunch of dependency errors
$ sudo apt-get install ukuu
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
linux-image-unsigned-4.17.0-041700-generic : Depends: linux-modules-4.17.0-041700-generic but it is not installable
ukuu : Depends: aptitude
Depends: aria2 but it is not going to be installed
Depends: curl
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
kernel 18.04
add a comment |
I was following this tutorial, but when it came to installing ukuu, it gave a bunch of dependency errors
$ sudo apt-get install ukuu
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
linux-image-unsigned-4.17.0-041700-generic : Depends: linux-modules-4.17.0-041700-generic but it is not installable
ukuu : Depends: aptitude
Depends: aria2 but it is not going to be installed
Depends: curl
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
kernel 18.04
add a comment |
I was following this tutorial, but when it came to installing ukuu, it gave a bunch of dependency errors
$ sudo apt-get install ukuu
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
linux-image-unsigned-4.17.0-041700-generic : Depends: linux-modules-4.17.0-041700-generic but it is not installable
ukuu : Depends: aptitude
Depends: aria2 but it is not going to be installed
Depends: curl
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
kernel 18.04
I was following this tutorial, but when it came to installing ukuu, it gave a bunch of dependency errors
$ sudo apt-get install ukuu
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
linux-image-unsigned-4.17.0-041700-generic : Depends: linux-modules-4.17.0-041700-generic but it is not installable
ukuu : Depends: aptitude
Depends: aria2 but it is not going to be installed
Depends: curl
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
kernel 18.04
kernel 18.04
edited 10 hours ago
wjandrea
8,49642259
8,49642259
asked Sep 11 '18 at 17:28
Bokor AlbertBokor Albert
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You should have special requirements to use newest kernel (for example due to newest hardware). Usually using official kernels from Ubuntu repositories is enough and fits to all needs. It is the most universal, stable and secure solution. Using kernels from UKUU you may get system instability (such as crashes and lower uptime).
As your APT is failing then fix it with:
sudo apt-get update
sudo apt-get purge linux-image-unsigned-4.17.0-041700-generic
sudo apt-get purge linux-modules-4.17.0-041700-generic
sudo apt-get install -f
sudo dpkg --configure -a
sudo apt-get dist-upgrade
If you really known what are you doing then continue with UKUU as written below.
You should install UKUU as recommended on official GitHub page (not from third-party site).
sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu
Then launch it from dash or by ukuu-gtk
.
As probably evidenced by the question itself, I don't exactly know what I'm doing. I'm making all sorts of power consumption improvements. Thanks for the warning!
– Bokor Albert
Sep 12 '18 at 9:57
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%2f1074350%2funable-to-install-ukuu-kernel-updater%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should have special requirements to use newest kernel (for example due to newest hardware). Usually using official kernels from Ubuntu repositories is enough and fits to all needs. It is the most universal, stable and secure solution. Using kernels from UKUU you may get system instability (such as crashes and lower uptime).
As your APT is failing then fix it with:
sudo apt-get update
sudo apt-get purge linux-image-unsigned-4.17.0-041700-generic
sudo apt-get purge linux-modules-4.17.0-041700-generic
sudo apt-get install -f
sudo dpkg --configure -a
sudo apt-get dist-upgrade
If you really known what are you doing then continue with UKUU as written below.
You should install UKUU as recommended on official GitHub page (not from third-party site).
sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu
Then launch it from dash or by ukuu-gtk
.
As probably evidenced by the question itself, I don't exactly know what I'm doing. I'm making all sorts of power consumption improvements. Thanks for the warning!
– Bokor Albert
Sep 12 '18 at 9:57
add a comment |
You should have special requirements to use newest kernel (for example due to newest hardware). Usually using official kernels from Ubuntu repositories is enough and fits to all needs. It is the most universal, stable and secure solution. Using kernels from UKUU you may get system instability (such as crashes and lower uptime).
As your APT is failing then fix it with:
sudo apt-get update
sudo apt-get purge linux-image-unsigned-4.17.0-041700-generic
sudo apt-get purge linux-modules-4.17.0-041700-generic
sudo apt-get install -f
sudo dpkg --configure -a
sudo apt-get dist-upgrade
If you really known what are you doing then continue with UKUU as written below.
You should install UKUU as recommended on official GitHub page (not from third-party site).
sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu
Then launch it from dash or by ukuu-gtk
.
As probably evidenced by the question itself, I don't exactly know what I'm doing. I'm making all sorts of power consumption improvements. Thanks for the warning!
– Bokor Albert
Sep 12 '18 at 9:57
add a comment |
You should have special requirements to use newest kernel (for example due to newest hardware). Usually using official kernels from Ubuntu repositories is enough and fits to all needs. It is the most universal, stable and secure solution. Using kernels from UKUU you may get system instability (such as crashes and lower uptime).
As your APT is failing then fix it with:
sudo apt-get update
sudo apt-get purge linux-image-unsigned-4.17.0-041700-generic
sudo apt-get purge linux-modules-4.17.0-041700-generic
sudo apt-get install -f
sudo dpkg --configure -a
sudo apt-get dist-upgrade
If you really known what are you doing then continue with UKUU as written below.
You should install UKUU as recommended on official GitHub page (not from third-party site).
sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu
Then launch it from dash or by ukuu-gtk
.
You should have special requirements to use newest kernel (for example due to newest hardware). Usually using official kernels from Ubuntu repositories is enough and fits to all needs. It is the most universal, stable and secure solution. Using kernels from UKUU you may get system instability (such as crashes and lower uptime).
As your APT is failing then fix it with:
sudo apt-get update
sudo apt-get purge linux-image-unsigned-4.17.0-041700-generic
sudo apt-get purge linux-modules-4.17.0-041700-generic
sudo apt-get install -f
sudo dpkg --configure -a
sudo apt-get dist-upgrade
If you really known what are you doing then continue with UKUU as written below.
You should install UKUU as recommended on official GitHub page (not from third-party site).
sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu
Then launch it from dash or by ukuu-gtk
.
answered Sep 11 '18 at 20:48
N0rbertN0rbert
21.8k547102
21.8k547102
As probably evidenced by the question itself, I don't exactly know what I'm doing. I'm making all sorts of power consumption improvements. Thanks for the warning!
– Bokor Albert
Sep 12 '18 at 9:57
add a comment |
As probably evidenced by the question itself, I don't exactly know what I'm doing. I'm making all sorts of power consumption improvements. Thanks for the warning!
– Bokor Albert
Sep 12 '18 at 9:57
As probably evidenced by the question itself, I don't exactly know what I'm doing. I'm making all sorts of power consumption improvements. Thanks for the warning!
– Bokor Albert
Sep 12 '18 at 9:57
As probably evidenced by the question itself, I don't exactly know what I'm doing. I'm making all sorts of power consumption improvements. Thanks for the warning!
– Bokor Albert
Sep 12 '18 at 9:57
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%2f1074350%2funable-to-install-ukuu-kernel-updater%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