Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.advocacy > #688130 > unrolled thread

Running On Kernel 6.14 -- Here's How

Started byFarley Flud <ff@linux.rocks>
First post2025-03-25 19:55 +0000
Last post2025-03-26 17:39 -0400
Articles 9 — 5 participants

Back to article view | Back to comp.os.linux.advocacy


Contents

  Running On Kernel 6.14 -- Here's How Farley Flud <ff@linux.rocks> - 2025-03-25 19:55 +0000
    Re: Running On Kernel 6.14 -- Here's How Joel <joelcrump@gmail.com> - 2025-03-25 16:18 -0400
    Re: Running On Kernel 6.14 -- Here's How John Ames <commodorejohn@gmail.com> - 2025-03-25 13:41 -0700
      Re: Running On Kernel 6.14 -- Here's How Joel <joelcrump@gmail.com> - 2025-03-25 16:49 -0400
      Re: Running On Kernel 6.14 -- Here's How Farley Flud <ff@linux.rocks> - 2025-03-25 21:21 +0000
        Re: Running On Kernel 6.14 -- Here's How John Ames <commodorejohn@gmail.com> - 2025-03-25 15:11 -0700
    Re: Running On Kernel 6.14 -- Here's How vallor <vallor@cultnix.org> - 2025-03-26 20:55 +0000
      Re: Running On Kernel 6.14 -- Here's How % <pursent100@gmail.com> - 2025-03-26 14:04 -0700
      Re: Running On Kernel 6.14 -- Here's How Joel <joelcrump@gmail.com> - 2025-03-26 17:39 -0400

#688130 — Running On Kernel 6.14 -- Here's How

FromFarley Flud <ff@linux.rocks>
Date2025-03-25 19:55 +0000
SubjectRunning On Kernel 6.14 -- Here's How
Message-ID<pan$b5779$c521ba38$bd1fa2f2$bd3680f3@linux.rocks>
Linux kernel 6.14 is just released and over the past 15 short minutes
I have built and installed it.

Here's how.

1) Download and untar:

tar xJvkf /build/dir/linux-6.14.tar.xz


2) Copy 6.13 .config to /build/dir


3) make oldconfig:

make LD=ld.bfd oldconfig

The option is necessary because the kernel does not handle
link time optimization (LTO).

The only significant differences were the PT_RECLAIM option,
which reclaims empty page tables.  The answer is "yes."

Then there is NT_SYNC.  This is fucking bizarre.  I suppose
it relates to Linux on that shit OS Winblows:

https://docs.kernel.org/userspace-api/ntsync.html

I, of course, answered "NO."

Then there is CRC_OPTIMIZATION.  This is CRC checksums so "Yes."


4) Compile the damned thing, and modules, and install modules:

make LD=ld.bfd -j9 bzImage && make LD=ld.bfd -j9 modules && make LD=ld.bfd modules_install


5) Copy the kernel to /boot (modules are already installed).


6) Copy kernel headers (I have a script for this which I won't
publish here.)


7) Allow Gentoo to build the Nvidia 570.133.07 driver:

emerge nvidia-drivers


8) Update the syslinux boot config file (fuck that bloated grub).


That's it.

In 15 short fucking minutes I am cruising on kernel 6.14.

I need to script the entire process for an even faster build.

The rest of you dumb-fucks have no choice but to rely on a
bloated and sluggish distro kernel.

My condolences.

Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!



-- 
Systemd: solving all the problems that you never knew you had.

[toc] | [next] | [standalone]


#688133

FromJoel <joelcrump@gmail.com>
Date2025-03-25 16:18 -0400
Message-ID<tk36ujlc2cpcs39ph25knefbtfope21a9d@4ax.com>
In reply to#688130
Farley Flud <ff@linux.rocks> wrote:

>Linux kernel 6.14 is just released and over the past 15 short minutes
>I have built and installed it.
>
>Here's how.
>
>1) Download and untar:
>
>tar xJvkf /build/dir/linux-6.14.tar.xz
>
>
>2) Copy 6.13 .config to /build/dir
>
>
>3) make oldconfig:
>
>make LD=ld.bfd oldconfig
>
>The option is necessary because the kernel does not handle
>link time optimization (LTO).
>
>The only significant differences were the PT_RECLAIM option,
>which reclaims empty page tables.  The answer is "yes."
>
>Then there is NT_SYNC.  This is fucking bizarre.  I suppose
>it relates to Linux on that shit OS Winblows:
>
>https://docs.kernel.org/userspace-api/ntsync.html
>
>I, of course, answered "NO."
>
>Then there is CRC_OPTIMIZATION.  This is CRC checksums so "Yes."
>
>
>4) Compile the damned thing, and modules, and install modules:
>
>make LD=ld.bfd -j9 bzImage && make LD=ld.bfd -j9 modules && make LD=ld.bfd modules_install
>
>
>5) Copy the kernel to /boot (modules are already installed).
>
>
>6) Copy kernel headers (I have a script for this which I won't
>publish here.)
>
>
>7) Allow Gentoo to build the Nvidia 570.133.07 driver:
>
>emerge nvidia-drivers
>
>
>8) Update the syslinux boot config file (fuck that bloated grub).
>
>
>That's it.
>
>In 15 short fucking minutes I am cruising on kernel 6.14.
>
>I need to script the entire process for an even faster build.
>
>The rest of you dumb-fucks have no choice but to rely on a
>bloated and sluggish distro kernel.
>
>My condolences.
>
>Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!


You spent all that time to accomplish approximately nothing.  My
sluggish distro kernel was, in the meantime, serving up live action
for me to utilize in my workflow, as a professional PC user, not a
lame-ass, brain-damaged buffoon like you, with your Tales from the
Crypt tech setup.  Idiot.

-- 
Joel W. Crump

Amendment XIV
Section 1.

[...] No state shall make or enforce any law which shall
abridge the privileges or immunities of citizens of the
United States; nor shall any state deprive any person of
life, liberty, or property, without due process of law;
nor deny to any person within its jurisdiction the equal
protection of the laws.

Dobbs rewrites this, it is invalid precedent.  States are
liable for denying needed abortions, e.g. TX.

[toc] | [prev] | [next] | [standalone]


#688136

FromJohn Ames <commodorejohn@gmail.com>
Date2025-03-25 13:41 -0700
Message-ID<20250325134146.00000305@gmail.com>
In reply to#688130
On Tue, 25 Mar 2025 19:55:26 +0000
Farley Flud <ff@linux.rocks> wrote:

> The rest of you dumb-fucks have no choice but to rely on a
> bloated and sluggish distro kernel.

And we care...why, exactly?

[toc] | [prev] | [next] | [standalone]


#688137

FromJoel <joelcrump@gmail.com>
Date2025-03-25 16:49 -0400
Message-ID<eb56uj974ck2vk84kolobbjrdsmkui62sc@4ax.com>
In reply to#688136
John Ames <commodorejohn@gmail.com> wrote:
>On Tue, 25 Mar 2025 19:55:26 +0000
>Farley Flud <ff@linux.rocks> wrote:
>
>> The rest of you dumb-fucks have no choice but to rely on a
>> bloated and sluggish distro kernel.
>
>And we care...why, exactly?


He imagines that anyone is actually rooting for him in the audience,
oh sure Larry, they love your computer with the motherboard lying
around sans a case, no modern Web browser, Tinkertoy goofball system.
No, I'm gonna say he's a complete jackass, making a fool of himself,
even admitting to criminal sexual activity with underage teens.  Just
unreal stupidity.

-- 
Joel W. Crump

Amendment XIV
Section 1.

[...] No state shall make or enforce any law which shall
abridge the privileges or immunities of citizens of the
United States; nor shall any state deprive any person of
life, liberty, or property, without due process of law;
nor deny to any person within its jurisdiction the equal
protection of the laws.

Dobbs rewrites this, it is invalid precedent.  States are
liable for denying needed abortions, e.g. TX.

[toc] | [prev] | [next] | [standalone]


#688139

