teejee2008 / ukuu

A paid version of Ukuu is now available with more features. https://teejeetech.in/2019/01/20/ukuu-v19-01/ Kernel Update Utility for Ubuntu-based distributions. Provides desktop notifications when new mainline kernel is available. Lists kernels from http://kernel.ubuntu.com/~kernel-ppa/mainline/ with options to install and remove.
https://teejeetech.in/ukuu
GNU Lesser General Public License v3.0
400 stars 157 forks source link

Not Downloading Kernels on Ubuntu 17.04 #14

Open horusint opened 7 years ago

horusint commented 7 years ago

I see:

Distribution: Ubuntu 17.04 System architecture: amd64 Running kernel: 4.10.10-041010-generic Kernel version: 4.10.10-041010-generic Using cache directory: /home/user/.cache/ukuu aria2c version: 1.30.0 Fetching index from kernel.ubuntu.com... E: ERR**** Found installed: 4.10.0.20.22 Found installed: 4.10.0-20.22 Found installed: 4.10.10-041010.201704120813

====================================================================== Available Kernels

v4.10.0.20.22 4.10.0.20.22 Installed

zyrorl commented 7 years ago

I too am getting th4e same error

MechEng70 commented 7 years ago

I thought that it was my system. Seeing the same issue.

MechEng70 commented 7 years ago

Should add that my 16.04 server does not have any issues with the app.

dfk7677 commented 6 years ago

It seems that the index file cannot be downloaded as the following code resolves in the error in file LinuxKernel.vala, function download_index():

var msg = _("Fetching index from kernel.ubuntu.com...");
        log_msg(msg);
        status_line = msg.strip();

        while (mgr.is_running()){
            sleep(500);
        }

        //log_debug(index_page);

        if (file_exists(index_page)){
            log_msg("OK");
            return true;
        }
        else{
            log_error("ERR");
            return false;
        }