Re: its been done again. No network

2022-03-23 Thread gene heskett
On Wednesday, 23 March 2022 21:10:06 EDT Felix Miata wrote:
> gene heskett composed on 2022-03-23 20:40 (UTC-0400):
> ...
> 
> > So how do I get rid of it so I can have a net with MY default route
> > and bring it up to date?
> 
> https://wiki.debian.org/SystemdNetworkd works for my static IP
> installations, which number several hundred, minus about 5.

Maybe it does, Felix, and While I'm a diehard debian fan, if you want to 
use a pi to do something, the "fix" is in the pi versions of the OS where 
it belongs, By putting it in the bottom of /etc/dhcpdcp.conf with the 
comment immediately above it stating that its for the case of a dhcp 
failure, fill in the correct data for a static network. And restart 
networking. If you didn't muck it up typing it in, its a one stop fix. 

Copy in your local hosts file, hostname, sudo set your domainname, and 
your resolv.conf And its totally sensible. Its what to do if there is not 
a dhcp server on the local network. But that makes entirely too much 
sense, so nobody else does it. :-{>  There is one other thing about the 
pi's I like. Uptimes are from power failure to power failure, and I have 
a small ups and a 20kw standby in the back yard that delivering power in 
about 5 seconds after the lights go out. If I wasn't putzing with it, 
uptimes would be a couple years. I can't say that for any wintel box 
running debian here. 

Take care Felix, and stay well.
> --
> Evolution as taught in public schools is, like religion,
>   based on faith, not based on science.
> 
>  Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!
> 
> Felix Miata
> 
> .


Cheers, Gene Heskett.
-- 
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author, 1940)
If we desire respect for the law, we must first make the law respectable.
 - Louis D. Brandeis





Re: Under each of these scenarios, what is the neatest and simplest way to manipulate the /etc/network/interfaces file?

2022-03-23 Thread Stella Ashburne
Mon cheri

