DMARC

2021-07-09 Thread Polyna-Maude Racicot-Summerside
Hi, I receive the following regarding messages sent on the mailing list... Someone understand something ? Those IPs are totally unknown to me. 1.0 Fastmail Pty Ltd repo...@fastmaildmarc.com https://fastmail.com/ 4

Re: ASTM Lab equipment protocol

2021-07-09 Thread Stefan Monnier
> Now that is easy. I did not know about the archives. Or the search. > No results though. So this might be a bit of a dead end. > It doesn't mean that software doesn't exist. Just that ASTM was never > discussed on a Debian list. So you get to be the first! Still it seems that debian-science

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Stefan Monnier
> 2. repair my situation - I cannot go to Debian 10 right now (I posted the > reason somewhere here - mouse ist awfully slow and jumpy)) You might want to try `aptitude` instead of `apt`: it will try to offer ways to fix the problem (by removing&upgrading&downgrading package). The solutions it o

Re: Bash: testing a variable

2021-07-09 Thread Charles Curley
On Fri, 9 Jul 2021 16:53:45 -0400 Greg Wooledge wrote: > Since it's a function, and not a script, there's no shebang. So I'm > guessing shellcheck assumed it was /bin/sh code, rather than bash > code. <<< is just one of the bashisms I used here. local is > another. The use of arrays is a third

Re: Failure to use 3840x2160 30hz with Intel 620 chipset

2021-07-09 Thread Felix Miata
Pierre Couderc composed on 2021-07-09 09:05 (UTC+0200): > Felix Miata wrote: the PC crashes (all is black, need to power off). >>> You should have no need of gtf or mode creation with 620 graphics. Mode

test

2021-07-09 Thread Polyna-Maude R.-Summerside
-- Polyna-Maude R.-Summerside https://www.polynamaude.com/ -Be smart, Be wise, Support opensource development *Mise en garde concernant la confidentialité* La présente communication est confidentielle et transmise sous le sceau du secret professionnel. Si vous n’êtes pas le destinataire visé o

Re: Bash: testing a variable

2021-07-09 Thread Greg Wooledge
On Fri, Jul 09, 2021 at 11:40:36PM +0200, john doe wrote: > On 7/9/2021 9:54 PM, Charles Curley wrote: > > # if [[ ! ${PATH} =~ .*/home/charles/.local/bin.* ]] ; then > > [[ $PATH =~ \/home\/charles\/... ]] && echo match || echo nomatch > > That is, escaping the backslash. First, you are escapin

Vulkan with Radeon RX 5700 XT

2021-07-09 Thread The Wanderer
(Warning, this is fairly long, and the situation involved includes a fair number of potentially-moving pieces.) I've recently built a new computer, installed Debian, configured it to largely match my previous setup, and migrated my data across. Now, I'm trying to take advantage of one of the har

Re: Bash: testing a variable

