LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 10-26-2021, 03:51 PM   #3886
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 ZhaoLin1457 View Post
And congratulations for involuntary great demonstration of how can be made a proprietary program with source code available.

Yes, a program published without a license, automatically is considered having a proprietary license where "all rights are reserved" to author. This happens at least on America, Europa and Asia.
For Copyright to apply, a work is required to be non-trivial and/or have an element of originality about it. I don't think we need worry here.
 
3 members found this post helpful.
Old 10-26-2021, 08:04 PM   #3887
baumei
Member
 
Registered: Feb 2019
Location: USA; North Carolina
Distribution: Slackware 15.0 (replacing 14.2)
Posts: 365

Rep: Reputation: 124Reputation: 124
About a half-decade ago I was using Slackware on an old slow computer with not much memory, and I saw similar:

Quote:
Originally Posted by dchmelik View Post
[...] I had significant desktop lag for years/decades using Slackware even after disabling animations, most effects, and upgrading to new hardware (compared to DOS-based even on a 486) [...]
I also disabled animations and 'effects' and whatnot --- but even so, from time to time the computer would start thrashing and the processor(s) would become 100% busy. One day an idea came to me that perhaps the user software was impeding the kernel. So, I ran
Code:
renice -n 10 -u <my usersname>
This worked well, and after a while I added the command into my user's ".xinitrc" file.
 
2 members found this post helpful.
Old 10-27-2021, 04:57 AM   #3888
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,336

Rep: Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050
The change logs and tarballs for kernel updates 5.14.15, 5.10.76, 5.4.156, 4.19.214, 4.14.253, 4.9.288 and 4.4.290 are now available at, https://www.kernel.org
 
1 members found this post helpful.
Old 10-27-2021, 07:02 AM   #3889
3rensho
Senior Member
 
Registered: Mar 2008
Location: Deutschland
Distribution: Slackware64-current
Posts: 1,019

Rep: Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615
5.14.15 build and running fine with Nvidia 470.82.00
 
1 members found this post helpful.
Old 10-27-2021, 10:40 AM   #3890
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,682

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
Looks like the patch for setting the default dynamic preempt mode has landed in the kernel tip tree. Unless I am mistaken that means it will eventually make its way into the kernel.

https://git.kernel.org/pub/scm/linux...c3ca0e544ace26
 
Old 10-27-2021, 10:55 AM   #3891
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,482

Rep: Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287Reputation: 3287
Quote:
Originally Posted by Daedra View Post
Looks like the patch for setting the default dynamic preempt mode has landed in the kernel tip tree. Unless I am mistaken that means it will eventually make its way into the kernel.

https://git.kernel.org/pub/scm/linux...c3ca0e544ace26
Yes, BUT this looks like that it will be added on the kernel 5.16.x so, those will want it in previous versions, they should backport it.

So, did you see our BDFL backporting this patch to 5.14.x or 5.15.x, when he invented that one-liner sed command which basicaly do a similar job at build time ?

Last edited by LuckyCyborg; 10-27-2021 at 10:56 AM.
 
Old 10-27-2021, 11:08 AM   #3892
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,682

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
Quote:
Originally Posted by LuckyCyborg View Post
Yes, BUT this looks like that it will be added on the kernel 5.16.x so, those will want it in previous versions, they should backport it.

So, did you see our BDFL backporting this patch to 5.14.x or 5.15.x, when he invented that one-liner sed command which basicaly do a similar job at build time ?
Yeah the default preempt=full issue is easily worked around. I am just noting that it looks like they did listen to people complaining about the lack of a changeable default option and fixed it.
 
1 members found this post helpful.
Old 10-28-2021, 10:39 AM   #3893
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
Code:
[    0.030953] Kernel command line: BOOT_IMAGE=dev000:\EFI\Linux\slackware/vmlinuz  acpi_backlight=video           rootfstype=ext4           noautogroup preempt=voluntary           fbcon=font:TER16x32           vt.default_utf8=1           loglevel=2 console=tty8 ro
[    0.031767] Dynamic Preempt: voluntary
[    0.031817] Unknown command line parameters: BOOT_IMAGE=dev000:\EFI\Linux\slackware/vmlinuz preempt=voluntary
Looks like they forgot to tell the cmdline parser that preempt= is a thing now.

Last edited by GazL; 10-28-2021 at 10:40 AM.
 
1 members found this post helpful.
Old 10-28-2021, 11:09 AM   #3894
franzen
Member
 
