Package rsyslog is not configured yet
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
Since upgrading to 12.04 from 8.04->10.04 I can no longer upgrade or install new packages.
I do get a large number of errors, but the first is the resyslog:
root@sub:~# apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
9 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I try to reinstalling everything:
apt-get install --reinstall dpkg
This throws up:
Processing triggers for man-db ...
Setting up dpkg (1.16.1.2ubuntu7.5) ...
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
No apport report written because MaxReports is reached
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I believe if I can fix the rsyslog we'll be getting somewhere :/
apt rsyslog
add a comment |
Since upgrading to 12.04 from 8.04->10.04 I can no longer upgrade or install new packages.
I do get a large number of errors, but the first is the resyslog:
root@sub:~# apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
9 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I try to reinstalling everything:
apt-get install --reinstall dpkg
This throws up:
Processing triggers for man-db ...
Setting up dpkg (1.16.1.2ubuntu7.5) ...
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
No apport report written because MaxReports is reached
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I believe if I can fix the rsyslog we'll be getting somewhere :/
apt rsyslog
What happens when you runsudo dpkg --configure rsyslog
.
– CameronNemo
Jun 28 '14 at 11:39
add a comment |
Since upgrading to 12.04 from 8.04->10.04 I can no longer upgrade or install new packages.
I do get a large number of errors, but the first is the resyslog:
root@sub:~# apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
9 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I try to reinstalling everything:
apt-get install --reinstall dpkg
This throws up:
Processing triggers for man-db ...
Setting up dpkg (1.16.1.2ubuntu7.5) ...
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
No apport report written because MaxReports is reached
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I believe if I can fix the rsyslog we'll be getting somewhere :/
apt rsyslog
Since upgrading to 12.04 from 8.04->10.04 I can no longer upgrade or install new packages.
I do get a large number of errors, but the first is the resyslog:
root@sub:~# apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
9 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I try to reinstalling everything:
apt-get install --reinstall dpkg
This throws up:
Processing triggers for man-db ...
Setting up dpkg (1.16.1.2ubuntu7.5) ...
Setting up rsyslog (5.8.6-1ubuntu8.6) ...
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 10
No apport report written because MaxReports is reached
dpkg: dependency problems prevent configuration of ubuntu-minimal:
ubuntu-minimal depends on rsyslog; however:
Package rsyslog is not configured yet.
So I believe if I can fix the rsyslog we'll be getting somewhere :/
apt rsyslog
apt rsyslog
asked Jun 28 '14 at 10:28
Jamie HutberJamie Hutber
1972418
1972418
What happens when you runsudo dpkg --configure rsyslog
.
– CameronNemo
Jun 28 '14 at 11:39
add a comment |
What happens when you runsudo dpkg --configure rsyslog
.
– CameronNemo
Jun 28 '14 at 11:39
What happens when you run
sudo dpkg --configure rsyslog
.– CameronNemo
Jun 28 '14 at 11:39
What happens when you run
sudo dpkg --configure rsyslog
.– CameronNemo
Jun 28 '14 at 11:39
add a comment |
2 Answers
2
active
oldest
votes
Run:
sudo dpkg -r rsyslog
if it is successful or not, run:
gksudo gedit /var/lib/dpkg/status
In the resulting gedit, delete the whole section starts with
Package : rsyslog
close and run an update.
1
O Billy boy you've done it again!!!
– Jamie Hutber
Jun 28 '14 at 20:24
I didn't want to remove the package because it was "linux-image*" in my case, too dangerous. But the system is working fine, so I just edited /var/lib/dpkg/status changing "half-configured" to "installed", all is good now. :)
– msb
May 8 '15 at 19:45
add a comment |
This has worked. Not sure why above is marked as recommended. Nobody should be recommended to remove a package without re-installing it.
Correct answer to:
dpkg: dependency problems prevent configuration of logcheck:
logcheck depends on rsyslog | system-log-daemon; however:
Package rsyslog is not configured yet.
Package system-log-daemon is not installed.
Package rsyslog which provides system-log-daemon is not configured yet.
dpkg: error processing package logcheck (--configure):
dependency problems - leaving unconfigured
Processing triggers for initramfs-tools (0.130) ...
update-initramfs: Generating /boot/initrd.img-4.18.0-0.bpo.3-amd64
W: initramfs-tools configuration sets RESUME=/dev/dm-1
W: but no matching swap device is available.
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Errors were encountered while processing:
rsyslog
logcheck
E: Sub-process /usr/bin/dpkg returned an error code (1)
https://serverfault.com/questions/751494/rsyslog-upgrade-fails-sub-process-usr-bin-dpkg-returned-an-error-code-1
New contributor
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%2f489195%2fpackage-rsyslog-is-not-configured-yet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Run:
sudo dpkg -r rsyslog
if it is successful or not, run:
gksudo gedit /var/lib/dpkg/status
In the resulting gedit, delete the whole section starts with
Package : rsyslog
close and run an update.
1
O Billy boy you've done it again!!!
– Jamie Hutber
Jun 28 '14 at 20:24
I didn't want to remove the package because it was "linux-image*" in my case, too dangerous. But the system is working fine, so I just edited /var/lib/dpkg/status changing "half-configured" to "installed", all is good now. :)
– msb
May 8 '15 at 19:45
add a comment |
Run:
sudo dpkg -r rsyslog
if it is successful or not, run:
gksudo gedit /var/lib/dpkg/status
In the resulting gedit, delete the whole section starts with
Package : rsyslog
close and run an update.
1
O Billy boy you've done it again!!!
– Jamie Hutber
Jun 28 '14 at 20:24
I didn't want to remove the package because it was "linux-image*" in my case, too dangerous. But the system is working fine, so I just edited /var/lib/dpkg/status changing "half-configured" to "installed", all is good now. :)
– msb
May 8 '15 at 19:45
add a comment |
Run:
sudo dpkg -r rsyslog
if it is successful or not, run:
gksudo gedit /var/lib/dpkg/status
In the resulting gedit, delete the whole section starts with
Package : rsyslog
close and run an update.
Run:
sudo dpkg -r rsyslog
if it is successful or not, run:
gksudo gedit /var/lib/dpkg/status
In the resulting gedit, delete the whole section starts with
Package : rsyslog
close and run an update.
answered Jun 28 '14 at 12:07
user308564
1
O Billy boy you've done it again!!!
– Jamie Hutber
Jun 28 '14 at 20:24
I didn't want to remove the package because it was "linux-image*" in my case, too dangerous. But the system is working fine, so I just edited /var/lib/dpkg/status changing "half-configured" to "installed", all is good now. :)
– msb
May 8 '15 at 19:45
add a comment |
1
O Billy boy you've done it again!!!
– Jamie Hutber
Jun 28 '14 at 20:24
I didn't want to remove the package because it was "linux-image*" in my case, too dangerous. But the system is working fine, so I just edited /var/lib/dpkg/status changing "half-configured" to "installed", all is good now. :)
– msb
May 8 '15 at 19:45
1
1
O Billy boy you've done it again!!!
– Jamie Hutber
Jun 28 '14 at 20:24
O Billy boy you've done it again!!!
– Jamie Hutber
Jun 28 '14 at 20:24
I didn't want to remove the package because it was "linux-image*" in my case, too dangerous. But the system is working fine, so I just edited /var/lib/dpkg/status changing "half-configured" to "installed", all is good now. :)
– msb
May 8 '15 at 19:45
I didn't want to remove the package because it was "linux-image*" in my case, too dangerous. But the system is working fine, so I just edited /var/lib/dpkg/status changing "half-configured" to "installed", all is good now. :)
– msb
May 8 '15 at 19:45
add a comment |
This has worked. Not sure why above is marked as recommended. Nobody should be recommended to remove a package without re-installing it.
Correct answer to:
dpkg: dependency problems prevent configuration of logcheck:
logcheck depends on rsyslog | system-log-daemon; however:
Package rsyslog is not configured yet.
Package system-log-daemon is not installed.
Package rsyslog which provides system-log-daemon is not configured yet.
dpkg: error processing package logcheck (--configure):
dependency problems - leaving unconfigured
Processing triggers for initramfs-tools (0.130) ...
update-initramfs: Generating /boot/initrd.img-4.18.0-0.bpo.3-amd64
W: initramfs-tools configuration sets RESUME=/dev/dm-1
W: but no matching swap device is available.
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Errors were encountered while processing:
rsyslog
logcheck
E: Sub-process /usr/bin/dpkg returned an error code (1)
https://serverfault.com/questions/751494/rsyslog-upgrade-fails-sub-process-usr-bin-dpkg-returned-an-error-code-1
New contributor
add a comment |
This has worked. Not sure why above is marked as recommended. Nobody should be recommended to remove a package without re-installing it.
Correct answer to:
dpkg: dependency problems prevent configuration of logcheck:
logcheck depends on rsyslog | system-log-daemon; however:
Package rsyslog is not configured yet.
Package system-log-daemon is not installed.
Package rsyslog which provides system-log-daemon is not configured yet.
dpkg: error processing package logcheck (--configure):
dependency problems - leaving unconfigured
Processing triggers for initramfs-tools (0.130) ...
update-initramfs: Generating /boot/initrd.img-4.18.0-0.bpo.3-amd64
W: initramfs-tools configuration sets RESUME=/dev/dm-1
W: but no matching swap device is available.
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Errors were encountered while processing:
rsyslog
logcheck
E: Sub-process /usr/bin/dpkg returned an error code (1)
https://serverfault.com/questions/751494/rsyslog-upgrade-fails-sub-process-usr-bin-dpkg-returned-an-error-code-1
New contributor
add a comment |
This has worked. Not sure why above is marked as recommended. Nobody should be recommended to remove a package without re-installing it.
Correct answer to:
dpkg: dependency problems prevent configuration of logcheck:
logcheck depends on rsyslog | system-log-daemon; however:
Package rsyslog is not configured yet.
Package system-log-daemon is not installed.
Package rsyslog which provides system-log-daemon is not configured yet.
dpkg: error processing package logcheck (--configure):
dependency problems - leaving unconfigured
Processing triggers for initramfs-tools (0.130) ...
update-initramfs: Generating /boot/initrd.img-4.18.0-0.bpo.3-amd64
W: initramfs-tools configuration sets RESUME=/dev/dm-1
W: but no matching swap device is available.
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Errors were encountered while processing:
rsyslog
logcheck
E: Sub-process /usr/bin/dpkg returned an error code (1)
https://serverfault.com/questions/751494/rsyslog-upgrade-fails-sub-process-usr-bin-dpkg-returned-an-error-code-1
New contributor
This has worked. Not sure why above is marked as recommended. Nobody should be recommended to remove a package without re-installing it.
Correct answer to:
dpkg: dependency problems prevent configuration of logcheck:
logcheck depends on rsyslog | system-log-daemon; however:
Package rsyslog is not configured yet.
Package system-log-daemon is not installed.
Package rsyslog which provides system-log-daemon is not configured yet.
dpkg: error processing package logcheck (--configure):
dependency problems - leaving unconfigured
Processing triggers for initramfs-tools (0.130) ...
update-initramfs: Generating /boot/initrd.img-4.18.0-0.bpo.3-amd64
W: initramfs-tools configuration sets RESUME=/dev/dm-1
W: but no matching swap device is available.
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Errors were encountered while processing:
rsyslog
logcheck
E: Sub-process /usr/bin/dpkg returned an error code (1)
https://serverfault.com/questions/751494/rsyslog-upgrade-fails-sub-process-usr-bin-dpkg-returned-an-error-code-1
New contributor
New contributor
answered 8 mins ago
LucasLucas
1
1
New contributor
New contributor
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%2f489195%2fpackage-rsyslog-is-not-configured-yet%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
What happens when you run
sudo dpkg --configure rsyslog
.– CameronNemo
Jun 28 '14 at 11:39