LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-07-2017, 12:04 PM   #61
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656

I use the huge kernel on a good chunk of my computers, however, on my desktop, because I use UUIDs in my lilo.conf and fstab (I changed drives frequently on it since it also acts as a media server), I have to use an initrd, so I switched to the generic kernel.

Personally, I don't go through the minor hassle of using the generic kernel for little to no perceived benefit unless it's required (like using UUIDs in your lilo or if you were to encrypt or use lvm).
 
3 members found this post helpful.
Old 02-07-2017, 01:42 PM   #62
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Quote:
Originally Posted by fsauer View Post
I did some testing here. For me, the huge kernel boots about 3 to 4 seconds (not significantly) faster than the generic kernel. Considering that, I decided not to get into the hassle of initrd construction after kernel upgrades
<<snip>>
Franz
fsauer --

I noticed the same thing on my Skylake I7 on the 4.4.x Kernels and considering the recent churn in Kernel releases, I rarely bother with GENERIC and an initrd anymore ... once in a while to check that GENERIC + initrd still works but I usually run HUGE

-- kjh
 
2 members found this post helpful.
Old 02-09-2017, 03:18 AM   #63
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
I have to run an initrd because I like to use LVM, but I make a point of building ext4 into my kernels so that I don't have to worry about modules in the initrd.

Anyway,

Gentlemen! Start your compilers....
v4.9.9 and v.4.4.48 are out.

Though 4.10.0 isn't far off by the look of things...
 
3 members found this post helpful.
Old 02-09-2017, 09:49 AM   #64
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
GazL said:
Quote:
Gentlemen! Start your compilers....
v4.9.9 and v.4.4.48 are out.
Wow !

Five days on 4.4.47 ... that 'feels' like a record for recent 4.4.x Kernel Longevity

-- kjh
 
1 members found this post helpful.
Old 02-09-2017, 10:18 AM   #65
dr.s
Member
 
Registered: Feb 2010
Distribution: Slackware64-current
Posts: 338

Rep: Reputation: 156Reputation: 156
Quote:
Originally Posted by GazL View Post
Gentlemen! Start your compilers....
v4.9.9 and v.4.4.48 are out...
Barely had time to compile and savor 4.9.8, 4.9.9 is a cool number though
 
1 members found this post helpful.
Old 02-09-2017, 11:59 AM   #66
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
Quote:
Originally Posted by dr.s View Post
Barely had time to compile and savor 4.9.8, 4.9.9 is a cool number though
Yeah, it's a shame Linus isn't going to call what will be 4.10, 5.0.0 instead. That would have worked out really nicely this time.
 
2 members found this post helpful.
Old 02-12-2017, 08:11 PM   #67
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272Reputation: 7272
The 4.10-rc8 kernel is available for testing.

https://www.kernel.org/

Last edited by cwizardone; 02-12-2017 at 08:14 PM.
 
Old 02-14-2017, 02:41 PM   #68
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Patch for Nvidia R340 for kernel 4.9.x

Now running kernel 4.9.9. Use the following patch if you are using Nvidia's legacy proprietary R304 or R340 drivers/modules.
Filename: patch_nv1
Code:
--- kernel/nv-drm.c	2016-12-15 12:41:26.000000000 +0100
+++ kernel/nv-drm.c	2016-12-15 12:58:48.000000000 +0100
@@ -115,7 +115,11 @@
 };
 
 static struct drm_driver nv_drm_driver = {
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
+    .driver_features = DRIVER_GEM | DRIVER_PRIME | DRIVER_LEGACY,
+#else
     .driver_features = DRIVER_GEM | DRIVER_PRIME,
+#endif
     .load = nv_drm_load,
     .unload = nv_drm_unload,
     .fops = &nv_drm_fops,
Apply the patch to the .run file with:
Code:
./NVIDIA-Linux-x86_64-340.102.run --apply-patch patch_nv1
https://devtalk.nvidia.com/default/t...d-with-patch-/

It's also possible to only build and install the kernel modules, useful when testing new kernels:
Code:
./NVIDIA-Linux-x86_64-340.102.run -K -k <kernel-version>
Attached Files
File Type: txt patch_nv1.txt (464 Bytes, 35 views)

Last edited by mats_b_tegner; 02-26-2017 at 01:32 PM. Reason: Patch also needed for Nvidia R304 drivers
 
1 members found this post helpful.
Old 02-14-2017, 05:59 PM   #69
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
4.4.49/4.9.10 just hit stable.git.
 
1 members found this post helpful.
Old 02-15-2017, 02:23 AM   #70
55020
Senior Member
 
Registered: Sep 2009
Location: Yorks. W.R. 167397
Distribution: Slackware
Posts: 1,307
Blog Entries: 4

Rep: Reputation: Disabled
But nine hours later they still haven't hit the kernel.org rss
 
Old 02-15-2017, 10:04 AM   #71
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Kernels 4.4.49 and 4.9.10

Kernels 4.4.49 and 4.9.10 are finally available on https://www.kernel.org/
https://www.kernel.org/pub/linux/ker...-4.4.49.tar.xz
https://www.kernel.org/pub/linux/ker...angeLog-4.4.49
https://www.kernel.org/pub/linux/ker...-4.9.10.tar.xz
https://www.kernel.org/pub/linux/ker...angeLog-4.9.10

Fixes
CVE 2016-8636
CVE-2017-2618

Kernel 4.9.10 seems to build fine using make oldconfig, etc...

Last edited by mats_b_tegner; 02-15-2017 at 01:47 PM. Reason: Edited links
 
2 members found this post helpful.
Old 02-15-2017, 10:09 AM   #72
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Thanks mats_b_tegner

The Source is downloading now ...

No ChangeLog yet.

-- kjh


Quote:
Not Found
The requested URL /pub/linux/kernel/v4.x/ChangeLog-4.4.49 was not found on this server.
 
Old 02-15-2017, 10:11 AM   #73
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Quote:
Originally Posted by kjhambrick View Post
Thanks mats_b_tegner

The Source is downloading now ...

No ChangeLog yet.

-- kjh
The ChangeLogs should be up now...
 
1 members found this post helpful.
Old 02-15-2017, 10:20 AM   #74
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Yep, the 4.9.10 ChangeLog is there now but 4.4.49 is not yet there ...

Will try later.

-- kjh
 
Old 02-15-2017, 10:37 AM   #75
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Quote:
Originally Posted by kjhambrick View Post
Yep, the 4.9.10 ChangeLog is there now but 4.4.49 is not yet there ...

Will try later.

-- kjh
I've edited the links to the sources and ChangeLogs. The links on www.kernel.org seems a bit wonky...

Last edited by mats_b_tegner; 02-18-2017 at 11:56 AM.
 
2 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Linux.conf.au: Latest Linux kernel release due early March DragonSlayer48DX Linux - News 0 01-18-2010 10:43 PM
No video on latest kernel release Tralce Linux - Kernel 3 11-30-2006 07:48 AM
What is the latest Redhat release TILEMANN Linux - Software 5 11-20-2006 10:48 PM
LXer: News: OpenVZ To Release Support, Patches for Latest Kernel LXer Syndicated Linux News 0 11-01-2006 10:54 PM
latest debian release? doralsoral Linux - Software 5 12-25-2004 12:40 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:49 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration