Page 1 of 3 123 LastLast
Results 1 to 10 of 21

Thread: Kernel 4.14RC (Release Candidate) series

  1. #1
    Join Date
    Feb 2011
    Location
    Coquitlam, B.C. Canada
    Beans
    3,515
    Distro
    Ubuntu Development Release

    Kernel 4.14RC (Release Candidate) series

    Kernel 4.14-rc1 is available from kernel.org, and on the Ubuntu mainline PPA. A day early again.

    EDIT: I have been running 4.14-rc1 for a couple of hours now, without any issue.
    Last edited by Doug S; September 17th, 2017 at 07:23 PM. Reason: udpate the post
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  2. #2
    Join Date
    Feb 2011
    Location
    Coquitlam, B.C. Canada
    Beans
    3,515
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    I missed kernel 4.14-rc2 last week.
    I have been running kernel 4.14-rc3 (compiled myself, using the Ubuntu kernel configuration) for a short time. No issues so far.
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  3. #3
    Join Date
    Apr 2006
    Location
    Rochester, N.Y.
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    Running kernel 4.14rc3 I have no internet, wifi/wired.
    If I boot back to 4.13 all is good.
    Hopefully an update in the near future will solve this issue.
    (Was)Windows Free At Last
    "May You Have A Safe Trip and A Successful Journey"
    Linux user #432153 Ubuntu user #8521

  4. #4
    Join Date
    Feb 2011
    Location
    Coquitlam, B.C. Canada
    Beans
    3,515
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    Quote Originally Posted by DougieFresh4U View Post
    Running kernel 4.14rc3 I have no internet, wifi/wired.
    If I boot back to 4.13 all is good.
    Hopefully an update in the near future will solve this issue.
    Did you try 4.14-rc1? There are kernel configuration file differences between -rc1 and -rc3. Unlikely to be the problem, but worth a try.

    EDIT: See my post below. The "no network" issue is due to the same root cause.
    Last edited by Doug S; October 6th, 2017 at 05:26 PM.
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  5. #5
    Join Date
    Feb 2011
    Location
    Coquitlam, B.C. Canada
    Beans
    3,515
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    With kernel 4.14-rc3 running on my main test server host, mysql and libvirtd do not start. This was all fine with -rc1. Since I missed -rc2 and after reading the notes about -rc2, this in particular:

    Anyway, the only unusual thing worth noting here is that the security subsystem pull request that came in during the merge window got rejected due to problems, and so rc2 ends up with most of that security pull having been merged in independent pieces instead.
    I tried -rc2 and indeed they don't work on it either.

    I get:

    Code:
    doug@s15:~$ systemctl status mysql.service
    ● mysql.service - MySQL Community Server
       Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled)
       Active: activating (start-post) (Result: exit-code) since Thu 2017-10-05 15:12:28 PDT; 3s ago
      Process: 3165 ExecStart=/usr/sbin/mysqld (code=exited, status=1/FAILURE)
      Process: 3150 ExecStartPre=/usr/share/mysql/mysql-systemd-start pre (code=exited, status=0/SUCCESS)
     Main PID: 3165 (code=exited, status=1/FAILURE);         : 3166 (mysql-systemd-s)
        Tasks: 2
       Memory: 2.2M
          CPU: 237ms
       CGroup: /system.slice/mysql.service
               └─control
                 ├─3166 /bin/bash /usr/share/mysql/mysql-systemd-start post
                 └─3204 sleep 1
    
    Oct 05 15:12:28 s15 systemd[1]: Starting MySQL Community Server...
    Oct 05 15:12:31 s15 systemd[1]: mysql.service: Main process exited, code=exited, status=1/FAILURE
    doug@s15:~$ systemctl status libvirtd.service
    ● libvirt-bin.service - Virtualization daemon
       Loaded: loaded (/lib/systemd/system/libvirt-bin.service; enabled; vendor preset: enabled)
       Active: inactive (dead) (Result: exit-code) since Thu 2017-10-05 15:09:30 PDT; 3min 15s ago
         Docs: man:libvirtd(8)
               http://libvirt.org
      Process: 2268 ExecStart=/usr/sbin/libvirtd $libvirtd_opts (code=exited, status=6)
     Main PID: 2268 (code=exited, status=6)
    
    Oct 05 15:09:30 s15 systemd[1]: libvirt-bin.service: Unit entered failed state.
    Oct 05 15:09:30 s15 systemd[1]: libvirt-bin.service: Failed with result 'exit-code'.
    Oct 05 15:09:30 s15 systemd[1]: libvirt-bin.service: Service hold-off time over, scheduling restart.
    Oct 05 15:09:30 s15 systemd[1]: Stopped Virtualization daemon.
    Oct 05 15:09:30 s15 systemd[1]: libvirt-bin.service: Start request repeated too quickly.
    Oct 05 15:09:30 s15 systemd[1]: Failed to start Virtualization daemon.
    And a ton of apparmor="DENIED" messages in the dmesg output.

    EDIT: The problem commit is:

    79444df4e7f03843be78e4b9188d095931648842 Merge tag 'apparmor-pr-2017-09-22' of git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor

    However, that commit is a collection of 17 commits. After bisecting the kernel, the culprit is:

    commit 651e28c5537abb39076d3949fb7618536f1d242e
    Author: John Johansen <john.johansen@canonical.com>
    Date: Tue Jul 18 23:18:33 2017 -0700

    apparmor: add base infastructure for socket mediation
    See also this thread.
    Last edited by Doug S; October 6th, 2017 at 08:39 AM.
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  6. #6
    Join Date
    Feb 2011
    Location
    Coquitlam, B.C. Canada
    Beans
    3,515
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    As a temporary workaround to all the apparmor issues, I have simply deleted it entirely:

    Code:
    scripts/config --disable SECURITY_APPARMOR
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  7. #7
    Join Date
    Feb 2011
    Location
    Coquitlam, B.C. Canada
    Beans
    3,515
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    Kernel 4.14-rc4 has been available from kernel.org for at least 8 hours now. However, it is still not yet available in the Ubuntu PPA (I don't know why).

    I have only been running it for a few minutes, and still with apparmor not included.
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  8. #8
    Join Date
    Jun 2006
    Location
    Nux Jam
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    Artful is a LTS release, should be good to get also the LTS 4.14 kernel (6 maintenance years); but seems too short before final release.

    Oops, with actual Canonical quality, i'm seeing LTS everywhere
    Last edited by dino99; October 9th, 2017 at 04:52 PM.

  9. #9
    Join Date
    Feb 2011
    Location
    Coquitlam, B.C. Canada
    Beans
    3,515
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    Quote Originally Posted by dino99 View Post
    Artful is a LTS release, should be good to get also the LTS 4.14 kernel (6 maintenance years); but seems too short before final release.
    no, artful is not an LTS, the next one, 18.04 is LTS. But yes, an LTS kernel in an LTS ubuntu is a good idea.
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  10. #10
    Join Date
    Aug 2009
    Beans
    1,312
    Distro
    Ubuntu Development Release

    Re: Kernel 4.14RC (Release Candidate) series

    Quote Originally Posted by dino99 View Post
    Artful is a LTS release, should be good to get also the LTS 4.14 kernel (6 maintenance years)
    Please don't assume that all LTS kernels will get 6 years of support.

    See https://www.kernel.org/releases.html

Page 1 of 3 123 LastLast

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
  •