Re: what's the right way to resolve localhost's IPs

2023-03-23 Thread Nicolas George
Jeremy Ardley (12023-03-23): > On your second topic I don't usually run firewalls on my cloud severs. But surely on a server the network configuration is static, including the firewall rules, isn't it? (Please imagine this mail set up on the Anakin/Padme meme template.) Regards, -- Nicolas G

Re: what's the right way to resolve localhost's IPs

2023-03-23 Thread Jeremy Ardley
On 23/3/23 15:42, Nicolas George wrote: Jeremy Ardley (12023-03-23): On your second topic I don't usually run firewalls on my cloud severs. But surely on a server the network configuration is static, including the firewall rules, isn't it? On AWS the firewall rules are set by AWS themselves,

ssh-add after graphical login

2023-03-23 Thread Yassine Chaouche
Hello all, I'd like something to run ssh-add right after I login to my desktop (KDE). ssh-add needs to prompt me for my passphrase, and doesn't need any privileges. What are my options? Best, -- yassine -- sysadm +213-779 06 06 23 http://about.me/ychaouche Looking for side gigs.

Bullseye (Debian11) doesn't renew dhcp lease

2023-03-23 Thread hans
Hi, a pc with a plain vanilla Debian11 doesn't renew the dhcp lease automatically, I have to do it per hand (systemctl stop ifup@$1.service && systemctl start ifup@$1.service). The "/var/lib/dhcp/dhclient.lan0.leases" file: === default-dui

Re: good freedom-respecting computer for running Debian

2023-03-23 Thread Lionel Élie Mamane
On Wed, Mar 22, 2023 at 06:05:48PM -0500, Nate Bargmann wrote: > * On 2023 22 Mar 14:06 -0500, Lionel Élie Mamane wrote: >> Well, I was trying to see if one could get reasonable hardware that >> doesn't have untrustable stuff like Intel ME and AMD PSP, (...) > I understand. I know there was a lo

Re: what's the right way to resolve localhost's IPs

2023-03-23 Thread Lee
On 3/23/23, Nicolas George wrote: > Jeremy Ardley (12023-03-23): >> On your second topic I don't usually run firewalls on my cloud severs. > > But surely on a server the network configuration is static, including > the firewall rules, isn't it? Consider the IP addressing info coming from DHCP. T

Re: ssh-add after graphical login

2023-03-23 Thread Greg Wooledge
On Thu, Mar 23, 2023 at 09:42:53AM +0100, Yassine Chaouche wrote: > I'd like something to run ssh-add right after I login to my desktop > (KDE). > ssh-add needs to prompt me for my passphrase, > and doesn't need any privileges. > > What are my options? On Debian you can create a ~/.xsessionrc fil

Re: ssh-add after graphical login

2023-03-23 Thread basti
The ssh config inside ~/.ssh/ has an option 'AddKeysToAgent'. Why you don't use this? For example: Host * ControlMaster auto ControlPath /run/user/%i/%r@%h-%p IdentityFile ~/.ssh/id_rsa ControlPersist 3600 User root AddKeysToAgent yes See man ssh_config On 23.03.23 09:42, Yas

Re: Bullseye (Debian11) doesn't renew dhcp lease

2023-03-23 Thread hans
On 23.03.2023 09:36, h...@hanswkraus.com wrote: Hi, a pc with a plain vanilla Debian11 doesn't renew the dhcp lease automatically, I have to do it per hand (systemctl stop ifup@$1.service && systemctl start ifup@$1.service). The "/var/lib/dhcp/dhclient.lan0.leases" file: =

Re: ssh-add after graphical login

2023-03-23 Thread Michel Verdier
Le 23 mars 2023 Greg Wooledge a écrit : > The only part I'm unsure of, for you, is how to ensure that this runs > *after* your ssh agent has already been started. I don't know how ssh > agent startup is handled with Display Manager logins, since I don't use > a DM, and I just start ssh-agent myse

Re: ssh-add after graphical login

2023-03-23 Thread Yassine Chaouche
Le 3/23/23 à 12:56, basti a écrit : The ssh config inside ~/.ssh/ has an option 'AddKeysToAgent'. Why you don't use this? For example: Host *    ControlMaster auto    ControlPath /run/user/%i/%r@%h-%p    IdentityFile ~/.ssh/id_rsa    ControlPersist 3600    User root    AddKeysToAgent yes