Registered: Nov 2012
Distribution: slackware
Posts: 535

Rep: Reputation: 379Reputation: 379Reputation: 379Reputation: 379
Quote:
Originally Posted by GazL View Post
Code:
[    0.030953] Kernel command line: BOOT_IMAGE=dev000:\EFI\Linux\slackware/vmlinuz  acpi_backlight=video           rootfstype=ext4           noautogroup preempt=voluntary           fbcon=font:TER16x32           vt.default_utf8=1           loglevel=2 console=tty8 ro
[    0.031767] Dynamic Preempt: voluntary
[    0.031817] Unknown command line parameters: BOOT_IMAGE=dev000:\EFI\Linux\slackware/vmlinuz preempt=voluntary
Looks like they forgot to tell the cmdline parser that preempt= is a thing now.
https://www.linuxquestions.org/quest...ml#post6294273
 
1 members found this post helpful.
Old 10-28-2021, 11:33 AM   #3895
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
Yes, this is the salient part:
Quote:
This assumes the parameters are processed in a normal fashion, some parameters (dyndbg= for example) don't register their parameter with the rest of the kernel's parameters, and therefore always show up in this list (and are also given to init - like the rest of this list).
Seems kinda sloppy to allow that though.
 
2 members found this post helpful.
Old 10-28-2021, 10:45 PM   #3896
Aeterna
Senior Member
 
Registered: Aug 2017
Location: Terra Mater
Distribution: VM Host: Slackware-current, VM Guests: Artix, Venom, antiX, Gentoo, FreeBSD, OpenBSD, OpenIndiana
Posts: 1,006

Rep: Reputation: Disabled
I wonder why not to compile preemptible kernel with full preempt for desktop?
Then other options can be tweaked e.g. RCU, hugepage and so on and so for

plus all GCC tweaks can also help with the performance.

I never had problems with stuttering even under load but I never used default Slackware kernel.
 
Old 10-29-2021, 04:33 AM   #3897
dchmelik
Senior Member
 
Registered: Nov 2008
Location: USA
Distribution: Slackware, FreeBSD, Illumos, NetBSD, DragonflyBSD, Plan9, Inferno, OpenBSD, FreeDOS, HURD
Posts: 1,063

Rep: Reputation: 146Reputation: 146
Is there no headers package for 5.14.15?! :O
 
Old 10-29-2021, 04:38 AM   #3898
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,086

Original Poster
Rep: Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262
Quote:
Originally Posted by dchmelik View Post
Is there no headers package for 5.14.15?! :O
Yes, there is,
Quote:
+--------------------------+
Thu Oct 28 01:11:07 UTC 2021
a/kernel-generic-5.14.15-x86_64-1.txz: Upgraded.
a/kernel-huge-5.14.15-x86_64-1.txz: Upgraded.
a/kernel-modules-5.14.15-x86_64-1.txz: Upgraded.
d/cmake-3.21.4-x86_64-1.txz: Upgraded.
d/kernel-headers-5.14.15-x86-1.txz: Upgraded.
k/kernel-source-5.14.15-noarch-1.txz: Upgraded.......
It can be found here, http://slackware.oregonstate.edu/sla...slackware64/d/

Last edited by cwizardone; 10-29-2021 at 04:40 AM.
 
Old 10-31-2021, 04:20 PM   #3899
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,086

Original Poster
Rep: Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262
5.15.0

The newest Stable kernel, version 5.15.0, has been released.

The tarball, https://cdn.kernel.org/pub/linux/ker...ux-5.15.tar.xz

Mr. Torvalds' announcement, http://lkml.iu.edu/hypermail/linux/k...0.3/07730.html


Edit in: Built and installed and it still presents a blank screen for seven seconds after the BIOS check. Other than that, so far, so good.

Last edited by cwizardone; 10-31-2021 at 05:55 PM.
 
5 members found this post helpful.
Old 10-31-2021, 05:28 PM   #3900
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,336

Rep: Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050Reputation: 4050
Quote:
Originally Posted by cwizardone View Post
5.15.0

The newest Stable kernel, version 5.15.0, has been released.

The tarball, https://git.kernel.org/pub/scm/linux...ux-5.15.tar.gz

Mr. Torvalds' announcement, http://lkml.iu.edu/hypermail/linux/k...0.3/07730.html
Everything went well
The mother is well and the father is happy !

Last edited by marav; 10-31-2021 at 05:29 PM.
 
  


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 09:58 AM.

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