> Sent: Sunday, March 20, 2022 at 10:31 PM
> From: "David Wright" 
> To: debian-user@lists.debian.org
> Subject: Re: Under each of these scenarios, what is the neatest and simplest 
> way to manipulate the /etc/network/interfaces file?
>
> On Sat 19 Mar 2022 at 03:14:54 (+0100), Stella Ashburne wrote:
> >
> > There are instances in which my machine is connected to a mobile hotspot. 
> > And in some situations, it's connected to a smartphone via USB tethering. 
> > And when I'm in the office, I may connect it to a LAN cable.
> >
> > Below are the contents of my /etc/network/interfaces file:
> >
> > # This file describes the network interfaces available on your system
> > # and how to activate them. For more information, see interfaces(5).
> >
> > source /etc/network/interfaces.d/*
>
> I would change this line to
>
> source-directory /etc/network/interfaces.d
>
On Debian 11, the line

source /etc/network/interfaces.d/*

is correct.

>
> I would then hive off all your interface configurations into
> separate files in the directory /etc/network/interfaces.d
> using all-ASCII filenames constructed from upper/lower-case
> letters, digits, underscores, and minus-hyphens, as specified
> on the man page, but with the string ".hidden" added to the end,
> thus:
>
> myphone-tethered.hidden
> office-wired.hidden
> wifi.hidden
> hotspot.hidden
>
> and so on. Files with a dot are ignored when included by means of
> a source-directory directive.
>

On Debian 11, files with a dot are NOT ignored when the line

source /etc/network/interfaces.d/*

is present in /etc/network/interfaces

I have tried the following:

Attempt #1

When the files have the dot in /etc/network/interfaces.d/*, e.g.

lan.hidden
usb0.hidden
wlo1.hidden

username@hostname:~$ ip a
1: lo:  mtu 65536 qdisc noqueue state UNKNOWN group 
default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
   valid_lft forever preferred_lft forever
2: wlo1:  mtu 1500 qdisc noqueue state UP 
group default qlen 1000
link/ether e5:d3:a2:b9:c3:27 brd ff:ff:ff:ff:ff:ff
altname wln0s7
inet 192.168.43.51/24 brd 192.168.43.255 scope global dynamic wlo1
   valid_lft 3588sec preferred_lft 3588sec
username@hostname:~$

Attempt #2

When the files do NOT have the dot in /etc/network/interfaces.d/*, e.g.

lan
usb0
wlo1

username@hostname:~$ ip a
1: lo:  mtu 65536 qdisc noqueue state UNKNOWN group 
default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
   valid_lft forever preferred_lft forever
2: wlo1:  mtu 1500 qdisc noqueue state UP 
group default qlen 1000
link/ether e5:d3:a2:b9:c3:27 brd ff:ff:ff:ff:ff:ff
altname wln0s7
inet 192.168.43.51/24 brd 192.168.43.255 scope global dynamic wlo1
   valid_lft 3576sec preferred_lft 3576sec
username@hostname:~$

Summary: On Debian 11, files in /etc/network/interfaces.d/* do NOT require a 
DOT.

Best regards.

Stella




Re: its been done again. No network

2022-03-23 Thread gene heskett
On Wednesday, 23 March 2022 20:58:58 EDT Jeremy Ardley wrote:
> On 24/3/22 8:40 am, gene heskett wrote:
> > Greetings all;
> > 
> > Just installed a arm64 linux on a raspi4, and as near as I can tell
> > early in the game, everything seem to be working except the network.
> > I cannot get rid of a default 169.254.xx.yy route in ip a or ip r.
> > 
> > I have even renamed the /sbin/avahi-daemon to something insulting,
> > and
> > canceled its execute bits, and service networking restart about a
> > dozen times after checking the rest of the networking config, but it
> > is still there. There isn't a thing on my local network listening on
> > that address block.
> > 
> > So how do I get rid of it so I can have a net with MY default route
> > and bring it up to date?
> 
> Check if you have NetworkManager running. If so, prepare to waste a lot
> of time learning nmcli
> 
> --
> Jeremy

I just recalled that fix, its in the bottom 2 stanza's of /etc/
dhcpcd.conf, where it says if dns fails, use this. fill in the correct 
data. Restart networking. Fixed.

Cheers, Gene Heskett.
-- 
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author, 1940)
If we desire respect for the law, we must first make the law respectable.
 - Louis D. Brandeis





Re: its been done again. No network

2022-03-23 Thread Greg Wooledge
On Wed, Mar 23, 2022 at 09:02:27PM -0400, gene heskett wrote:
> Never mind, I finally remembered that /etc/dhpdcp.conf had the last word 

... because you're not. using. Debian.  Unless you customized the
installer.

Also, you misspelled the filename.  The program in question is
named "dhcpcd", which stands for "DHCP Client Daemon".  And it's a
Raspbian thing, usually.



Re: its been done again. No network

2022-03-23 Thread Felix Miata
gene heskett composed on 2022-03-23 20:40 (UTC-0400):
...
> So how do I get rid of it so I can have a net with MY default route and 
> bring it up to date?

https://wiki.debian.org/SystemdNetworkd works for my static IP installations,
which number several hundred, minus about 5.
-- 
Evolution as taught in public schools is, like religion,
based on faith, not based on science.

 Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!

Felix Miata



Re: its been done again. No network

2022-03-23 Thread gene heskett
On Wednesday, 23 March 2022 20:40:49 EDT gene heskett wrote:
> Greetings all;
> 
> Just installed a arm64 linux on a raspi4, and as near as I can tell
> early in the game, everything seem to be working except the network. I
> cannot get rid of a default 169.254.xx.yy route in ip a or ip r.
> 
> I have even renamed the /sbin/avahi-daemon to something insulting, and
> canceled its execute bits, and service networking restart about a dozen
> times after checking the rest of the networking config, but it is
> still there. There isn't a thing on my local network listening on that
> address block.
> 
> So how do I get rid of it so I can have a net with MY default route and
> bring it up to date?
> 
> Thanks all.

Never mind, I finally remembered that /etc/dhpdcp.conf had the last word 
if dns or other means failed, filled in the last two stanza's with good 
data and restarted the networking. Bingo I can ping yahoo.com.

Onward and hopefully upward.

> 
> Cheers, Gene Heskett.
> --
> "There are four boxes to be used in defense of liberty:
>  soap, ballot, jury, and ammo. Please use in that order."
> -Ed Howdershelt (Author, 1940)
> If we desire respect for the law, we must first make the law
> respectable. - Louis D. Brandeis
> 
> 
> 
> .


Cheers, Gene Heskett.
-- 
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author, 1940)
If we desire respect for the law, we must first make the law respectable.
 - Louis D. Brandeis





Re: its been done again. No network

2022-03-23 Thread Jeremy Ardley


On 24/3/22 8:40 am, gene heskett wrote:

Greetings all;

Just installed a arm64 linux on a raspi4, and as near as I can tell early
in the game, everything seem to be working except the network. I cannot
get rid of a default 169.254.xx.yy route in ip a or ip r.

I have even renamed the /sbin/avahi-daemon to something insulting, and
canceled its execute bits, and service networking restart about a dozen
times after checking the rest of the networking config, but it is still
there. There isn't a thing on my local network listening on that address
block.

So how do I get rid of it so I can have a net with MY default route and
bring it up to date?



Check if you have NetworkManager running. If so, prepare to waste a lot 
of time learning nmcli


--
Jeremy





OpenPGP_signature
Description: OpenPGP digital signature


its been done again. No network

2022-03-23 Thread gene heskett
Greetings all;

Just installed a arm64 linux on a raspi4, and as near as I can tell early 
in the game, everything seem to be working except the network. I cannot 
get rid of a default 169.254.xx.yy route in ip a or ip r.

I have even renamed the /sbin/avahi-daemon to something insulting, and 
canceled its execute bits, and service networking restart about a dozen 
times after checking the rest of the networking config, but it is still 
there. There isn't a thing on my local network listening on that address 
block.

So how do I get rid of it so I can have a net with MY default route and 
bring it up to date?

Thanks all.

Cheers, Gene Heskett.
-- 
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author, 1940)
If we desire respect for the law, we must first make the law respectable.
 - Louis D. Brandeis





Manual OpenVPN

2022-03-23 Thread Paynalton
Hola, alguien sabe donde hay un manual para instalar OpenVPN Server en
debian actualizado?

He seguido este: https://wiki.debian.org/OpenVPN

Pero me da un error porque la versión 2.4 no acepta el parámetro data-ciphers,
así que no creo que esté actualizado.

Estoy usando BullSeye

Si un ave no rompe su huevo morirá antes de nacer.
Nosotros somos el ave y el mundo es nuestro huevo.
POR LA REVOLUCIÓN DEL MUNDO

Ciudad de México


bind9 slave sending notifies

2022-03-23 Thread Jeremy Ardley

I'm using BIND 9.16.22-Debian (Extended Support Version) 

The problem is when I restart I see "sending notifies" in the log.

I have checked the configuration named.conf.local and named.conf.options 
and there is no 'allow-transfer' in the configuration.


example named.conf.local entry:

zone "lan" {
    type slave;
    file "db.lan";
    masters { 192.0.2.1; };
    allow-query {any;};
};

So is sending notifies with no-one to notify normal?

If not, how do I stop it?

--
Jeremy


OpenPGP_signature
Description: OpenPGP digital signature


Re: webcamd

2022-03-23 Thread mick crane

On 2022-03-21 21:39, Russell L. Harris wrote:

I am having only limited success configuring the Debian webcamd
package.

I wish to display images from a Logitech web cam pointing out the
window as a weathercam, uploading a new image about once a minute.  I
plan to upload the images to a subdirectory "webcam" of my weather
website, www.example-weather.org/webcam.

I am running Debian 11; but I also have machines running Debian 10 and 
Debian

9.

I would like first to get things running in Apache on localhost before
uploading to a shared host on hostgator.com.  Ideally, the image would
be on both.

The example webcamd.conf calls for a font named "clean" to write dates
on the pictures, but "fc-list" does not show "clean" installed.  I
have tried to specify "Monospace Regular" but that does not seem to
work.

My latest effort has the index_up.html and index_down.hthl displaying,
but no photo.  I also had the photo displaying without a date.

Is there a webcam application more suitable for this application?

RLH


a solution would be to composite the date over the photo with Graphics 
Magick, Image Magick.


mick


--
Key ID4BFEBB31



Re: wpa_supplicant, was Re: iwd + systemd-networkd + resolvconf wrinkles

2022-03-23 Thread Brian
On Tue 22 Mar 2022 at 23:06:08 -0500, David Wright wrote:

> On Sat 19 Mar 2022 at 10:18:49 (+1100), Charlie wrote:
> > On Fri, 18 Mar 2022 14:32:40 + Brian wrote:
> > 
> > > Regarding the installer: at present it provides an /e/n/i with wpa-*
> > > lines. Changing wpasupplicant to iwd in d-i would requir some work.
> > > No matter what the benefits of iwd are, I do not see that happening
> > > in the near future. wpasupplicant remians as useful as it always has
> > > been.
> 
> It wasn't my intention to suggest displacing /e/n/i from the d-i.
> I only mentioned it to point out (a) that installing iwd is a
> conversion process if the d-i has been run wirelessly, and (b) that
> I know next to nothing about configuring or running wpa_supplicant
> because wicd just took care of it all.

My remark was more aimed at the iwd advocates who see it as a
replacement for the supplicant. Perhaps, in time, this might
happen. I hope I have made it clear I am very happy with what
iwd provides for my resource limited machines.

> > Interesting, because I have always used wpasupplicant but since
> > Bullseye has gone stable, have had this happen quite frequently:
> > 
> > root@wilder:~# ifup wlp2s0
> > wpa_supplicant: /sbin/wpa_supplicant daemon failed to start
> > run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return
> > code 1 ifup: failed to bring up wlp2s0
> 
> It would be interesting to know why your wlp2s0 failed to come up.

Your debugging technique should help Charlie.
> 
> For one of my systems in particular, it fails because the wifi
> happens to be hard-blocked when the system boots. It's very
> simple to unblock it: just by pressing a button on the front edge
> of the keyboard. (What a design cock-up.)

I have never encountered this and haven't any way of testing. My
initial thought would be to stick with using the button.

> Unfortunately, using systemd-networkd/ifupdown/wpa_s (and
> sysv/ifupdown/wpa_s in the past), it's not clear to me
> who's responsible for cranking up the network after I've
> pressed that button.

I also haven't any clear idea. At a guess, a kernel module acer_wmi
may be involved. 'modprobe -r acer_cli' could shed some light. (BTW
wmi is Windows Management Instrumentation, I think).

-- 
Brian.



Re: force IPv6 dynamic address?

2022-03-23 Thread Tim Woodall

On Wed, 23 Mar 2022, Tim Woodall wrote:


On Wed, 23 Mar 2022, Jeremy Ardley wrote:

I have a debian workstation with a static IPv6 address mapped in DNS as 
well as dynamic addresses which change with time.


The problem I have is that when my thunderbird mail client connects to 
gmail it always uses the static IPv6 address as originator and this shows 
up in the headers of the delivered mail.


How can I make my system and/or thunderbird use the constantly changing 
dynamic IPv6 address instead?





I believe it's setting this to 2 that you want (I think there's a
setting to go in eni to do this too)

https://sysctl-explorer.net/net/ipv6/use_tempaddr/

Tim.



man interfaces

privext int
   Privacy extensions (RFC4941) (0=off, 1=assign, 2=prefer)



Re: force IPv6 dynamic address?

2022-03-23 Thread Tim Woodall

On Wed, 23 Mar 2022, Jeremy Ardley wrote:

I have a debian workstation with a static IPv6 address mapped in DNS as well 
as dynamic addresses which change with time.


The problem I have is that when my thunderbird mail client connects to gmail 
it always uses the static IPv6 address as originator and this shows up in the 
headers of the delivered mail.


How can I make my system and/or thunderbird use the constantly changing 
dynamic IPv6 address instead?





I believe it's setting this to 2 that you want (I think there's a
setting to go in eni to do this too)

https://sysctl-explorer.net/net/ipv6/use_tempaddr/

Tim.



Re: evince has died a horrible death. Sob...

2022-03-23 Thread Amn Ojee Uw

Thumb up

On 2022-03-23 11:49 a.m., Polyna-Maude Racicot-Summerside wrote:

Answer follow...

On 2022-03-11 13:11, Brian wrote:

On Fri 11 Mar 2022 at 11:28:05 -0500, gene heskett wrote:


Thats been the most complete pdf viewer I've ever used. But I just tried
to look at a doc I have looked at hundreds of times over he last years,
and it got all upset all over itself, while I was logged into that
machine with an ssh -Y login.

What its its feature complete replacement in a buster install? This
machine is bullseye, the logged into machine is buster.

I would advise an inexperienced, lazy or incompetent user to extcute
'apt search pdf' and search for "viewer" and "reader". Testing the
offerings striles me as fun.

I often see excessive and useless comment, like this one "inexperience,
lazy or incompetent user". What does this add to your otherwise useful
message ?

Don't feel like ego war here but those type of attitude doesn't make
someone ask for help again.

"feature complete"? Judge for yourself.



--
This email has been checked for viruses by AVG.
https://www.avg.com



Re: evince has died a horrible death. Sob...

2022-03-23 Thread Polyna-Maude Racicot-Summerside
Answer follow...

On 2022-03-11 13:11, Brian wrote:
> On Fri 11 Mar 2022 at 11:28:05 -0500, gene heskett wrote:
> 
>> Thats been the most complete pdf viewer I've ever used. But I just tried 
>> to look at a doc I have looked at hundreds of times over he last years, 
>> and it got all upset all over itself, while I was logged into that 
>> machine with an ssh -Y login.
>>
>> What its its feature complete replacement in a buster install? This 
>> machine is bullseye, the logged into machine is buster.
> 
> I would advise an inexperienced, lazy or incompetent user to extcute
> 'apt search pdf' and search for "viewer" and "reader". Testing the
> offerings striles me as fun.
I often see excessive and useless comment, like this one "inexperience,
lazy or incompetent user". What does this add to your otherwise useful
message ?

Don't feel like ego war here but those type of attitude doesn't make
someone ask for help again.
> 
> "feature complete"? Judge for yourself.
> 

-- 
Polyna-Maude R.-Summerside
-Be smart, Be wise, Support opensource development


OpenPGP_signature
Description: OpenPGP digital signature


Re: Package cvs2cl no more in Debian?

2022-03-23 Thread Polyna-Maude Racicot-Summerside
Hi,

On 2022-03-12 18:45, Brian wrote:
> On Sat 12 Mar 2022 at 22:41:14 +0100, Steve Keller wrote:
> 
>> On Debian stretch I have installed the cvs2cl package.  In buster
>> and bullseye it seems to be missing.  Very sad :(
> 
> Imdeed. It is very sad that
> 
>   https://tracker.debian.org/pkg/cvs2cl
> 
> is not available to you.
> 
Could I offer to maintain the package ?
Doesn't seem to be of much work to do and I believe it can be somewhat
useful for some user who'd like to have a simple way to automate from
CVS to Changelog.

-- 
Polyna-Maude R.-Summerside
-Be smart, Be wise, Support opensource development


OpenPGP_signature
Description: OpenPGP digital signature


Re: iwd + systemd-networkd + resolvconf wrinkles

2022-03-23 Thread David Wright
On Wed 23 Mar 2022 at 13:06:12 (+0100), Stella Ashburne wrote:
> From: "Brian" 
> >
> > In truth, it is not a biggie for my intended use of iwd on some
> > non-roaming machines, although it did break my /e/n/i. A couple of
> > edits fixed that.
> 
> Would you like to elaborate what stuff was broken in your /e/n/i ?

You've already presented us with a stanza:

# The primary network interface
allow-hotplug wlp7s0
iface wlp7s0 inet static
wpa-ssid JupiterRising
wpa-psk (a long string of alphanumeric characters)
address 192.168.1.99/24
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 1.1.1.1 8.8.8.8

Were you to install iwd on bullseye, udev would no longer rename
the wlan0 interface to wlp7s0, and the stanza would break. What's
unusual is that you don't have to configure iwd to run, only to
install it. The problem is caused by the mere presence of the file
/etc/systemd/network/80-iwd.link in package iwd.

Cheers,
David.



Re: Under each of these scenarios, what is the neatest and simplest way to manipulate the /etc/network/interfaces file?

2022-03-23 Thread David Wright
On Wed 23 Mar 2022 at 13:35:13 (+0100), Stella Ashburne wrote:
> From: "David Wright" 
> > >
> > > source /etc/network/interfaces.d/*
> >
> > I would change this line to
> >
> > source-directory /etc/network/interfaces.d
> >
> > (which was the default on new buster installations).
> >
> Am I right to say that the default in Debian 11's installation is simply:
> 
> source /etc/network/interfaces.d/*

We already covered that in your thread entitled "What should I put
inside the file called wlan0?" You must remember, as it created
a brief back-and-forth:

https://lists.debian.org/debian-user/2022/03/msg00026.html

Any time you forget again, you can check for yourself,
as the file is created (when necessary) by the script:
/var/lib/dpkg/info/ifupdown.postinst (q.v.).

Cheers,
David.



Re: force IPv6 dynamic address?

2022-03-23 Thread Andy Smith
Hello,

On Wed, Mar 23, 2022 at 05:11:31AM +0800, Jeremy Ardley wrote:
> How can I make my system and/or thunderbird use the constantly changing
> dynamic IPv6 address instead?

If you add your static address with a preferred_lft of 0 then it
will be marked as "deprecated" which means it will never be chosen
as a source address unless forced to be. It will still be fully
usable in all other senses.

In /etc/network/interfaces:

iface eth0 inet6 static
address 2001:db8:1:2::3
netmask 64
post-up ip addr change 2001:db8:1:2::3/64 dev $IFACE preferred_lft 0

Also, longest prefix will be selected as source address, so if you
add a /128 that will tend to be used.

The full rules for IPv6 source address selection are in RFC 6724…
which does say that temporary addresses should be preferred by
default, so I'm not sure why that's not happening for you.

It may depend on the value of the sysctl
/proc/sys/net/ipv6/conf/*/use_tempaddr. If that is 1 then temporary
addresses will be available but not forced to be used. >1 means they
are preferred, so it might be that.