Re: ssh-add after graphical login

2023-03-23 Thread Yassine Chaouche
Le 3/23/23 à 12:24, Greg Wooledge a écrit : ssh-add Ah! this is what I was missing! the whole problem was how to ssh-add in a graphical way, now that I have found a way, I can maybe put it in a script inside the XDG Autostart directory. This might leave more room for the ssh-agent to start

Re: ssh-add after graphical login

2023-03-23 Thread Jeffrey Walton
On Thu, Mar 23, 2023 at 4:43 AM Yassine Chaouche wrote: > > I'd like something to run ssh-add right after I login to my desktop > (KDE). > ssh-add needs to prompt me for my passphrase, > and doesn't need any privileges. > > What are my options? You can remove the passphrase from the key. Then you

Re: ssh-add after graphical login

2023-03-23 Thread Greg Wooledge
On Thu, Mar 23, 2023 at 08:53:48AM -0400, Jeffrey Walton wrote: > On Thu, Mar 23, 2023 at 4:43 AM Yassine Chaouche > wrote: > > > > I'd like something to run ssh-add right after I login to my desktop > > (KDE). > > ssh-add needs to prompt me for my passphrase, > > and doesn't need any privileges.

Re: ssh-add after graphical login

2023-03-23 Thread Jeffrey Walton
On Thu, Mar 23, 2023 at 8:57 AM Greg Wooledge wrote: > > On Thu, Mar 23, 2023 at 08:53:48AM -0400, Jeffrey Walton wrote: > > On Thu, Mar 23, 2023 at 4:43 AM Yassine Chaouche > > wrote: > > > > > > I'd like something to run ssh-add right after I login to my desktop > > > (KDE). > > > ssh-add needs

Re: nvidia package wrong documentation?

2023-03-23 Thread Vincent Lefevre
On 2023-03-22 10:50:30 +0100, Hans wrote: > What I believe is, that the documentation from NVidia might be wrong > and Nvidia told wrong, to say 390xx is for NVS4200. I don't know for your case, but there are inconsistencies in the Nvidia pages. For instance, for Quadro K610M, the 470.161.03 page

Re: Boot Errors

2023-03-23 Thread Toni Casueps
When you get the "invalid argument" error do you see something in the output of "dmesg"? Can you try to mount it from another distro live-USB or from the Debian installer rescue mode? Enviado desde Outlook Mobile From: Michael Lee Sent: T

Re: ssh-add after graphical login

2023-03-23 Thread Vincent Lefevre
On 2023-03-23 09:42:53 +0100, Yassine Chaouche wrote: > I'd like something to run ssh-add right after I login to my desktop > (KDE). > ssh-add needs to prompt me for my passphrase, > and doesn't need any privileges. > > What are my options? FYI, with zsh, I'm using wrappers so that I don't need t

package name just before power off

