Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 32

Thread: Kernel 4.5 RC (Release Candidate) Series

  1. #11
    Join Date
    Jan 2015
    Beans
    366

    Next cycle will be as good as this one: x = y

    There is only one missing piece here : Nautilus 3.18.x


    Code:
    x@k:~$ dpkg --list |grep linux-image
    ii linux-image-4.5.0-040500rc3-generic          4.5.0-040500rc3.201602071930               amd64       Linux kernel image for version 4.5.0 on 64 bit x86 SMP
    
    x@k:~$ df -h | grep^/dev/sda1
    /dev/sda1                          236M   54M  170M  24% /boot
    
    x@k:~$ sudo lsblk -oNAME,FSTYPE,SIZE,MOUNTPOINT,LABEL
    NAME                        FSTYPE        SIZE MOUNTPOINT LABEL
    sda                                     698.7G            
    ├─sda1                      ext2          243M /boot      
    ├─sda2                                      1K            
    └─sda5                      LVM2_member 698.4G            
     ├─ubuntu--kylin--vg-root   ext4        694.5G /          
     └─ubuntu--kylin--vg-swap_1 swap          3.9G [SWAP]     
    sr0                                      1024M
    http://news.softpedia.com/news/linus...3-500042.shtml

    EDIT: Made a fresh install with Gnome today's image. Didn't get any issues.

    Code:
    Kernel: 4.5.0-040500rc3-generic x86_64 (64 bit) Desktop: Gnome 3.18.3Distro: Ubuntu 16.04 xenial
    Last edited by MikeMecanic; February 9th, 2016 at 12:17 AM.

  2. #12
    Join Date
    Aug 2006
    Beans
    670

    Re: Next cycle will be as good as this one: x = y

    Quote Originally Posted by MikeMecanic View Post
    There is only one missing piece here : Nautilus 3.18.x
    Perhaps because this?
    Ryzen 7 5800X / Alpenfohn Gletschewasser 280 / Gigabyte X570S Aero G / 32GB 4000MHz C16 Team Group X-treem /
    Gigabyte RTX4080 Aero OC / 1TB Samsung 970 Evo / Asus Loki 1kW / Lian-Li O11D Mini / Samsung Odyssey G9 Neo / Win11 / Kubuntu 23.04

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

    Re: Kernel 4.5 RC (Release Candidate) Series

    nautilus 3.18-5 from gnome3 ppa here
    wonder why the desktop team is introducing a bigger delta with the gnome dev trend The little design problems are very harmless
    Last edited by dino99; February 8th, 2016 at 01:59 PM.

  4. #14
    Join Date
    Oct 2009
    Beans
    560
    Distro
    Ubuntu Development Release

    Re: Kernel 4.5 RC (Release Candidate) Series

    Compiled RC3.
    Takes a little longer to boot
    RC2
    Code:
    p-i@pi-GA-990FXA-UD3-xenial:~$ systemd-analyze
    Startup finished in 4.808s (kernel) + 9.459s (userspace) = 14.267s
    RC3
    Code:
    p-i@pi-GA-990FXA-UD3-xenial:~$ systemd-analyze
    Startup finished in 8.996s (kernel) + 9.596s (userspace) = 18.593s
    Unigine Valley has about the same result as on RC2 with POWERPLAY=y and a Radeon R9 380.
    Code:
    Unigine Valley Benchmark 1.0
    
    FPS:    42.8
    Score:    1790
    Min FPS:15.4
    Max FPS:65.2
    
    System
    Platform:    Linux 4.5.0-rc3-custom x86_64
    CPU model:    AMD FX(tm)-8120 Eight-Core Processor (4024MHz) x8
    GPU model:    Unknown GPU (256MB) x1
    
    Settings
    Render:    OpenGL
    Mode:    1920x1200 fullscreen
    Preset    Custom
    Quality    High
    
    Powered by UNIGINE Engine
    Unigine Corp. © 2005-2013

  5. #15
    Join Date
    Dec 2013
    Beans
    3

    Re: Kernel 4.5 RC (Release Candidate) Series

    Did you know, you can copy the old config file and do "make oldconfig", this will only prompt you for any new config items.

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

    Re: Kernel 4.5 RC (Release Candidate) Series

    Quote Originally Posted by jos-dehaes View Post
    Did you know, you can copy the old config file and do "make oldconfig", this will only prompt you for any new config items.
    I suspect that most people that compile their own mainline rc series kernels would know that.

    For my part of it, I often steal the Ubuntu kernel configuration just keep synchronized the Ubuntu mainline rc kernels. I don't do it every time, but have noticed the Ubuntu kernel configuration often changes significantly, including changes to old settings. On these rc threads, we have found a few issues with the Ubuntu kernel configurations, that have resulted in bug reports and/or escalation to the kernel team via their IRC channel.

    Myself, I have never ever used "make oldconfig", I Just compile telling it to use defaults wherever there is some kernel configuration decision needed, which can be particularly useful when doing a kernel bisection. I.E. my process for rc3 was:
    Code:
    cp /boot/config-4.5.0-040500rc3-generic .config-4.5.0-040500rc3-generic
    cp .config .config-4.5-rc2-doug
    cp .config-4.5.0-040500rc3-generic .config
    scripts/config --disable DEBUG_INFO   <<< Otherwise the kernel is giant sized and compile takes twice as long
    scripts/config --disable CC_STACKPROTECTOR_STRONG   <<< Because I compile on a 14.04 server, with an older version of the c compiler
    cp .config .config-4.5-rc3-doug
    git checkout master
    git pull
    git checkout -b k45rc3_stock v4.5-rc3
    time make -j9 olddefconfig bindeb-pkg LOCALVERSION=-stock
    sudo dpkg -i ../linux-headers-4.5.0-rc3-stock_4.5.0-rc3-stock-157_amd64.deb
    sudo dpkg -i ../linux-image-4.5.0-rc3-stock_4.5.0-rc3-stock-157_amd64.deb
    diff .config .config-4.5-rc3-doug  <<< changes should be minimal. They are.
    cp .config .config-4.5-rc3-doug   <<< Save it anyhow
    Code:
    doug@s15:~$ uname -a
    Linux s15 4.5.0-rc3-stock #157 SMP Mon Feb 8 09:00:09 PST 2016 x86_64 x86_64 x86_64 GNU/Linux
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  7. #17
    Join Date
    Oct 2009
    Beans
    560
    Distro
    Ubuntu Development Release

    Re: Kernel 4.5 RC (Release Candidate) Series

    Some differences between kernel 4.5 and 4.4

    systemd-analyze 4.5
    Startup finished in 8.951s (kernel) + 5.968s (userspace) = 14.920s

    systemd-analyze kernel 4.4
    Startup finished in 4.769s (kernel) + 7.951s (userspace) = 12.720s

    Unigine Valley benchmark kernel 4.4
    FPS: 9.7 Score: 407

    Unigine Valley benchmark kernel 4.5 with powerplay enabled
    FPS: 43.1 Score: 1803

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

    Re: Kernel 4.5 RC (Release Candidate) Series

    Kernel 4.5-rc4 is available. Myself, I'll have to stay with -rc3 for awhile, as I 'm in the middle of some tests.
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

  9. #19
    Join Date
    Jan 2015
    Beans
    366

    Re: Kernel 4.5 RC (Release Candidate) Series

    Perfect week here .

    Code:
    x@g:~$ dpkg --list | grep linux-image
    ii  linux-image-4.5.0-040500rc3-generic   4.5.0-040500rc3.201602071930               amd64        Linux kernel image for version 4.5.0 on 64 bit x86 SMP
    ii  linux-image-4.5.0-040500rc4-generic   4.5.0-040500rc4.201602141731               amd64        Linux kernel image for version 4.5.0 on 64 bit x86 SMP
    x@g:~$
    Code:
    x@g:~$ inxi -b
    System:    Host: g Kernel: 4.5.0-040500rc4-generic x86_64 (64 bit) Desktop: Gnome 3.18.3
               Distro: Ubuntu 16.04 xenial
    EDIT: Just made a fresh install of Mate daily ISO. Still using Startup Disk Creator.

    Code:
    Host:xx Kernel: 4.5.0-040500rc4-generic x86_64 (64 bit) Desktop: MATE 1.12.1 Distro: Ubuntu 16.04 xenial

    Loading Sequence Proposed Enable:

    Code:
    m@xx:~$ dpkg --list| grep linux-image
    ii linux-image-4.4.0-4-generic           4.4.0-4.19                                amd64        Linux kernel image for version 4.4.0 on 64bit x86 SMP
    ii linux-image-4.4.0-5-generic           4.4.0-5.20                                amd64        Linux kernel image for version 4.4.0 on 64bit x86 SMP
    ii linux-image-4.5.0-040500rc4-generic   4.5.0-040500rc4.201602141731              amd64        Linux kernel image for version 4.5.0 on 64bit x86 SMP
    ii linux-image-extra-4.4.0-4-generic     4.4.0-4.19                                amd64        Linux kernel extra modules for version 4.4.0on 64 bit x86 SMP
    ii linux-image-extra-4.4.0-5-generic     4.4.0-5.20                                amd64        Linux kernel extra modules for version 4.4.0on 64 bit x86 SMP
    ii linux-image-generic                   4.4.0.5.4                                 amd64        Generic Linux kernel image
    m@xx:
    I got only one issue at the very end: Black screen on restart after loading Proposed (341Kb patch).

    All the best,
    Last edited by MikeMecanic; February 15th, 2016 at 07:36 AM.

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

    Re: Kernel 4.5 RC (Release Candidate) Series

    O.K. now running 4.5-rc3. so far so good.
    Code:
    doug@s15:~/temp-k-git/linux$ uname -a
    Linux s15 4.5.0-rc4-rjwv10 #165 SMP Mon Feb 15 07:41:21 PST 2016 x86_64 x86_64 x86_64 GNU/Linux
    Last edited by Doug S; February 15th, 2016 at 05:28 PM.
    Any follow-up information on your issue would be appreciated. Please have the courtesy to report back.

Page 2 of 4 FirstFirst 1234 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
  •