Finally, you can also override it with a route entry:

# ip -6 route change default src 2001:db8:1:2::3

or for a specific net

# ip route add 2001:db8:99::/48 via  src 
2001:db8:1:2::3

Cheers,
Andy

-- 
https://bitfolk.com/ -- No-nonsense VPS hosting



Re: intel-media-va-driver segmentation fault in unstable

2022-03-23 Thread Miguel A. Vallejo
Karthik () wrote:
>
> Same here

I took a look at the syslog and found something:

Mar 23 13:21:51 kernel: [  347.474189] vlc[2625]: segfault at
30200 ip 7f75b88659ae sp 7f75 b8d23b00 error 4 in
libigdgmm.so.12.1.0[7f75b87fc000+78000]
Mar 23 13:21:51 kernel: [  347.474197] Code: ff 4c 8b 55 c8 31 c0 b9
40 00 00 00 4c 8b 45 b8 4c 89 fe 49 8d 92 b0 33 00 00 48 89 d7 f3 41
0f 6f 00 ba c4 06 00 00 f3 48 ab <49> 8b 06 49 8d 7a 44 41 c7 82 b8 35
00 00 0a 00 00 00 f3 41 0f 6f
Mar 23 13:23:11 kernel: [  427.398576] vainfo[2646]: segfault at
30200 ip 7fc7348059ae sp 7 ffd46cdc950 error 4 in
libigdgmm.so.12.1.0[7fc73479c000+78000]
Mar 23 13:23:11 kernel: [  427.398584] Code: ff 4c 8b 55 c8 31 c0 b9
40 00 00 00 4c 8b 45 b8 4c 89 fe 49 8d 92 b0 33 00 00 48 89 d7 f3 41
0f 6f 00 ba c4 06 00 00 f3 48 ab <49> 8b 06 49 8d 7a 44 41 c7 82 b8 35
00 00 0a 00 00 00 f3 41 0f 6f

