Issues with veb/vport and vlan interactions

2021-12-25 Thread Simon Baker
Hi, Struggling a bit debugging something, and hoping someone can point me in the right direction. I’ve got 4 physical intel nics, all configured as part of a veb bridge. The veb bridge itself has two vports attached, one with an address and one without: cat /etc/hostname.vport0

Re: Wrong opacity in picom

2021-12-25 Thread Samarul Meu
dum., 26 dec. 2021, 03:05 Erling Westenvik a scris: > On Sat, Dec 25, 2021 at 08:32:28PM +0200, Samarul Meu wrote: > > I am trying to customize my cwm using picom for some tweakings. > > The problem is when I try to setup opacity for active and inactive > windows. > > > > This is my relevant

Re: Wrong opacity in picom

2021-12-25 Thread Erling Westenvik
On Sat, Dec 25, 2021 at 08:32:28PM +0200, Samarul Meu wrote: > I am trying to customize my cwm using picom for some tweakings. > The problem is when I try to setup opacity for active and inactive windows. > > This is my relevant config section: > > inactive-opacity = .5; >

Issues with veb/vport and vlan interactions

2021-12-25 Thread Simon Baker
Hi, Struggling a bit debugging something, and hoping someone can point me in the right direction. I’ve got 4 physical intel nics, all configured as part of a veb bridge. The veb bridge itself has two vports attached, one with an address and one without: cat /etc/hostname.vport0

Wrong opacity in picom

2021-12-25 Thread Samarul Meu
I am trying to customize my cwm using picom for some tweakings. The problem is when I try to setup opacity for active and inactive windows. This is my relevant config section: inactive-opacity = .5; inactive-opacity-override = false; active-opacity = .9; inactive-dim = 0.0; I am using Xterm,

Re: acpibat confusion

2021-12-25 Thread Theo de Raadt
In acpibat_notify(), if acpibat_getbst() or acpibat_getbix() return some sort of silent failure, such an error will be ignored and the acpibat_refresh() will reprocess the same data to export to sensors. In mosts cases replaying the same data will result in the same sensors, but maybe some

acpibat confusion

2021-12-25 Thread Jan Stary
This is current/amd64 on a Thinkpad T410 (dmesg below). I am reading the cpu temperature and the battery charge periodically from sysctl hw.sensors.cpu0.temp0 sysctl hw.sensors.acpibat0.amphour3 and keeping a simple log (timestamp, temp, charge - see below). It seems that the

Re: how to reload date from ntpd

2021-12-25 Thread Theo de Raadt
ntpd is started early because there are services that work better with accurate time. In most cases, ntpd will very quickly build accurate clock, and those services run better. In some cases, people build situations which challenge ntpd's fast startup. Especially broken networks. Because this

Re: Is fw_update documentation outdated?

2021-12-25 Thread Ingo Schwarze
Hi Alexander, Alexander wrote on Sat, Dec 25, 2021 at 04:07:07PM +: > I just wanted to check for new firmware versions: > > $ fw_update -n > fw_update: unknown option -- -n > usage: fw_update [-d | -D] [-av] [-p path] [driver | file ...] > > This used to work /usr/sbin/fw_update used to

Re: Is fw_update documentation outdated?

2021-12-25 Thread Theo de Raadt
fw_update is being replaced with a new program, and this is being tested in snapshots to ensure we have coverage all all circumstances. The new program is capable of updating firmwares while in the bsd.rd install/upgrade phase. This means some firmwares (specially *drm firmwares) will get

Re: Is fw_update documentation outdated?

2021-12-25 Thread Crystal Kolipe
On Sat, Dec 25, 2021 at 04:07:07PM +, Alexander wrote: > at https://cvsweb.openbsd.org/src/usr.sbin/fw_update/ which has been in > the attic for the last 6 years. > Where do I actually find the version history of the fw_update that is > installed on my system in CVSweb? fw_update is a hard

Is fw_update documentation outdated?

2021-12-25 Thread Alexander
Hi all, I just wanted to check for new firmware versions: $ fw_update -n fw_update: unknown option -- -n usage: fw_update [-d | -D] [-av] [-p path] [driver | file ...] This used to work and is still documented like this in $ man 8 fw_update [...] -n Dry run. Do not actually install

Re: ntpd constraints configured but none available

2021-12-25 Thread Otto Moerbeek
On Sat, Dec 25, 2021 at 11:47:21AM +0100, Damien Thiriet wrote: > Hi misc@, > > > I discovered today that date output had some 12h20' lap. > I began to read my messages log and found those outputs > > valencay:log $grep ntp messages > Dec 22 19:56:40 valencay ntpd[49705]: constraints

Re: Disk partition not recognized

2021-12-25 Thread Crystal Kolipe
On Thu, Dec 23, 2021 at 08:11:31PM -0300, Crystal Kolipe wrote: > On Thu, Dec 23, 2021 at 07:28:19PM -0300, Crystal Kolipe wrote: > > On Thu, Dec 23, 2021 at 04:15:50PM -0500, Rob Whitlock wrote: > > > On Thu, Dec 23, 2021 at 3:24 PM Crystal Kolipe > > > > > > wrote: > > > > > > > Again, there

Re: how to reload date from ntpd

2021-12-25 Thread Stuart Henderson
On 2021/12/25 08:39, Crystal Kolipe wrote: > On Sat, Dec 25, 2021 at 11:09:32AM -, Stuart Henderson wrote: > > On 2021-12-22, ue...@danwin1210.de wrote: > > > How can I reload date from ntpd after boot? > > > > rcctl stop ntpd > > rdate $timeserver > > rcctl start ntpd > > Note that rdate

Re: how to reload date from ntpd

2021-12-25 Thread Crystal Kolipe
On Sat, Dec 25, 2021 at 11:09:32AM -, Stuart Henderson wrote: > On 2021-12-22, ue...@danwin1210.de wrote: > > How can I reload date from ntpd after boot? > > rcctl stop ntpd > rdate $timeserver > rcctl start ntpd Note that rdate doesn't support the concept of constraints as ntpd does, so

Re: how to reload date from ntpd

2021-12-25 Thread Stuart Henderson
On 2021-12-22, ue...@danwin1210.de wrote: > How can I reload date from ntpd after boot? rcctl stop ntpd rdate $timeserver rcctl start ntpd > fp$ doas rcctl order ntpd dnscrypt_proxy > rcctl: ntpd is not a pkg script "order" does not work for base system services, they use a fixed order. You

Re: how to reload date from ntpd

2021-12-25 Thread Crystal Kolipe
On Wed, Dec 22, 2021 at 11:42:16AM -, ue...@danwin1210.de wrote: > I want to reload time from ntpd after dnscrypt_proxy is started because > it's local DNS server and when it's not started ntpd can't resolve > hostnames. Why not just add the literal IP address of a known and trusted ntp