FromFarley Flud <ff@linux.rocks>
Date2025-03-25 21:21 +0000
Message-ID<pan$9961d$79acc0fd$39648169$8b7140a2@linux.rocks>
In reply to#688136
On Tue, 25 Mar 2025 13:41:46 -0700, John Ames wrote:

> On Tue, 25 Mar 2025 19:55:26 +0000
> Farley Flud <ff@linux.rocks> wrote:
> 
>> The rest of you dumb-fucks have no choice but to rely on a
>> bloated and sluggish distro kernel.
> 
> And we care...why, exactly?
>

There are only 10 kinds of GNU/Linux users:

Those who care and those who don't.

One knows why and the other one doesn't.

Need I say more?


-- 
Systemd: solving all the problems that you never knew you had.

[toc] | [prev] | [next] | [standalone]


#688143

FromJohn Ames <commodorejohn@gmail.com>
Date2025-03-25 15:11 -0700
Message-ID<20250325151141.00005679@gmail.com>
In reply to#688139
On Tue, 25 Mar 2025 21:21:53 +0000
Farley Flud <ff@linux.rocks> wrote:

> Need I say more?

Since that didn't actually answer the question, apparently so.

[toc] | [prev] | [next] | [standalone]


#688200

Fromvallor <vallor@cultnix.org>
Date2025-03-26 20:55 +0000
Message-ID<m4j7t9F124uU1@mid.individual.net>
In reply to#688130
On Tue, 25 Mar 2025 19:55:26 +0000, Farley Flud <ff@linux.rocks> wrote in
<pan$b5779$c521ba38$bd1fa2f2$bd3680f3@linux.rocks>:

> Linux kernel 6.14 is just released

On _your_ _distro_, distro-lackey -- it was released Monday.  (See my earlier
post.)

You're a day late and a dollar short.

Ha ha ha ha ha ha ha ha ha!

-- 
-v System76 Thelio Mega v1.1 x86_64 NVIDIA RTX 3090 Ti
   OS: Linux 6.14.0 Release: Mint 22.1 Mem: 258G
   "And he disappeared in a puff of logic."

[toc] | [prev] | [next] | [standalone]


#688201

From% <pursent100@gmail.com>
Date2025-03-26 14:04 -0700
Message-ID<jP6dndJR--RF9nn6nZ2dnZfqnPqdnZ2d@giganews.com>
In reply to#688200
vallor wrote:
> On Tue, 25 Mar 2025 19:55:26 +0000, Farley Flud <ff@linux.rocks> wrote in
> <pan$b5779$c521ba38$bd1fa2f2$bd3680f3@linux.rocks>:
> 
>> Linux kernel 6.14 is just released
> 
> On _your_ _distro_, distro-lackey -- it was released Monday.  (See my earlier
> post.)
> 
> You're a day late and a dollar short.
> 
> Ha ha ha ha ha ha ha ha ha!
> 
i got my lips around a bottle and my foot on the throttle

[toc] | [prev] | [next] | [standalone]


#688205

FromJoel <joelcrump@gmail.com>
Date2025-03-26 17:39 -0400
Message-ID<s0t8uj1eveltqplim80pl2jl5g7r8fhp8u@4ax.com>
In reply to#688200
vallor <vallor@cultnix.org> wrote:
>On Tue, 25 Mar 2025 19:55:26 +0000, Farley Flud <ff@linux.rocks> wrote in
><pan$b5779$c521ba38$bd1fa2f2$bd3680f3@linux.rocks>:
>
>> Linux kernel 6.14 is just released
>
>On _your_ _distro_, distro-lackey -- it was released Monday.  (See my earlier
>post.)
>
>You're a day late and a dollar short.
>
>Ha ha ha ha ha ha ha ha ha!


Yep.

-- 
Joel W. Crump

Amendment XIV
Section 1.

[...] No state shall make or enforce any law which shall
abridge the privileges or immunities of citizens of the
United States; nor shall any state deprive any person of
life, liberty, or property, without due process of law;
nor deny to any person within its jurisdiction the equal
protection of the laws.

Dobbs rewrites this, it is invalid precedent.  States are
liable for denying needed abortions, e.g. TX.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.os.linux.advocacy


csiph-web