So the culprit is libigdgmm. With this info and a quick search I found this:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1007992

A downgrade of libigdgmm12 (both amd64 and i386) to a previous version
fixes it temporarily



Re: intel-media-va-driver segmentation fault in unstable

2022-03-23 Thread Karthik
On Wed, Mar 23, 2022, 5:54 PM Miguel A. Vallejo  wrote:

> Hello!
>
> Since the lass update last night in Sid / Unstable, I'm getting
> segmentation faults from some programs, like VLC:
>
Same here

>
> vlc video.mkv
> VLC media player 3.0.17.3 Vetinari (revision 3.0.13-8-g41878ff4f2)
> [55c0d2e29460] main libvlc: Running vlc with the default
> interface. Use 'cvlc' to use vlc without interface.
> [7f758c004380] gl gl: Initialized libplacebo v4.192.1 (API v192)
> libva info: VA-API version 1.14.0
> libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
> libva info: Found init function __vaDriverInit_1_14
> Segmentation fault


> Every program using libva drivers segfaults like vlc,mpv

Current solution is to disable hardware acceleration in them
>
> Even utilities like vainfo fails:
>
> vainfo
> libva info: VA-API version 1.14.0
> libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
> libva info: Found init function __vaDriverInit_1_14
> Segmentation fault
>
>
> Any ideas? Thanks in advance