2023-03-23 Thread John
I get an error message which is absolutely the last thing before poweroff that is NOT ever reported in kern.log nor by dmesg. It reads like this: 48.255417 DMAR: DRHD: handling fault status reg 2 48.255457 DMR: [DMA Read] request device [00:17.0] PASID fault addr aboe9000 [fault reason

Re: package name just before power off

2023-03-23 Thread The Wanderer
On 2023-03-23 at 10:50, John wrote: > I get an error message which is absolutely the last thing before > poweroff that is NOT ever reported in kern.log nor by dmesg. Typically, the very last messages from before power-off would be expected to come from the kernel, as it should be the last thing s

Re: package name just before power off

2023-03-23 Thread Greg Wooledge
On Thu, Mar 23, 2023 at 10:50:48AM -0400, John wrote: > I get an error message which is absolutely the last thing before poweroff > that is NOT ever reported in kern.log nor by dmesg. > > It reads like this: > 48.255417 DMAR: DRHD: handling fault status reg 2 > 48.255457 DMR: [DMA Read] request

Re: Debian Jessie on AWS EC2

2023-03-23 Thread Janne Lauros
Hi! It seems to be possible to download it locally ( https://rhinosecuritylabs.com/aws/exploring-aws-ebs-snapshots/). First I thought it would not be as it is not an option in web console. Thanks for the idea. BR Janne On Wed, Mar 22, 2023 at 5:56 PM Jeremy Hendricks wrote: > Are you able to

Re: ssh-add after graphical login

2023-03-23 Thread Erwan David
Le 23/03/2023 à 09:42, Yassine Chaouche a écrit : Hello all, I'd like something to run ssh-add right after I login to my desktop (KDE). ssh-add needs to prompt me for my passphrase, and doesn't need any privileges. What are my options? Best, I  do this way : I create a shell script ~/bin/s

Re: ID problem: "the nouveau driver" (was: nvidia package wrong documentation?)

2023-03-23 Thread Felix Miata
Vincent Lefevre composed on 2023-03-23 14:48 (UTC+0100): > On 2023-03-22 10:50:30 +0100, Hans wrote: >> Oh, before someone tells: I do NOT want to use nouveau! > Though I would prefer free software, nouveau is not usable for me, > in particular with my laptop. Remember... > https://lists.debi

Re: exim failure

2023-03-23 Thread peter
Header lines not handled by Web interface. In-reply-to: References: <5674e986a67af53a04b27f08cd161...@easthope.ca> From: David Wright Date: Wed, 22 Mar 2023 17:06:20 -0500 What are the contents of /etc/exim4/update-exim4.conf.conf, the configuration file? # /etc/exim4/update-exim4

differences between hwclock <-> date due to time zone issues? ...

2023-03-23 Thread Albretch Mueller
I am using this (yes, visually cr@ppy ;-)) code snippet to set back the time 5 hours. hwclock tells me it worked fine but the terminal windows opened before and after running hwclock still give me the "old" time setting? _HRS_PM=-5 ### # https://stackoverflow.com/questions/1092631/get-current-t

Re: differences between hwclock <-> date due to time zone issues? ...

2023-03-23 Thread Stefan Monnier
> I am using this (yes, visually cr@ppy ;-)) code snippet to set back > the time 5 hours. hwclock tells me it worked fine but the terminal > windows opened before and after running hwclock still give me the > "old" time setting? The hardware clock is an "external" device which the Linux kernel ty

Re: differences between hwclock <-> date due to time zone issues? ...

2023-03-23 Thread Cindy Sue Causey
On 3/23/23, Albretch Mueller wrote: > I am using this (yes, visually cr@ppy ;-)) code snippet to set back > the time 5 hours. hwclock tells me it worked fine but the terminal > windows opened before and after running hwclock still give me the > "old" time setting? > > _HRS_PM=-5 > > ### > # > htt

Re: differences between hwclock <-> date due to time zone issues? ...

2023-03-23 Thread Cindy Sue Causey
On 3/23/23, Cindy Sue Causey wrote: > On 3/23/23, Albretch Mueller wrote: >> I am using this (yes, visually cr@ppy ;-)) code snippet to set back >> the time 5 hours. hwclock tells me it worked fine but the terminal >> windows opened before and after running hwclock still give me the >> "old" tim

Re: differences between hwclock <-> date due to time zone issues? ...

2023-03-23 Thread David Wright
On Thu 23 Mar 2023 at 21:41:40 (+), Albretch Mueller wrote: > I am using this (yes, visually cr@ppy ;-)) code snippet to set back > the time 5 hours. hwclock tells me it worked fine but the terminal > windows opened before and after running hwclock still give me the > "old" time setting? You'

Re: ID problem: "the nouveau driver" (was: nvidia package wrong documentation?)

2023-03-23 Thread Vincent Lefevre
On 2023-03-23 13:38:05 -0400, Felix Miata wrote: > It could be the exhibition of ignorance represented by the above > quote leads triagers and developers to ignore many problem reports. > There is no such thing as "the nouveau driver" in Debian: This is not true. From old Xorg logs: [194415.365]

Re: ID problem: "the nouveau driver"

2023-03-23 Thread Felix Miata
Vincent Lefevre composed on 2023-03-24 03:57 (UTC+0100): > On 2023-03-23 13:38:05 -0400, Felix Miata wrote: >> It could be the exhibition of ignorance represented by the above >> quote leads triagers and developers to ignore many problem reports. >> There is no such thing as "the nouveau driver"