Re: Questions Python

2022-08-30 Thread Marc Chantreux
salut Pierre, On Tue, Aug 30, 2022 at 07:31:58PM +0200, Pierre ESTREM wrote: >   widget = master.focus_get() >    print(widget()) # Aucun retour vraiment: je t'encourage à reposer la question sur le forum de l'afpy. * ce tu trouveras des gens plus motivés et connaisseurs pour répondre à cette

Re: libdbi-perl broken?

2022-08-30 Thread tomas
On Tue, Aug 30, 2022 at 08:16:12PM -0700, Porter Smith wrote: > Jeremy, > > Have you tried to completely wipe the hard drive that your using in the > machine mentioned in the post. This of course would intail a through backup > of all important data sets. > > To nuke your stove I would like

Re: libdbi-perl broken?

2022-08-30 Thread Jeremy Ardley
On 31/8/22 11:11 am, Greg Wooledge wrote: apt-cache policy libdbi-perl perlapi-5.28.1 On Debian 11, libdbi-perl should depend on perlapi-5.32.0 not perlapi-5.28.1 so I suspect you've got the wrong libdbi-perl somehow. It would also help if you showed the full error message, instead of only a

Re: libdbi-perl broken?

2022-08-30 Thread Porter Smith
Jeremy, Have you tried to completely wipe the hard drive that your using in the machine mentioned in the post. This of course would intail a through backup of all important data sets. To nuke your stove I would like to recommend dban. On August 30, 2022 8:03:29 PM PDT, Jeremy Ardley

Re: libdbi-perl broken?

2022-08-30 Thread Greg Wooledge
On Wed, Aug 31, 2022 at 11:03:29AM +0800, Jeremy Ardley wrote: > I am install a VM for a LEMP server using the latest ISO > debian-11.4.0-amd64-DVD-1.iso > The following packages have unmet dependencies: >  libdbi-perl : Depends: perlapi-5.28.1 apt-cache policy libdbi-perl perlapi-5.28.1 On

libdbi-perl broken?

2022-08-30 Thread Jeremy Ardley
I am install a VM for a LEMP server using the latest ISO debian-11.4.0-amd64-DVD-1.iso The problem is installing mariadb (after installing nginx and php-fpm and doing apt update and apt upgrade) sudo apt install default-mysql-server ... The following packages have unmet dependencies:  

Re: chromium: "Your browser is managed"

2022-08-30 Thread The Wanderer
On 2022-08-30 at 20:18, Jeremy Ardley wrote: > On 31/8/22 7:36 am, Jon Leonard wrote: > >> On Tue, Aug 30, 2022 at 04:27:09PM -0700, L L wrote: >> >>> I'm on bullseye, and installed chromium from the bullseye repos. >>> In Chromium I get the message that the browser is "managed by >>> your

Re: networking.service: start operation timed out [SOLVED]

2022-08-30 Thread Greg Wooledge
On Wed, Aug 31, 2022 at 08:49:29AM +0800, Jeremy Ardley wrote: > One of my problems with systemd is the that name resolution is by default > done by resolved. Not in Debian. unicorn:~$ systemctl status systemd-resolved ● systemd-resolved.service - Network Name Resolution Loaded: loaded

Re: networking.service: start operation timed out [SOLVED]

2022-08-30 Thread Jeremy Ardley
On 30/8/22 9:56 am, Ross Boylan wrote: Now everything just works. Thanks again to everyone. There are probably some general lessons, though I'm not sure what they are. Clearly the systemd semantics tripped me up; it's kind of an odd beast. I understand one of its major goals was to allow

Re: chromium: "Your browser is managed"

2022-08-30 Thread Jeremy Ardley
On 31/8/22 7:36 am, Jon Leonard wrote: On Tue, Aug 30, 2022 at 04:27:09PM -0700, L L wrote: I'm on bullseye, and installed chromium from the bullseye repos. In Chromium I get the message that the browser is "managed by your organization." I didn't do any special setup for work or school. Is

Re: chromium: "Your browser is managed"