>
> Chromium also disabled GPU Acceleration due to gpu process crash


> This can be confirmed by going into

chrome://gpu


> Im thinking something messed up with nvidia driver update in optimus
> systems

Are you using optimus system?


Re: Under each of these scenarios, what is the neatest and simplest way to manipulate the /etc/network/interfaces file?

2022-03-23 Thread Stella Ashburne
Mon cheri

Your instructions and explanations are so clear and concise that even a 
beginner (what's the urban slang for it? Is it n00b?) is able to follow them 
without problems.

> Sent: Sunday, March 20, 2022 at 10:31 PM
> From: "David Wright" 
> To: debian-user@lists.debian.org
> Subject: Re: Under each of these scenarios, what is the neatest and simplest 
> way to manipulate the /etc/network/interfaces file?
>
> >
> > source /etc/network/interfaces.d/*
>
> I would change this line to
>
> source-directory /etc/network/interfaces.d
>
> (which was the default on new buster installations).
>
Am I right to say that the default in Debian 11's installation is simply:

source /etc/network/interfaces.d/*

>
> The thing to remember (and so many don't) is that the /e/n/i
> files are retaining the active network configuration, and
> need to be kept in place until you have downed the interface.
> Only /then/ should you make changes to the files.
>
> Don't do what works with many other daemons, which is to change
> the configuration files first, and then try to "restart" networking:
> ifdown followed by ifup. That confuses it.
>
The above is very instructive. I really appreciate it. Thanks.

Best wishes

Stella



intel-media-va-driver segmentation fault in unstable

2022-03-23 Thread Miguel A. Vallejo
Hello!

Since the lass update last night in Sid / Unstable, I'm getting
segmentation faults from some programs, like VLC:

vlc video.mkv
VLC media player 3.0.17.3 Vetinari (revision 3.0.13-8-g41878ff4f2)
[55c0d2e29460] main libvlc: Running vlc with the default
interface. Use 'cvlc' to use vlc without interface.
[7f758c004380] gl gl: Initialized libplacebo v4.192.1 (API v192)
libva info: VA-API version 1.14.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_14
Segmentation fault


Even utilities like vainfo fails:

vainfo
libva info: VA-API version 1.14.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_14
Segmentation fault


Any ideas? Thanks in advance



Re: iwd + systemd-networkd + resolvconf wrinkles

2022-03-23 Thread Stella Ashburne
Mon cheri

> Sent: Sunday, March 20, 2022 at 2:40 AM
> From: "Brian" 
> To: debian-user@lists.debian.org
> Subject: Re: iwd + systemd-networkd + resolvconf wrinkles
>
> In truth, it is not a biggie for my intended use of iwd on some
> non-roaming machines, although it did break my /e/n/i. A couple of
> edits fixed that.
>

Would you like to elaborate what stuff was broken in your /e/n/i ?

Best regards.

Stella



Re: force IPv6 dynamic address?

2022-03-23 Thread Georgi Naplatanov
On 3/22/22 23:11, Jeremy Ardley wrote:
> I have a debian workstation with a static IPv6 address mapped in DNS as
> well as dynamic addresses which change with time.
> 
> The problem I have is that when my thunderbird mail client connects to
> gmail it always uses the static IPv6 address as originator and this
> shows up in the headers of the delivered mail.
> 
> How can I make my system and/or thunderbird use the constantly changing
> dynamic IPv6 address instead?
> 


Hi Jeremy,

I don't know whether you use Network Manager or not, but on IPv6 tab
there is a field "Privacy" with the following options:

 - Default
 - Disabled
 - Enabled (prefer public address)
 - Enabled (prefer temporary address).

Maybe you have to choose the last option.

Kind regards
Georgi



Re: swap maxed out when plenty of RAM available

2022-03-23 Thread Charles Kroeger
I use

dphys-swapfile

this is a system service that auto configures a swap at boot without
requiring a static partition.

it computes the size of an optimal swap file and or resizes an existing
swap file if necessary. it mounts, dismounts, and deletes the swap if not
wanted. it doesn't dynamically resize swap during runtime.

-- 
pa'lante