Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <sh291lxvc7.ln2@Telcontar.valinor>
Deutsch   English   Français   Italiano  
<sh291lxvc7.ln2@Telcontar.valinor>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!news.roellig-ltd.de!open-news-network.org!weretis.net!feeder8.news.weretis.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: "Carlos E.R." <robin_listas@es.invalid>
Newsgroups: comp.os.linux.misc
Subject: Re: Are We Back to the "Wars" Now ?
Date: Sat, 23 Nov 2024 14:39:40 +0100
Lines: 28
Message-ID: <sh291lxvc7.ln2@Telcontar.valinor>
References: <Sp-cnSz8UupYQaf6nZ2dnZfqnPednZ2d@earthlink.com>
 <vhf5ts$16rpr$1@dont-email.me> <vhfjtj$19ijm$1@dont-email.me>
 <vhja6j$23f5e$4@dont-email.me> <vhmm4c$hnbj$1@dont-email.me>
 <vhmn2t$hv8i$3@dont-email.me> <vhnikj$me7m$1@dont-email.me>
 <vhoaau$qjkl$1@dont-email.me>
 <lIqcnTlkpf_Jtd36nZ2dnZfqn_udnZ2d@earthlink.com>
 <vhp9hs$12qaa$2@dont-email.me>
 <v4adnSK1nItcwNz6nZ2dnZfqnPWdnZ2d@earthlink.com>
 <vhrolu$1jata$1@dont-email.me>
 <Oo6dnZb3z-NT6Nz6nZ2dnZfqnPednZ2d@earthlink.com>
 <vhs0vs$1k6ft$2@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-Trace: individual.net qwofXIsCFAnFBU49TbCBGAvz8aYPzbCR/Avp5J2rO1RcsYHmjA
X-Orig-Path: Telcontar.valinor!not-for-mail
Cancel-Lock: sha1:btJUmYN6EYltXjA/9kc6N1Yx+dw= sha256:U1X3NeGO5xAn0hWCEt/JaqImYzIK/27B5FSeYvHqnKg=
User-Agent: Mozilla Thunderbird
Content-Language: es-ES, en-CA
In-Reply-To: <vhs0vs$1k6ft$2@dont-email.me>
Bytes: 2212

On 2024-11-23 08:41, Lawrence D'Oliveiro wrote:
> On Sat, 23 Nov 2024 01:27:25 -0500, 186282@ud0s4.net wrote:
> 
>> On 11/23/24 12:19 AM, Lawrence D'Oliveiro wrote:
>>>
>>> You didn’t realize IPC on *nix is industrial-strength?
>>
>> I know it CAN handle BIG transactions.
>>
>> But SHOULD it ?
> 
> That’s what it’s designed for!

I use named pipes on my backup script.

I dd a hard disk partition, compress it, and at the same time calculate a checksum.

     mkfifo mdpipe
     dd if=/dev/$1  status=progress  bs=16M | tee mdpipe | pigz -3 > $3.gz &
     md5sum -b mdpipe | tee -a md5checksum_expanded
     wait
     rm mdpipe
     echo "$3" >> md5checksum_expanded

This way there is only one disk read operation. I can see the thing running at max hard disk speed.

-- 
Cheers, Carlos.