Rocksolid Light

News from da outaworlds

mail  files  register  groups  login

Message-ID:  

Try to have as good a life as you can under the circumstances.


comp / comp.os.linux.advocacy / Re: Linux Performance Tuning

SubjectAuthor
* Linux Performance TuningFarley Flud
`* Re: Linux Performance TuningDFS
 +* Re: Linux Performance TuningLawrence D'Oliveiro
 |`- Re: Linux Performance TuningChris Ahlstrom
 `- Re: Linux Performance TuningJoel

1
Subject: Linux Performance Tuning
From: Farley Flud
Newsgroups: comp.os.linux.advocacy
Organization: UsenetExpress - www.usenetexpress.com
Date: Sun, 11 Aug 2024 11:42 UTC
From: ff@linux.rocks (Farley Flud)
Subject: Linux Performance Tuning
Newsgroups: comp.os.linux.advocacy
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 42
Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Sun, 11 Aug 2024 11:42:43 +0000
Nntp-Posting-Date: Sun, 11 Aug 2024 11:42:43 +0000
X-Received-Bytes: 1702
Organization: UsenetExpress - www.usenetexpress.com
X-Complaints-To: abuse@usenetexpress.com
Message-Id: <17eaa9da79063ec7$11046$1084599$802601b3@news.usenetexpress.com>
View all headers

Don't ever accept defaults. Always tune your machine.

Beyond build configuration, there is the possibility of
run-time tuning via "sysctl:"

man sysctl

Do a search for "linux kernel performance tuning" and
plenty of info will be available.

Here is my sysctl.conf:

# disable ASLR security bullshit
kernel.randomize_va_space=0
# aggressive network settings
net.core.netdev_max_backlog = 65536
net.core.optmem_max = 65536
net.core.rmem_default = 1048576
net.core.wmem_default = 1048576
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_rmem = 4096 87380 16777216
net.ipv4.tcp_wmem = 4096 65536 16777216
net.ipv4.tcp_timestamps = 0
net.ipv4.tcp_sack = 1
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_no_metrics_save = 1
#To disable IP source routing (SRR), so that nobody can tell us which path a packet should take:
net.ipv4.conf.all.accept_source_route = 0
net.ipv4.conf.default.accept_source_route = 0
#By default, routers route everything and even packages which don't belong
#to their network(s). To avoid that we've to make sure strict reverse path filtering is enabled as defined in RFC3704:
net.ipv4.conf.all.rp_filter = 1
net.ipv4.conf.default.rp_filter = 1
net.ipv4.tcp_slow_start_after_idle = 0
net.ipv4.tcp_mtu_probing = 1
# vm.dirty_ratio = 10
vm.dirty_background_ratio = 5

Subject: Re: Linux Performance Tuning
From: DFS
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Sun, 11 Aug 2024 13:06 UTC
References: 1
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: nospam@dfs.com (DFS)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Linux Performance Tuning
Date: Sun, 11 Aug 2024 09:06:22 -0400
Organization: A noiseless patient Spider
Lines: 8
Message-ID: <v9ad0b$2nbre$3@dont-email.me>
References: <17eaa9da79063ec7$11046$1084599$802601b3@news.usenetexpress.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 11 Aug 2024 15:06:20 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="2efcc37de6fc729e2d94db5e1f13f7cf";
logging-data="2862958"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1++v84fakiyoK5Q0UhhkdYq"
User-Agent: Betterbird (Windows)
Cancel-Lock: sha1:EWqKIBIFbo3WkxlYIcIxKKzcEKU=
In-Reply-To: <17eaa9da79063ec7$11046$1084599$802601b3@news.usenetexpress.com>
Content-Language: en-US
View all headers

On 8/11/2024 7:42 AM, Lameass Larry wrote:

> Don't ever accept defaults. Always tune your machine.

Don't ever use your Linux box. Always tinker with it for 4 hours to
save 3 seconds 2 times a year.

Subject: Re: Linux Performance Tuning
From: Lawrence D'Oliv
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Mon, 12 Aug 2024 00:33 UTC
References: 1 2
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ldo@nz.invalid (Lawrence D'Oliveiro)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Linux Performance Tuning
Date: Mon, 12 Aug 2024 00:33:17 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 9
Message-ID: <v9bl8d$2upv2$4@dont-email.me>
References: <17eaa9da79063ec7$11046$1084599$802601b3@news.usenetexpress.com>
<v9ad0b$2nbre$3@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 12 Aug 2024 02:33:17 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="6e61f6f981cbf6b12d6faf6aced17530";
logging-data="3106786"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18/DDFPMNeD7PsL6DPVZM9R"
User-Agent: Pan/0.159 (Vovchansk; )
Cancel-Lock: sha1:x00YwKveZPuFABuXs5jhQtAGN/Y=
View all headers

On Sun, 11 Aug 2024 09:06:22 -0400, DFS wrote:

> Don't ever use your Linux box. Always tinker with it for 4 hours to
> save 3 seconds 2 times a year.

As opposed to Windows, where you have to continually keep running to stay
in the same place, always tinkering after every system update, to try to
get back at least some of the performance that Microsoft keeps taking from
you.

Subject: Re: Linux Performance Tuning
From: Chris Ahlstrom
Newsgroups: comp.os.linux.advocacy
Organization: None
Date: Mon, 12 Aug 2024 11:46 UTC
References: 1 2 3
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Linux Performance Tuning
Date: Mon, 12 Aug 2024 07:46:35 -0400
Organization: None
Lines: 20
Message-ID: <v9csms$38vc4$5@dont-email.me>
References: <17eaa9da79063ec7$11046$1084599$802601b3@news.usenetexpress.com>
<v9ad0b$2nbre$3@dont-email.me> <v9bl8d$2upv2$4@dont-email.me>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Mon, 12 Aug 2024 13:46:36 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="f779aa7e995c8200ffa42379ed38a165";
logging-data="3440004"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+/GfIlJxUnVknzV6qnjCXB"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:7h4MPuFAAWLjZ4pP+/nrXU7PPz4=
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Slrn: Why use anything else?
X-Mutt: The most widely-used MUA
View all headers

Lawrence D'Oliveiro wrote this copyrighted missive and expects royalties:

> On Sun, 11 Aug 2024 09:06:22 -0400, DFS wrote:
>
>> Don't ever use your Linux box. Always tinker with it for 4 hours to
>> save 3 seconds 2 times a year.
>
> As opposed to Windows, where you have to continually keep running to stay
> in the same place, always tinkering after every system update, to try to
> get back at least some of the performance that Microsoft keeps taking from
> you.

There's a certain satisfaction to solving an "issue" on Linux that boosts one's
productivity for years.

--
Q: What did Tarzan say when he saw the elephants coming over the hill?
A: "The elephants are coming over the hill."
Q: What did he say when saw them coming over the hill wearing sunglasses?
A: Nothing, for he didn't recognize them.

Subject: Re: Linux Performance Tuning
From: Joel
Newsgroups: comp.os.linux.advocacy
Organization: A noiseless patient Spider
Date: Tue, 13 Aug 2024 23:02 UTC
References: 1 2
Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: joelcrump@gmail.com (Joel)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Linux Performance Tuning
Date: Tue, 13 Aug 2024 19:02:56 -0400
Organization: A noiseless patient Spider
Lines: 28
Message-ID: <c8pnbj1clb3an1ar2npjjk61bcp3vo0uk4@4ax.com>
References: <17eaa9da79063ec7$11046$1084599$802601b3@news.usenetexpress.com> <v9ad0b$2nbre$3@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 14 Aug 2024 01:02:57 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="f217b60d97af31b597dbab8612cc2b83";
logging-data="128889"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+g+GBu50x2pSXEh0CYZk/MqhbN0Mcyk1Y="
User-Agent: ForteAgent/8.00.32.1272
Cancel-Lock: sha1:iIfHzmu1R7priXElCCKFSD7494g=
OS: openSUSE Leap 15.6, with Wine 9.0 for WinAPI
View all headers

DFS <nospam@dfs.com> wrote:
>On 8/11/2024 7:42 AM, Lameass Larry wrote:
>
>> Don't ever accept defaults. Always tune your machine.
>
>Don't ever use your Linux box. Always tinker with it for 4 hours to
>save 3 seconds 2 times a year.

openSUSE is just a clever distro that is easier to use than Larry's
barebones setup, I'm living in an efficient desktop environment and
he's just wasting effort, little by little.

--
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.

1

rocksolid light 0.9.8
clearnet tor