2022-08-30 Thread Jon Leonard
On Tue, Aug 30, 2022 at 04:27:09PM -0700, L L wrote: > I'm on bullseye, and installed chromium from the bullseye repos. In > Chromium I get the message that the browser is "managed by your > organization." I didn't do any special setup for work or school. Is the > management part of the Debian

chromium: "Your browser is managed"

2022-08-30 Thread L L
I'm on bullseye, and installed chromium from the bullseye repos. In Chromium I get the message that the browser is "managed by your organization." I didn't do any special setup for work or school. Is the management part of the Debian packaging, or is something sketch going on?

Re: Bug - remote DNS monitoring

2022-08-30 Thread Casey Deccio
> On Aug 30, 2022, at 1:40 PM, Nicholas Geovanis wrote: > > When you run check_dns by hand on Host B, you don't say who you are logged-in > as. That can make a difference. Nagios runs its scripts in a known > environment which may be different than you expect. > Thanks for the question. I

Re: Bug - remote DNS monitoring

2022-08-30 Thread Nicholas Geovanis
On Tue, Aug 30, 2022, 2:13 PM Casey Deccio wrote: > Hi all, > > I am having trouble tracking down a bug in my monitoring setup. It all > happened when I upgraded the monitored host (host B in my example below) to > bullseye. Note that Host A is also running bullseye, but the problem > didn't

Re: spamhaus spamassassin-dqs

2022-08-30 Thread Paul van der Vlis
Hoi Gijs, Op 30-08-2022 om 17:56 schreef Gijs Hillenius: Ik geef een update, met een nieuw onderwerp-regel. Als het te lang is, excuses! Mijn kleine server - Debian stable - draait onder meer Exim en Spamassassin. Enige tijd terug begon Spamhuis aangeroepen via Exim mail te bouncen van onder

ledger, libboost and python3.10 in testing?

2022-08-30 Thread Boyan Penkov
Hello folks, In testing, ledger returns: ``` ledger: error while loading shared libraries: libboost_python310.so.1.74.0: cannot open shared object file: No such file or directory ``` Do other folks see this? Cheers! -- Boyan Penkov

Bug - remote DNS monitoring

2022-08-30 Thread Casey Deccio
Hi all, I am having trouble tracking down a bug in my monitoring setup. It all happened when I upgraded the monitored host (host B in my example below) to bullseye. Note that Host A is also running bullseye, but the problem didn't show itself until Host B was upgraded. Here is the setup:

Re: Questions Python

2022-08-30 Thread Pierre ESTREM
Bonjour, La variable "widget" reçoit (pointe au sens de  C ?) l'objet qui a le focus (à ce stade je ne sais pas quel objet aurait ce focus). """ Mon code #!/usr/bin/env python3 # coding: utf-8  from tkinter import * from tkinter.ttk import * import os master = Tk() def focus(event):  

Re: Questions Python

2022-08-30 Thread Pierre ESTREM
Bonjour JF et le Monde, Effectivement en Python3 il me fallait encadrer "dir" avec des parenthèses. On obtient bien une liste des propriétés et méthodes de la classe passée en paramètre de "dir". > Pour le widget, cela dépendpeut-être de sa nature; as-tu essayé: >   print (widget()) Avec

spamhaus spamassassin-dqs

2022-08-30 Thread Gijs Hillenius
Ik geef een update, met een nieuw onderwerp-regel. Als het te lang is, excuses! Mijn kleine server - Debian stable - draait onder meer Exim en Spamassassin. Enige tijd terug begon Spamhuis aangeroepen via Exim mail te bouncen van onder meer een grote internetzoekmachine, een

Subject: OT: for posterity: iproute -- dos program by David F. Mischler: (was: CVE security vulnerabilities, versions and ... )

2022-08-30 Thread rhkramer
On Wednesday, August 10, 2022 08:55:20 AM Dan Ritter wrote: > rhkra...@gmail.com wrote: > > I.e., if a computer on the LAN contacted a computer outside the LAN, NAT > > would allow incoming data from that external computer, but not allow > > incoming data from other external computers. > > That's

Re: Error dirvish-expire bug #434334 : cannot open config file: /*/summary

