Results 1 to 4 of 4

Thread: Fresh install broken already?

  1. #1
    Join Date
    Aug 2013
    Beans
    39

    Fresh install broken already?

    Hi all,

    I have a baffling problem.
    My fresh install of 14.04.1 desktop (used as a file server) with only Webmin, Sabnzbdplus, Transmission & ZFS-native installed is refusing to install any packages or updates.

    It just returns:-
    Code:
    E: Waited for /usr/sbin/dpkg-preconfigure --apt || true but it wasn't there      
    E: Failure running script /usr/sbin/dpkg-preconfigure --apt || true
    I've read that this normally points to a malformed file at /etc/apt/apt.conf.d/70debconf, but that file reads correctly!

    Code:
    // Pre-configure all packages with debconf before they are installed.
    // If you don't like it, comment it out.
    DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt || true";};
    I've tried commenting the code out as stated above, but then get the following:-

    Code:
    dpkg: unrecoverable fatal error, aborting:
    waiting for subprocess dpkg-split failed: No child processes
    W: Waited for dpkg --assert-multi-arch but it wasn't there - dpkgGo (10: No child processes)
    E: Couldn't wait for subprocess - waitpid (10: No child processes)
    E:  Couldn't wait for subprocess - waitpid (10: No child processes)
    Anyone have any ideas what to do next?

  2. #2
    Join Date
    Aug 2013
    Beans
    39

    Re: Fresh install broken already?

    Seems to be a Webmin error, as it doesn't show when accessed directly. Marking as solved.

  3. #3
    Join Date
    Sep 2007
    Location
    Lititz, PA, USA
    Beans
    51
    Distro
    Kubuntu 7.10 Gutsy Gibbon

    Re: Fresh install broken already?

    Sorry for replying to a "solved" article, but you did such a good job scraping the issue, you're the #1 hit on Google.

    I wouldn't call it a Webmin error, though. The issue is you were trying to take a short-cut and use either the Command Shell or Text Login from Webmin modules. If you go to the console and attempt what you were aiming for, it works just fine. Probably a nice reason to add the ssh server module at this point.

    Hope that helps someone.
    Last edited by dougsnell; February 5th, 2015 at 04:44 AM. Reason: typo

  4. #4
    Join Date
    Jun 2009
    Beans
    2

    Re: Fresh install broken already?

    This was improperly marked as solved, because no warning message (W) or error message (E) got an explanation. The warning "W: Waited for dpkg --assert-multi-arch but it wasn't there - dpkgGo (10: No child processes)" means that the installer dpkg tried to use one of the foreign architectures (such as i386 over an amd64 system), however, the extra arch. was missing. One should add multi-arch support AND also add the missing architecture with the command « sudo dpkg --add-architecture "arch." ». It follows that dpkg could not active a child process (10 message) and the system got tired of waiting for this "child" to run, that is the reported error « E: Couldn't wait for subprocess - waitpid (10: No child processes) ». After any warning or error message disappears, one could look for another guilty to blame, but it clearly looks that Webmin was innocent in this case.

    Besides, it is unclear why to search for " /etc/apt/apt.conf.d/70debconf " . First, verify the presence of
    " /usr/sbin/dpkg-preconfigure " because that was the first error message asked for.

    That is, verify "debconf" package was properly installed.
    Last edited by Rocdufer; November 6th, 2015 at 05:01 AM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •