E: Sub-process /usr/bin/dpkg returned an error code (1)
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
E: Sub-process /usr/bin/dpkg returned an error code (1)
Get this error whenever I try to install something. Get the same error when I try and remove xrdp. Any tips on how to fix this would be much appreciated.
Code:
root@gnarwhale:/home/matt/Desktop/fuse-2.8.6/example/vfsproj# apt-get install dpkg
Reading package lists... Done
Building dependency tree
Reading state information... Done
dpkg is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up xrdp (0.5.0~20100303cvs-6ubuntu2) ...
groupadd: cannot lock /etc/gshadow; try again later.
adduser: `/usr/sbin/groupadd -g 129 xrdp' returned error code 10. Exiting.
dpkg: error processing xrdp (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
xrdp
E: Sub-process /usr/bin/dpkg returned an error code (1)
You tried to install dpkg which is installed by default during Linux installation and it is the most recent version. But somewhere in the past you did two things that are not complete. One was to either add a user or add a user to a certain group, then when trying to install xrdp it borked because part of the installation requires making user group changes which cannot be done as there are incomplete user group processes lingering. This article may be the ticket.
Thank you for your help brains. I know about dpkg, just needed an example. I read the article that you sent, did the steps, but it was not successful. Some odd behavior I encountered, when I looked for hanging user/group adds I found them, but could not kill them, with the following happening.
Code:
root@gnarwhale:/home/matt# ps -ef | grep useradd
root 3969 2427 0 22:39 pts/2 00:00:00 grep --color=auto useradd
root@gnarwhale:/home/matt# ps -ef | grep groupadd
root 3971 2427 0 22:40 pts/2 00:00:00 grep --color=auto groupadd
root@gnarwhale:/home/matt# kill 3971
bash: kill: (3971) - No such process
root@gnarwhale:/home/matt# kill 3969
bash: kill: (3969) - No such process
root@gnarwhale:/home/matt#
Any other suggestions? Do you know what the problem is with xrdp?
Something I've learned many moons ago was to use an option in the kill command, not sure how it came about but I always use: kill -9 PID, PID being the process.
Have you checked in /etc to see if any of those files exist?
I have a smooth operating Debian and those lock files do not exist, (passwd.lock, group.lock and gshadow.lock). If one or all those files exist, then this is more than likely what you need to do.
I checked and I also have those two processes, useradd and groupadd, they don't show up when I do a: ps -aux, but do show with the ps -ef.
Also, for all three of those files, I have in /etc/ three versions, example:
gshadow
gshadow-
gshadow.bak
It is also possible the "cannot lock /etc/gshadow" error arrises due to the file not existing, if so, might be worth trying to create a blank file by that name with command: touch /etc/gshadow
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.