2022-08-30 Thread Camaleón
El 2022-08-30 a las 13:40 +0200, Sysadmin atlanTTic escribió: Buf... no veo nada. Todo el cuerpo del correo está en formato multipart/mixed y ni el mailcap de Mutt lo puede reconocer. > He intentado encontrar una solución sobre este bug de Debian

Re: Questions Python

2022-08-30 Thread Jean-François Colas
Bonjour Pierre, Avec Python 3, il faudra plutôt écrire: print (dir (Canvas)) La syntaxe que tu utilises pourrait être valide avec Python 2, en fonction de ce qu'est Canvas. Pour le widget, cela dépendpeut-être de sa nature; as-tu essayé: print (widget()) J.-F. Le 29/08/2022 à 23:14,

Re: Apprendre à sécuriser un réseau domestique

2022-08-30 Thread Erwann Le Bras
un portable  ou un téléphone en wifi devra obligatoirement passer par le VPN pour accéder à une ressource interne ça veut dire que t'as pas de TV ou Hifi connectée en filaire ? f. bonjour Si, la TV est connectée en filaire au serveur multimédia (Universal Media Server) du serveur qui

Error dirvish-expire bug #434334 : cannot open config file: /*/summary

2022-08-30 Thread Sysadmin atlanTTic
<<< text/html; charset=UTF-8: Unrecognized >>> OpenPGP_0xE27B2F86F273016E.asc Description: OpenPGP public key OpenPGP_signature Description: OpenPGP digital signature

Re: Questions Python

2022-08-30 Thread Marc Chantreux
Bonjour Pierre, > Pour obtenir une liste des méthodes d'un objet de classe Canvas, je lis > qu'on peut exécuter : > print dir (Canvas()) c'est de la syntaxe python2 (ce qui me fait me demander quelle doc. tu lis: vraiment, si tu n'as pas de code historique à gérer, oublie python2). > J'obtiens

Re: [OT] Debian decide sobre su política de paquetes firmware «non-free»

2022-08-30 Thread fernando sainz
El mar, 30 ago 2022 a las 10:22, Eduardo Jorge Gil Michelena (< egi...@yahoo.com.ar>) escribió: > El lunes, 29 de agosto de 2022 04:10:01 ART, Camaleón > escribió: > > > Me cuesta ver algo bueno en recomendar y promover software propietario, > > la verdad :-/ > > > > ¹Lo que se debate ahora en

Re: Questions Python

2022-08-30 Thread Yahoo
Bonjour, pour lister les méthodes d'une "class" en python3 il faut mettre dir dans les parenthèses print(dir(Canvas)) Cdt Loïc Le 29/08/2022 à 23:14, Pierre ESTREM a écrit : Bonjour la liste, Dans mon apprentissage de Python, je progresse et sèche sur des points. Pour obtenir une liste

Re: [OT] Debian decide sobre su política de paquetes firmware «non-free»

2022-08-30 Thread Eduardo Jorge Gil Michelena
El lunes, 29 de agosto de 2022 04:10:01 ART, Camaleón escribió: > Me cuesta ver algo bueno en recomendar y promover software propietario, > la verdad :-/ > > ¹Lo que se debate ahora en Debian está relacionado exclusivamente con > el código firmware, no con programas o controladores

Re: Questions Python

2022-08-30 Thread Sébastien NOBILI
Bonjour, (Réponse partielle) Le 2022-08-29 23:14, Pierre ESTREM a écrit : Pour obtenir une liste des méthodes d'un objet de classe Canvas, je lis qu'on peut exécuter :   print dir (Canvas()) En Python 3 il faut mettre des parenthèses à "print". Ça n'est pas ça ton erreur ? Sébastien

Re: Error con claves repositorios

2022-08-30 Thread Camaleón
El 2022-08-29 a las 09:57 -0400, Carlos Alberto Viur Diaz escribió: (...) > root@debian:/home/cviur# sudo apt-get update > Err:4 https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/bullseye pgadmin4 > InRelease > Las firmas siguientes no se pudieron verificar porque su clave pública no > está