2021-07-09 Thread john doe
On 7/9/2021 9:54 PM, Charles Curley wrote: I'd like to check two things: * Whether a given path is not already in the $PATH variable * Whether the given path already exists If both are true, I'd like to add the given path to the $PATH variable. I can add the given path, and test for the exist

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Kampmann
Heureka ... I did an aptitude ... and got the following (and the quit!!! - but do I know whether my system is ok???): root@primergy:~/software-env# aptitude install ffmpeg Warning: Invalid locale (please review locale settings, this might lead to problems later):   locale::facet::_S_create_c

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Greg Wooledge
On Fri, Jul 09, 2021 at 11:13:47PM +0200, Joerg Kampmann wrote: > Die folgenden Pakete haben unerfüllte Abhängigkeiten: >  libavcodec-dev : Hängt ab von: libavcodec58 (= 10:4.1.6-dmo1+deb10u1) soll There we have it. You have added a debian-multimedia (dmo) source intended to be used with Debian 1

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Joerg Kampmann
Am 09.07.21 um 22:47 schrieb Stefan Monnier: 2. repair my situation - I cannot go to Debian 10 right now (I posted the reason somewhere here - mouse ist awfully slow and jumpy)) You might want to try `aptitude` instead of `apt`: it will try to offer ways to fix the problem (by removing&upgr

Re: Mail Reader

2021-07-09 Thread Francesco Florian
On Fr, 09 Jul 2021, Teemu Likonen wrote: > Excellent Emacs mail clients which I know: Notmuch Emacs and Gnus. Both > can render HTML mail in text format using a variable width font. Actually both can feed the html to a (customizable) renderer and display the result. Best -- Francesco Florian

Re: Bash: testing a variable

2021-07-09 Thread Greg Wooledge
On Fri, Jul 09, 2021 at 02:45:23PM -0600, Charles Curley wrote: > On Fri, 9 Jul 2021 16:25:11 -0400 > Greg Wooledge wrote: > > > add_path_maybe() { > > local p i > > ... > > Very nice, sir. Thank you. > > shellcheck complained about the redirection in the "IFS=: read" line, > but I'm not goin

Re: Bash: testing a variable

2021-07-09 Thread Charles Curley
On Fri, 9 Jul 2021 16:25:11 -0400 Greg Wooledge wrote: > add_path_maybe() { > local p i > ... Very nice, sir. Thank you. shellcheck complained about the redirection in the "IFS=: read" line, but I'm not going to worry about that. -- Does anybody read signatures any more? https://charlescu

Re: Bash: testing a variable

2021-07-09 Thread Charles Curley
On Fri, 9 Jul 2021 22:11:05 +0200 Joerg Kampmann wrote: > > I call the script with the . operator: ". test.sh" > this is the result: > > > root@primergy:~/software-env# . test.sh > > Substr is /root/.local/bin/ > Substring NOT found. > root@primergy:~/software-env# OK, that's what I get if

Re: MTA (DMARC)

2021-07-09 Thread Kevin N.
Not sure if that is the case here, but sometimes mailing list software alters the original message headers which then can lead to failed DKIM signature checks. Cheers, K. Hi, I've wrote a message regarding my MTA. I was thinking it's corrected but... Here what I got from the Debian maili

Re: Bash: testing a variable

2021-07-09 Thread Kampmann
I am sorry I found myself in the wrong thread ... so discard Am 09.07.21 um 22:25 schrieb Greg Wooledge: On Fri, Jul 09, 2021 at 01:54:19PM -0600, Charles Curley wrote: I'd like to check two things: * Whether a given path is not already in the $PATH variable * Whether the given path already e

Re: Bash: testing a variable

2021-07-09 Thread Greg Wooledge
On Fri, Jul 09, 2021 at 01:54:19PM -0600, Charles Curley wrote: > I'd like to check two things: > > * Whether a given path is not already in the $PATH variable > > * Whether the given path already exists > > If both are true, I'd like to add the given path to the $PATH variable. add_path_maybe(

MTA (DMARC)

2021-07-09 Thread Polyna-Maude Racicot-Summerside
Hi, I've wrote a message regarding my MTA. I was thinking it's corrected but... Here what I got from the Debian mailing list server Got some idea ? -- This is a spf/dkim authentication-failure report for an email message received from IP 82.195.75.100 on Fri, 09 Jul 2021 22:12:17 +0200.

Re: MTA (corrected)

2021-07-09 Thread Polyna-Maude Racicot-Summerside
Hi, On 2021-07-05 1:16 p.m., Polyna-Maude Racicot-Summerside wrote: > Hi, > > On 2021-07-05 1:07 p.m., Greg Wooledge wrote: >> On Mon, Jul 05, 2021 at 01:00:07PM -0400, Polyna-Maude Racicot-Summerside >> wrote: >>> On 2021-07-05 12:46 p.m., Greg Wooledge wrote: unicorn:~$ host _dc-mx.f1202d

Re: Bash: testing a variable

2021-07-09 Thread Joerg Kampmann
Am 09.07.21 um 21:54 schrieb Charles Curley: I'd like to check two things: * Whether a given path is not already in the $PATH variable * Whether the given path already exists If both are true, I'd like to add the given path to the $PATH variable. I can add the given path, and test for the e

Re: ASTM Lab equipment protocol

2021-07-09 Thread Rob van der Putten
Hi there On 09/07/2021 19:11, Brian wrote: On Fri 09 Jul 2021 at 19:04:06 +0200, Rob van der Putten wrote: On 09/07/2021 18:23, Polyna-Maude Racicot-Summerside wrote: On 2021-07-09 9:21 a.m., Rob van der Putten wrote: Which Debian packages support the ASTM lab equipment (over TCP) prot

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Joerg Kampmann
Am 09.07.21 um 21:44 schrieb Greg Wooledge: On Fri, Jul 09, 2021 at 09:36:00PM +0200, Kampmann wrote: The following packages have unmet dependencies:  libavcodec58 : Depends: libavutil56 (>= 10:4.1.6) but it is not going to be installed     Depends: libc6 (>= 2.27) but 2.24-11+de

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Brian
On Fri 09 Jul 2021 at 15:40:21 -0400, Greg Wooledge wrote: > On Fri, Jul 09, 2021 at 08:37:03PM +0100, Brian wrote: > > On Fri 09 Jul 2021 at 15:05:20 -0400, Greg Wooledge wrote: > > > > > On Fri, Jul 09, 2021 at 08:41:17PM +0200, Joerg Kampmann wrote: > > > > Hello - I tried to install ffmpeg (a

Bash: testing a variable

2021-07-09 Thread Charles Curley
I'd like to check two things: * Whether a given path is not already in the $PATH variable * Whether the given path already exists If both are true, I'd like to add the given path to the $PATH variable. I can add the given path, and test for the existence of the given path. I can write expressio

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Greg Wooledge
On Fri, Jul 09, 2021 at 09:36:00PM +0200, Kampmann wrote: > The following packages have unmet dependencies: >  libavcodec58 : Depends: libavutil56 (>= 10:4.1.6) but it is not going to be > installed >     Depends: libc6 (>= 2.27) but 2.24-11+deb9u4 is to be > installed This is a really

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Kampmann
Am 09.07.21 um 21:40 schrieb Greg Wooledge: On Fri, Jul 09, 2021 at 08:37:03PM +0100, Brian wrote: On Fri 09 Jul 2021 at 15:05:20 -0400, Greg Wooledge wrote: On Fri, Jul 09, 2021 at 08:41:17PM +0200, Joerg Kampmann wrote: Hello - I tried to install ffmpeg (a normal Debian package) and got s

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Kampmann
Am 09.07.21 um 21:37 schrieb Brian: On Fri 09 Jul 2021 at 15:05:20 -0400, Greg Wooledge wrote: On Fri, Jul 09, 2021 at 08:41:17PM +0200, Joerg Kampmann wrote: Hello - I tried to install ffmpeg (a normal Debian package) and got some strange messages. the ffmpeg-group adviced me to go to a Deb

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Greg Wooledge
On Fri, Jul 09, 2021 at 08:37:03PM +0100, Brian wrote: > On Fri 09 Jul 2021 at 15:05:20 -0400, Greg Wooledge wrote: > > > On Fri, Jul 09, 2021 at 08:41:17PM +0200, Joerg Kampmann wrote: > > > Hello - I tried to install ffmpeg (a normal Debian package) and got some > > > strange messages. the ffmpe

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Brian
On Fri 09 Jul 2021 at 15:05:20 -0400, Greg Wooledge wrote: > On Fri, Jul 09, 2021 at 08:41:17PM +0200, Joerg Kampmann wrote: > > Hello - I tried to install ffmpeg (a normal Debian package) and got some > > strange messages. the ffmpeg-group adviced me to go to a Debian group. I > > hope I am corre

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Kampmann
Ok, thanks - here we go :) : (base) joerg@primergy:~$ su Passwort: root@primergy:/home/joerg# export LANG=en_US.utf8 root@primergy:/home/joerg# apt install ffmpeg Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This ma

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Anssi Saari
Joerg Kampmann writes: > Hello group I wanted to install ffmpeg under Debian 9 and got some > errormessages (in German): How about errormessages not in German? LANG=en_US.utf8 apt install ffmpeg? > ffmpeg : Hängt ab von: libavcodec58 (>= 10:4.1.6) soll aber nicht > installiert werden https:

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Kampmann
Am 09.07.21 um 21:04 schrieb Brian: On Fri 09 Jul 2021 at 20:41:17 +0200, Joerg Kampmann wrote: Hello - I tried to install ffmpeg (a normal Debian package) and got some strange messages. the ffmpeg-group adviced me to go to a Debian group. I hope I am correct here in this group. You have kept

Re: ASTM Lab equipment protocol

2021-07-09 Thread Markos
Em 09-07-2021 10:21, Rob van der Putten escreveu: Hi there Which Debian packages support the ASTM lab equipment (over TCP) protocol? An overview would be nice. Regards, Rob Hi Rob, Please, explain with more detail, and some example, what exactly are you looking for? Best Regards,

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Greg Wooledge
On Fri, Jul 09, 2021 at 08:41:17PM +0200, Joerg Kampmann wrote: > Hello - I tried to install ffmpeg (a normal Debian package) and got some > strange messages. the ffmpeg-group adviced me to go to a Debian group. I > hope I am correct here in this group. > > I am running Debian 9 on a Fujitsu TX 10

Re: Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Brian
On Fri 09 Jul 2021 at 20:41:17 +0200, Joerg Kampmann wrote: > Hello - I tried to install ffmpeg (a normal Debian package) and got some > strange messages. the ffmpeg-group adviced me to go to a Debian group. I > hope I am correct here in this group. You have kept these "strange" meaages secret. H

Need help with ffmpeg installation - strange behaviour of my system - am I correct here?

2021-07-09 Thread Joerg Kampmann
Hello - I tried to install ffmpeg (a normal Debian package) and got some strange messages. the ffmpeg-group adviced me to go to a Debian group. I hope I am correct here in this group. I am running Debian 9 on a Fujitsu TX 100 S1 computer ... /base) joerg@primergy:~$ uname -a Linux primergy 4.

NFC Reader/writer ACS ACR122U-A9 on Debian works… partially

2021-07-09 Thread davenull
Hello, I'm not sure if it's the best mailing list for asking this, But the problem is encountered using Debian Buster with debian packages for Debian repos, so maybe someone else had the same issues and found a workaround or can give any pointers on how to troubleshoot it I have ACS ACR122U-A9

Re: Mail Reader

2021-07-09 Thread John Hasler
Andrei writes: > Did you mean maildrop here? I meant mailagent. -- John Hasler j...@sugarbit.com Elmwood, WI USA

Re: ASTM Lab equipment protocol

2021-07-09 Thread Brian
On Fri 09 Jul 2021 at 19:04:06 +0200, Rob van der Putten wrote: > Hi there > > > On 09/07/2021 18:23, Polyna-Maude Racicot-Summerside wrote: > > > On 2021-07-09 9:21 a.m., Rob van der Putten wrote: > > > > Which Debian packages support the ASTM lab equipment (over TCP) > > > protocol? An overv

Re: ASTM Lab equipment protocol

2021-07-09 Thread Rob van der Putten
Hi there On 09/07/2021 18:23, Polyna-Maude Racicot-Summerside wrote: On 2021-07-09 9:21 a.m., Rob van der Putten wrote: Which Debian packages support the ASTM lab equipment (over TCP) protocol? An overview would be nice. Have you tried usign the packages.debian.org search engine for going

Re: ASTM Lab equipment protocol

2021-07-09 Thread Polyna-Maude Racicot-Summerside
Hi, On 2021-07-09 9:21 a.m., Rob van der Putten wrote: > Hi there > > > Which Debian packages support the ASTM lab equipment (over TCP) > protocol? An overview would be nice. > Have you tried usign the packages.debian.org search engine for going thru the packages descriptions ? Possibly using

ASTM Lab equipment protocol

2021-07-09 Thread Rob van der Putten
Hi there Which Debian packages support the ASTM lab equipment (over TCP) protocol? An overview would be nice. Regards, Rob

Re: 2 NIC's

2021-07-09 Thread Tixy
On Fri, 2021-07-09 at 12:33 +, Andrew M.A. Cater wrote: > On Fri, Jul 09, 2021 at 10:33:50AM +0100, David wrote: > > Thank you for the information supplied. > > > > I have a confession to make, eth0 & eth1 changed place when I > > configured eth1. > > > > The 2 NICs (and Debian) are working c

Re: 2 NIC's

2021-07-09 Thread Andrew M.A. Cater
On Fri, Jul 09, 2021 at 10:33:50AM +0100, David wrote: > Thank you for the information supplied. > > I have a confession to make, eth0 & eth1 changed place when I > configured eth1. > > The 2 NICs (and Debian) are working correctly, now to get the proxy > server to work as I want. > > regards, >

Re: problem with speedtest-cli

2021-07-09 Thread Dan Ritter
kaye n wrote: > On Fri, Jul 2, 2021 at 3:23 AM Liam O'Toole wrote: > > > The problem has been fixed in the latest stable update[1]. I suggest that > > you upgrade accordingly. > > > > [1] https://www.debian.org/News/2021/20210619 > > > Hello. > Is it easier to upgrade via flash USB or via term

Re: Mail Reader

2021-07-09 Thread Teemu Likonen
* 2021-07-09 10:09:38+0300, Andrei POPESCU wrote: > One thing I forgot to mention about (neo)mutt is the level of automation > that can be achieved in day-to-day tasks. > Probably the only other clients that can match (and possibly surpass > this) are those based on Emacs, though the learning cu

Re: problem with speedtest-cli

2021-07-09 Thread kaye n
On Fri, Jul 2, 2021 at 3:23 AM Liam O'Toole wrote: > On Thu, 01 Jul, 2021 at 18:52:42 +0800, kaye n wrote: > >On Fri, Jun 11, 2021 at 12:28 AM Liam O'Toole > ><[1]liam.p.oto...@gmail.com> wrote: > > > > On Fri, 11 Jun, 2021 at 00:08:51 +0800, kaye n wrote: > > >Hello guys >

Re: 2 NIC's

2021-07-09 Thread David
Thank you for the information supplied. I have a confession to make, eth0 & eth1 changed place when I configured eth1. The 2 NICs (and Debian) are working correctly, now to get the proxy server to work as I want. regards, David. On Tue, 2021-07-06 at 07:18 -0400, Greg Wooledge wrote: > On Tue,

Re: Mail Reader

2021-07-09 Thread Andrei POPESCU
On Jo, 08 iul 21, 19:38:36, Dan Ritter wrote: > Andrei POPESCU wrote: > > > > I can only recommend things I have reasonably recent experience with. > > Mutt's awesome. I use it many times a day. [...] > Only mutt can handle 500,000 pieces of mail in an archive in a > way that is both performa

Re: Failure to use 3840x2160 30hz with Intel 620 chipset

2021-07-09 Thread Pierre Couderc
On 7/8/21 11:34 PM, Felix Miata wrote: the PC crashes (all is black, need to power off). You should have no need of gtf or mode creation with 620 graphics. Mode creation via xrandr is an anachronism. X k