Re: usb microphone on X1 Carbon

2025-07-18 Thread Jan Stary
On Jul 17 14:32:36, david.raym...@nmt.edu wrote: > I have a Lenovo X1 Carbon Thinkpad (gen 9 I think) which has microphone > hardware not supported by OpenBSD. Post the full dmesg, obviously, to show what the device is. What exactly have you tried to conclude the mic hw is unsupported? > I purcha

Re: Which sets on octeon?

2025-07-17 Thread Jan Stary
Buy a good USB stick and treat it like any other disk. Then you don't need to bother with any of this. I've been running on octeon like that since 7.3, without problems. On Jul 17 10:51:42, christ...@liebender.dev wrote: > Hello misc@, > > I'm about to install OpenBSD onto an Edgerouter 6P - in

Re: Reading ttyC0 displayed text to a file

2025-07-14 Thread Jan Stary
man script On Jul 14 22:07:09, avo...@xtra.co.nz wrote: > When working in ttyC0, is it possible to save the displayed text, as > text, in file ~/tmpdir/afile.txt for example? > > TIA for your helpful and informative comments. > > -- > aer > >

Re: Openrsync and macOS -- Anyone gotten it working with -r option to OpenBSD host?

2025-07-12 Thread Jan Stary
On Jul 12 14:55:22, kam...@moltingpenguin.com wrote: > Just curious if anyone has been able to use rsync (with the -r option) on a > macOS Sequoia machine to an OpenBSD machine. I have the same problem. > I’m asking because my (somewhat simple) rsync command started failing > when openrsync star

Re: Apparently my fridge runs OpenBSD, but under what license?

2025-07-11 Thread Jan Stary
My guess would be that some legal division at Bosch demanded that there be such a list of licenses, just to cover Bosch's proverbial ass, not that the list really means anything. On Jul 12 04:22:15, emu...@disroot.org wrote: > On Fri, 11 Jul 2025 17:39:27 +0200 > Ingo Schwarze wrote: > > > Hello

Re: Ping Spikes

2025-06-18 Thread Jan Stary
On Jun 18 08:58:41, cont...@mtorres.fr wrote: > I've been seeing the same kind of issue on different hardware (both > CPU/GPU/NIC). Inconsistent ping latency and reduced download speed. I don't > see it much on my local network, way more towards hosts on the internet. For > me the trigger is if

X programming tutorial

2025-06-17 Thread Jan Stary
Dear all, the day has come when I need to do some elementary programming (open a window and draw pixels into it). I started with chapter 27 from Stevens: Advanced UNIX Programming, being my favourite author, but the examples seem to be a bit outdated, at least the manpages of the X functions desc

Re: wskbd connects differently now, without pckbc timeouts

2025-06-02 Thread Jan Stary
On Jun 02 04:33:23, kolip...@exoticsilicon.com wrote: > On Mon, Jun 02, 2025 at 09:17:47AM +0200, Jan Stary wrote: > > On Jun 02 03:16:13, kolip...@exoticsilicon.com wrote: > > > On Mon, Jun 02, 2025 at 08:04:22AM +0200, Jan Stary wrote: > > > > In retrospect, why did

Re: wskbd connects differently now, without pckbc timeouts

2025-06-02 Thread Jan Stary
On Jun 02 03:16:13, kolip...@exoticsilicon.com wrote: > On Mon, Jun 02, 2025 at 08:04:22AM +0200, Jan Stary wrote: > > In retrospect, why did this USB keyboard ever attach via pckbc? > > It didn't. At least, not in the dmesgs that you attached. > The pckbc and pckbd dr

Re: wskbd connects differently now, without pckbc timeouts

2025-06-01 Thread Jan Stary
On Jun 02 02:45:22, kolip...@exoticsilicon.com wrote: > On Sun, Jun 01, 2025 at 11:16:20AM +0200, Jan Stary wrote: > > This is current/amd64 on an old PC. > > Everything works, this is just to say that > > the wskbd connects differently now (full dmesgs below). > > &g

wskbd connects differently now, without pckbc timeouts

2025-06-01 Thread Jan Stary
This is current/amd64 on an old PC. Everything works, this is just to say that the wskbd connects differently now (full dmesgs below). --- hp-260-G2.20250413 Mon Apr 21 08:44:31 2025 +++ /tmp/dmesg.boot Sun Jun 1 10:12:40 2025 @@ -1,7 +1,7 @@ -OpenBSD 7.7 (GENERIC.MP) #625: Sun Apr 13 08:30

Re: M-Audio Fast Track Ultra / Ultra 8R

2025-05-26 Thread Jan Stary
> Neither MacOS nor Windows detect the device, > and I couldn't find any working drivers for the device. > (See the previous posts: much like woth the Ultra 8R, > M-Audui/Avid just left the users out in the cold.) I will also try with FreeBSD which seems to have quirks in place for these non-compl

Re: M-Audio Fast Track Ultra / Ultra 8R

2025-05-26 Thread Jan Stary
This is just to say that with M-Audio Fast Track Ultra (i.e. not Fast Track Ultra 8R), it is mostly the same story. The device attaches as umidi0 at uhub1 port 1 configuration 1 interface 3 "M-Audio Fast Track Ultra" rev 2.00/1.51 addr 2 umidi0: (genuine USB-MIDI) umidi0: out=1, in=1 midi0 at um

Re: /bin/sh and RANDOM documention error?

2025-05-16 Thread Jan Stary
On May 16 23:07:39, fischer+o...@lavielle.com wrote: > >> around full minutes, full 5 minutes, etc. This was most likely caused > >> by bunching up of requests from cron tasks around those times. > > > > Do you mean cron tasks running at the (many) _clients_ using that server? > > Exactly. A publ

Re: /bin/sh and RANDOM documention error?

2025-05-16 Thread Jan Stary
> >> The (intended) semantics are slightly different from > >> ~ * * * * /home/username/bin/script.sh > >> The latter calculates the random value once when the crontab is loaded, > >> while the former calculates it each time the crontab entry is triggered. > > > > Why do you need that? > > a) To

Re: /bin/sh and RANDOM documention error?

2025-05-16 Thread Jan Stary
> > How exactly are you using RANDOM in a crontab, > > * * * * * time $((RANDOM % 60));/home/username/bin/script.sh That doesn't make any sense: do you mean sleep(1) instead of time(1)? Show the actual lines from the actual crontab -l > The (intended) semantics are slightly different from > ~ *

Re: /bin/sh and RANDOM documention error?

2025-05-16 Thread Jan Stary
On May 16 15:10:48, fischer+o...@lavielle.com wrote: > The sh(1) manage does not mention the RANDOM variable. But it mentions that sh(1) is ksh(1) This version of sh is actually ksh in disguise. $ ls -li /bin/*sh and the ksh(1) manpage documents RANDOM. > OTOH using RANDOM in a crontab(5), w

[h...@stare.cz: Re: interactive-shell escapes in sysupgrade/autoinstall?]

2025-05-11 Thread Jan Stary
- Forwarded message from Jan Stary - Date: Mon, 12 May 2025 08:36:54 +0200 From: Jan Stary To: Jonathan Thornburg Subject: Re: interactive-shell escapes in sysupgrade/autoinstall? If you are willing to manualy intervene during a sysupgrade, you can just as well boot into bsd.rd and do

nvme endurance

2025-04-23 Thread Jan Stary
This is current/arm64 an a macbook. What exactly is the "endurance used" as reported by hw.sensors.nvme0.percent0? man nvme(4) doesn't say. Jan hw.machine=arm64 hw.model=Apple Icestorm r1p1 hw.sensors.nvme0.temp0=28.00 degC, OK hw.sensors.nvme0.percent0=8.00% (endurance used), OK hw.sen

Re: current/amd64 becomes GENERIC (not MP)

2025-04-21 Thread Jan Stary
On Apr 21 09:21:39, flor...@openbsd.org wrote: > On 2025-04-21 09:17 +02, Jan Stary wrote: > > I should be looking at to debug this? > [...] > > +uid 0 on /usr: file system full > > This would be a good starting point I think. Right. Thank you. I forgot to rm /home/_

current/amd64 becomes GENERIC (not MP)

2025-04-21 Thread Jan Stary
This is current/amd64 on an APU2D0. sysupgrade just upgraded the machine to OpenBSD 7.7 (GENERIC) #619, as opposed to the expected GENERIC.MP (like ever before). Both dmesgs below. My other amd64 machines get sysupgraded to the current GENERIC.MP Is this known? Is there something specific to the

Re: bwfm on M1 Air crashes the system

2025-04-18 Thread Jan Stary
On Apr 16 12:43:41, null...@gmail.com wrote: > I just downloaded the snapshot install77.img again and this one has the > apple-bwfm directory under /etc/firmware, I think it wasn't there before > on the previous snapshot, which I used when I started the thread on 13th, > that's why I did the whole

Re: bwfm on M1 Air crashes the system

2025-04-18 Thread Jan Stary
On Apr 18 11:49:17, null...@gmail.com wrote: > Gosh I finally figured it out. > It was just the bsd.rd kernel in the installer that had issues with bwfm0, > once > I had installed using install77.img and ethernet (although I think you could > install offline with the sets on disk and download appl

Re: Documenting graphics/intel-media-driver and graphics/intel-vaapi-driver in the FAQ?

2025-04-17 Thread Jan Stary
Hi izzy, I will leave the problem itself to more video-savvy people, but thank you for pointing that out. I only found out in some ffmpeg thread @ports what my obsd box can actualy do with the intel graphics it has. Jan On Apr 17 14:39:58, izder...@disroot.org wrote: > Hello misc@ > >

Re: bwfm on M1 Air crashes the system

2025-04-16 Thread Jan Stary
> >> Does it make a difference if you install the bwfm-firmware package? > > > > The one on http://firmware.openbsd.org/firmware/ right? > > I think I read somewhere it isn't for the Apple Silicon devices > > Correct. bwfm-firmware would only be used there if you have a plug-in > USB bwfm(4) devic

Re: bwfm on M1 Air crashes the system

2025-04-14 Thread Jan Stary
On Apr 14 18:25:50, null...@gmail.com wrote: > > Does it make a difference if you install the bwfm-firmware package? Well? > So from what I understand you had OpenBSD already installed, upgraded to 7.7 > and everything seems to be working fine with bwfm0 even after updating to > MacOS 15.4? Y

Re: bwfm on M1 Air crashes the system

2025-04-14 Thread Jan Stary
On Apr 13 13:14:58, null...@gmail.com wrote: > Hi, I'm using the snapshot install77.img to install because apparently > the 7.6 had a bug which stopped the bwfm0 from showing up entirely on > newer system firmware and there's an errata for this at > https://ftp.openbsd.org/pub/OpenBSD/patches/7.6/c

Re: zdump -v confusion

2025-04-10 Thread Jan Stary
On Apr 07 21:49:29, h...@stare.cz wrote: > Europe/Prague -9223372036854775808 = NULL > Europe/Prague -9223372036854689408 = NULL > Europe/Prague 9223372036854689407 = NULL > Europe/Prague 9223372036854775807 = NULL > > the time at the lowest possible time value, > the time one day after th

Re: Can't umount; fuser and fstat don't say why

2025-04-08 Thread Jan Stary
> For now I've set up my backup script to sync, sleep for a bit, then use > umount -f. Meaning, sync(8) before the umount? Everything else being the same? And that works? > It seems brash to ask, but is there a chance that there could > be a bug elsewhere in the system? No idea, but I have had

Re: Can't umount; fuser and fstat don't say why

2025-04-08 Thread Jan Stary
On Apr 08 06:56:53, sema...@kapouay.eu.org wrote: > TSS writes: > > > Greetings, > > > > I've been using this gimmick for backing up some OpenBSD 7.6 systems: > > https://github.com/thexhr/openbsd-timemachine > > For the purposes of this discussion, it: > > > > 1. uses hotplugd to run a script wh

Re: Can't umount; fuser and fstat don't say why

2025-04-07 Thread Jan Stary
On Apr 08 08:34:16, o...@drijf.net wrote: > On Tue, Apr 08, 2025 at 08:14:34AM +0200, Jan Stary wrote: > > > On Apr 08 06:56:53, sema...@kapouay.eu.org wrote: > > > TSS writes: > > > > > > > Greetings, > > > > > > > > I&

zdump -v confusion

2025-04-07 Thread Jan Stary
This is current/amd64. The first two and last two lines of every zdump -v output seem to include NULL values, as in $ zdump -v Europe/Prague Europe/Prague -9223372036854775808 = NULL Europe/Prague -9223372036854689408 = NULL Europe/Prague Mon Dec 31 23:02:15 1849 UTC = Mon Dec 31 23:59:59 1849

zdump ignores nonexistent timezones

2025-04-07 Thread Jan Stary
$ zdump Canada/Tokyo Canada/Tokyo Mon Apr 7 19:39:46 2025 GMT

ftp2.eu.openbsd.org still broken

2025-04-04 Thread Jan Stary
There is something amiss with this mirror; e.g. https://ftp2.eu.openbsd.org/pub/OpenBSD//snapshots/macppc/ contains _some_ sets from 2025-02-07, a SHA256 from 2025-03-03, and has no base tarball (but SHA256 does list it). Jan

Re: Comment on /etc/myname vs /etc/hostname

2025-03-31 Thread Jan Stary
On Mar 31 16:46:46, otto.coo...@proton.me wrote: > I did read the man pages. So hostname(1) told you about myname(5), right?

Re: Comment on /etc/myname vs /etc/hostname

2025-03-24 Thread Jan Stary
On Mar 24 14:40:47, otto.coo...@proton.me wrote: > Suppose you want to change the host name. > You think of hostname ... and therefore run "man hostname" which tells you everyhing you need to know. > To understand where the host name is written in OpenBSD, > you need to read hostname(1). Yes. Yo

Re: recovering data from SSD that was (almost) reformatted to MSDOS from FFS

2025-03-19 Thread Jan Stary
On Mar 19 12:28:07, freddiebub...@countermail.com wrote: > Hi! Hope you are all well, > recently I made the mistake of running newfs_msdos > to my computers encrypted SSD instead of an external sd card... I cancelled > the command almost immediately, so I am hoping most of

Re: Fwd: accented characters not showingutomatically started xterm:

2025-03-15 Thread Jan Stary
> Here the .spectrwm.conf stripping away the comments: > bar_enabled = 0 > bar_font = xos4 Terminus:pixelsize=24:antialias=true > bar_font_pua = Typicons:pixelsize=24:antialias=true I don't suppose these influence the xterm behaviour > modkey = Mod4 This also.

Re: usb audio DAC question

2025-03-12 Thread Jan Stary
On Mar 11 18:20:27, g...@oat.com wrote: > On 3/11/25 3:59 PM, Alexandre Ratchov wrote: > > On Tue, Mar 11, 2025 at 02:41:32PM -0400, Geoff Steckel wrote: > > > I have 2 USB DACs. One uses a Burr-Brown chip and the other > > > one is a Modi 3+ (custom circuit) from Schiit Audio. > > > Both work unde

Re: usb audio DAC question

2025-03-12 Thread Jan Stary
On Mar 11 18:07:25, g...@oat.com wrote: > On 3/11/25 4:38 PM, Jan Stary wrote: > > On Mar 11 14:41:32,g...@oat.com wrote: > > > I have 2 USB DACs. One uses a Burr-Brown chip and the other > > > one is a Modi 3+ (custom circuit) from Schiit Audio. > > > Both work

Re: usb audio DAC question

2025-03-11 Thread Jan Stary
On Mar 11 14:41:32, g...@oat.com wrote: > I have 2 USB DACs. One uses a Burr-Brown chip and the other > one is a Modi 3+ (custom circuit) from Schiit Audio. > Both work under Linux. > The Schiit seems to accept playback data but no analog output appears. > Both are claimed by uaudio(4). > > Note t

Re: Fwd: accented characters not showingutomatically started xterm:

2025-03-11 Thread Jan Stary
> > Also, do you have ~/.Xdefaults? See mine below - this makes it possible > > to just launch "xterm" the way I want it anywhere in X. > I joint it I don't know what that means. > ! $OpenBSD: dot.Xdefaults,v 1.3 2014/07/10 10:22:59 jasper Exp $ > XTerm*loginShell: true > XTerm*faceName: spleen >

Re: sndio, uaudio and buffer xruns (clicking/popping)

2025-03-11 Thread Jan Stary
On Mar 11 13:20:03, em...@kollof.nl wrote: > Jan Stary schreef op 2025-03-11 12:02: > > > On Thu, Mar 06, 2025 at 10:48:06AM +0100, Andrath of the Abyss wrote: > > > > I was wondering if people with USB audio interfaces have the same issue > > > > as me. When

Re: sndio, uaudio and buffer xruns (clicking/popping)

2025-03-11 Thread Jan Stary
> On Thu, Mar 06, 2025 at 10:48:06AM +0100, Andrath of the Abyss wrote: > > I was wondering if people with USB audio interfaces have the same issue > > as me. When using the microphone of my usb audio interface, the recorded > > audio starts to stutter/pop, indicating buffering problems, usually wh

Re: accented characters not showingutomatically started xterm:

2025-03-07 Thread Jan Stary
> > Run env in both and see the difference. > > Does the "terminal" (= xterm?) launch a login shell (as in ksh -l), > > and thus read your ~/.profile? > > > > Jan > > > env from the automatically started xterm: What does "automaticaly" mean? The X session using yoru WM of choise starts that

Re: accented characters not showing

2025-03-07 Thread Jan Stary
On Mar 07 16:54:36, jean-michel.bes...@lacomte.net wrote: > the accented characters show when I start the terminal manually after the > start of spectrwm. But the one launched automatically with spectrwm does not > show characters. Run env in both and see the difference. Does the "terminal" (= xte

Re: BSD hacking new personal computer tower configuration ?

2025-03-06 Thread Jan Stary
> > I'm thinking of purchasing parts to an all-purpose *BSD personal computer. > > My budget is ~€3000 (+1k). That is absurd. You are buying a PC.

Re: sndio, uaudio and buffer xruns (clicking/popping)

2025-03-06 Thread Jan Stary
Hi, On Mar 06 10:48:06, em...@kollof.nl wrote: > I was wondering if people with USB audio interfaces have the same issue > as me. When using the microphone of my usb audio interface, the recorded > audio starts to stutter/pop, indicating buffering problems, usually when > I do something that cause

Re: Unable to upgrade to new version of OpenBSD.

2025-03-05 Thread Jan Stary
Have you tried updating to the current snapshot? On Mar 05 18:57:21, 114...@disroot.org wrote: > Hello all, > > So I found an issue last year where the OpenBSD 7.6 release and the > -current wouldn't boot on my laptop. I reported it in the bugs mailing > list [1] however there was very little int

Re: /var fsck fails near end of _sysupgrade

2025-03-05 Thread Jan Stary
> > but even SATA SSD will be an improvement over > > plates of rusty metal rotating at 5600 rpm. One more thing: the SSDs will save you a bit of battery too - usefull on laptop.

Re: /var fsck fails near end of _sysupgrade

2025-03-04 Thread Jan Stary
On Mar 04 22:47:19, avo...@xtra.co.nz wrote: > Thank you Jan, see comments below. > > On Tue, Mar 04, 2025 at 09:18:18AM +0100, Jan Stary wrote: > > To be sure: this is not "near the end of sysupgrade" > > - the isntaller hasn't evene started upgrading anything

Re: /var fsck fails near end of _sysupgrade

2025-03-04 Thread Jan Stary
To be sure: this is not "near the end of sysupgrade" - the isntaller hasn't evene started upgrading anything, as your filesystems can't even be mounted. On Mar 04 09:17:05, h...@stare.cz wrote: > On Mar 04 20:57:04, avo...@xtra.co.nz wrote: > > THE FOLLOWING FILE SYSTEM HAD AN UNEXPECTED INCONSIS

Re: /var fsck fails near end of _sysupgrade

2025-03-04 Thread Jan Stary
On Mar 04 20:57:04, avo...@xtra.co.nz wrote: > THE FOLLOWING FILE SYSTEM HAD AN UNEXPECTED INCONSISTENCY: > ffs: fa50b3edace170b1.e (/var) > Automatic file system check failed: help! > Enter pathname of shell or RETURN for sh: > > wrdl5# fsck -t ffs /dev/sd1e > ** /dev/rsd1e > > CANNOT READ

ftp2.eu.openbsd.org

2025-02-24 Thread Jan Stary
The ftp2.eu.openbsd.org mirror seems to be down again. Jan

USB compliant multitrack audio ifaces

2025-02-21 Thread Jan Stary
Dear all, I am looking at these USB audio cards: https://www.soundonsound.com/reviews/steinberg-ur824 https://www.behringer.com/product.html?modelCode=0805-AAT https://www.behringer.com/product.html?modelCode=0805-AAN https://www.esi-audio.com/products/u108pre/ Can someone please confirm that th

Re: Failed to setup NFS on OpenBSD

2025-02-17 Thread Jan Stary
On Feb 17 19:44:07, mouad-...@outlook.com wrote: > Hello, > > I am trying to setup NFS on OpenBSD by following this guide > https://www.openbsd.org/faq/faq6.html#NFS, but I am having a problem starting > mountd and nfsd services (portmap service started normally): > > # rcctl -f start mountd nf

Re: M-Audio Fast Track Ultra 8R

2025-02-04 Thread Jan Stary
On Jul 01 15:07:48, a...@caoua.org wrote: > On Sun, Jun 30, 2024 at 08:26:06AM +0200, Jan Stary wrote: > > This is current/amd64 on a PC (full dmesg below). > > I got my hands on an M-Audio Fast Track Ultra 8R, > > an USB audio interface; eight tracks, 24/96, nice. > >

Re: boot confusion on an old MacMini

2025-02-03 Thread Jan Stary
For the archives: I finaly solved this with set boot-file /pci@f400/ata-6@d/disk@0:/bsd reset-all in ofwboot. I think I confused the machine years ago by ripping out the CD drive, no longer needed after OpenBSD booted from the HDD: since then, ofwboot thought disk@1 was as th

Re: httpd txt files display - remove Byte-Order Mark problem ?

2025-01-30 Thread Jan Stary
httpd serves the file as is, and advices the client with a Content-Type header. It is then entirely up to the client (typicaly a browser) to display what the server has served. On Jan 30 09:30:16, sylv...@saboua.me wrote: > > I have a folder with several standalone .txt files on my webserver. > I

Re: tr manpage typo?

2025-01-28 Thread Jan Stary
On Jan 28 18:07:55, tomas.ri...@tuta.com wrote: > Hi and thank to all of you responding. > > My explanation and understanding: > > myfile.txt example: > Hello guys >  <= one space here > Anybody  from Europe?  <= two spaces between Anybody and from No, that's not what's in the input. This is act

no apm{,d} on armv7

2025-01-27 Thread Jan Stary
The current armv7 distribution doesn't have apm and apmd (but has the corresponding manpages). Is that intended? Jan

neues U-Boot

2025-01-26 Thread Jan Stary
Dear misc, I am trying to figure out how the U-Boot gets updated on my BeagleBone Black (and other uboot machines). While booting, the machine says (full dmesg below): U-Boot SPL 2021.10 (Apr 20 2024 - 17:53:20 -0600) Trying to boot from MMC1 U-Boot 2021.10 (Apr 20 2024 - 17:53:20 -0600)

Re: home hostap on athn(4)

2025-01-25 Thread Jan Stary
On Jan 25 11:40:41, stu.li...@spacehopper.org wrote: > On 2025-01-25, Jan Stary wrote: > > Some years ago, I set up a home wifi access point > > using athn(4) in an ALIX (and later APU): > > > > athn0 at pci0 dev 12 function 0 "Atheros AR9280" rev 0x01: irq

home hostap on athn(4)

2025-01-25 Thread Jan Stary
Some years ago, I set up a home wifi access point using athn(4) in an ALIX (and later APU): athn0 at pci0 dev 12 function 0 "Atheros AR9280" rev 0x01: irq 9 athn0 at pci4 dev 0 function 0 "Atheros AR9281" rev 0x01: apic 5 int 16 I remember it worked, but there were performance issues: the mix of

AC adapter state not known

2025-01-12 Thread Jan Stary
This is current/amd64 on a PC (dmesg below). Strangely, the running "/usr/sbin/apmd -A" doesn't know if the machine is on AC: # apm Battery state: absent, 0% remaining, unknown life estimate AC adapter state: not known Performance adjustment mode: auto (400 MHz) Yet sysctl knows (if hw.power mean

Re: How to parallelization

2024-12-23 Thread Jan Stary
On Dec 23 14:55:30, c...@schulte.it wrote: > things. I am searching for some kind of system API allowing an > application to reserve a certain amount of CPUs exclusively - not shared > with any other application - maybe not even the OS. If that existed, every application would start with "reserve

Re: cdplayer has stopped working

2024-12-17 Thread Jan Stary
On Dec 17 02:41:52, eagir...@cox.net wrote: > Literally within hours of successfully ripping several > commercially pressed audio CDs to flac, How exactly? (Not with cdio, which only rips into wav.) > the built-in player has stopped. > ed@hostname(~)$cdio -vv cdplay > No CD device name specified

Re: pkg_info -Q: inconsistent search results

2024-12-11 Thread Jan Stary
On Dec 09 16:58:16, glok...@kuzdra.org wrote: > The FAQ page [FAQ15] suggests to use "pkg_info -Q" to search the > collection of pre-compiled packages. When I search for "tcl", > I get a few "nextcloud" packages only, but no Tcl: > > $ pkg_info -v -Q tcl > PKG_PATH= > nextcloud-27.1.11

Re: OpenBSD on MacBook Pro 2018

2024-12-02 Thread Jan Stary
On Dec 02 17:07:44, kir...@korins.ky wrote: > On Mon, 02 Dec 2024 16:25:53 +0100, > Jan Stary wrote: > > > > On Dec 02 12:02:27, kir...@korins.ky wrote: > > > misc@, > > > > > > Do you try to run OpenBSD on MacBook Pro 2018? I did it yesterday with

Re: OpenBSD on MacBook Pro 2018

2024-12-02 Thread Jan Stary
On Dec 02 12:02:27, kir...@korins.ky wrote: > misc@, > > Do you try to run OpenBSD on MacBook Pro 2018? I did it yesterday with the > snapshot and it's almost not usable. > > 1. Booting from USB drive requires significant time. It needs about 7 > minutes to finish the first line: booting sd0a:/bs

Re: RT Kernel

2024-11-11 Thread Jan Stary
On Nov 11 14:43:20, bostrom.richa...@proton.me wrote: > Is there a real-time kernel for openbsd? All my servers run in real time as we speak.

Re: C3 state only on battery

2024-11-10 Thread Jan Stary
On Nov 10 05:49:58, mlar...@nested.page wrote: > On Sat, Nov 09, 2024 at 11:21:54PM +0100, Jan Stary wrote: > > This is current/amd64 on a Thinkpad X230i. > > > > It seems that the C3 cpu state is only supported > > when the machine boots on battery (full dmesgs below):

Re: X230 random reboots

2024-11-10 Thread Jan Stary
On Nov 07 01:00:11, naq...@naqiao.hk wrote: > I had similar issues with a X201 and it happened to be the CMOS battery, once > replaced everything worked fine again. FWIW, I never had this problem on the X230i (in case they are related in any way). Jan OpenBSD 7.6-current (GENERIC.MP) #4

C3 state only on battery

2024-11-09 Thread Jan Stary
This is current/amd64 on a Thinkpad X230i. It seems that the C3 cpu state is only supported when the machine boots on battery (full dmesgs below): --- /tmp/dmesg.bat Sat Nov 9 11:55:55 2024 +++ /tmp/dmesg.ac Sat Nov 9 11:55:55 2024 -acpiac0 at acpi0: AC unit offline +acpiac0 at acpi

Re: no cron email after restarting smtpd

2024-11-06 Thread Jan Stary
On Nov 06 09:40:26, pe...@200mmx.net wrote: > Restarting smtpd (e.g. after renewing acme certs) in a cron job So, restarting after a cert change, or restarting in a cron job? Do you renew the certs in a cron job too? Why would you be restarting smtpd in a cron job? > cron not to send an email any

Re: no cron email after restarting smtpd

2024-11-06 Thread Jan Stary
> > In a cronjob: after a cert change restart smtpd (can reload > httpd/relayd/dovecot) > > > > cron not to send an email anymore > > > > What email? > > Email from the Cron Daemon. You have the cron log. Does cron run the job? > > What exactly is the cron job? That is to say: show the cront

Re: no cron email after restarting smtpd

2024-11-06 Thread Jan Stary
> > /var/run/smtpd.sock changed after a restart. > > That has IMHO nothing to do with cron sending an email. Ah. Right.

Re: HDMI audio?

2024-11-02 Thread Jan Stary
On Nov 02 14:19:29, sad...@asciimx.com wrote: > Does OpenBSD support HDMI audio? I bought a new monitor, which has > integrated speakers. It's an LG 32UN650. Display is working really well, > but I can't get sound to work. > > sndioctl output: > input.level=0.486 > input.mute=0 > output.level=0.49

Re: Apple Macbook Air (M1) lost bwfm

2024-10-30 Thread Jan Stary
On Sep 25 15:05:00, h...@stare.cz wrote: > This is 7.6-beta/arm64 (#179) on an MBA (M1, 2020), > the last kernel used is this: > > https://github.com/janstary/dmesg/blob/master/apple-macbook-air-A2337.20240915 > > While this listing shows > bwfm0 at pci1 dev 0 function 0 "Broadcom BCM4378" rev 0x

Re: Apple Macbook Air (M1) lost bwfm

2024-10-30 Thread Jan Stary
On Sep 25 14:59:09, stu.li...@spacehopper.org wrote: > On 2024-09-25, Jan Stary wrote: > > This is 7.6-beta/arm64 (#179) on an MBA (M1, 2020), > > the last kernel used is this: > > > > https://github.com/janstary/dmesg/blob/master/apple-macbook-air-A2337.20240915 >

Re: "Connection refused" for everything except port 80

2024-10-17 Thread Jan Stary
On Oct 17 19:24:54, sunqingyao19970...@icloud.com wrote: > I am a Ph.D. student at Cornell ORIE. I saw a Dell Optiplex 7050 SFF lying > around in our department and decided to install OpenBSD on it. The machine > does not have WiFi connectivity, but there is an RJ45 Ethernet jack, so I > plugged

Re: Network card not seen (not even from dmesg)

2024-10-17 Thread Jan Stary
On Oct 16 23:46:22, d1.and...@icloud.com wrote: > OpenBSD running on a MacBook Pro (M1, 2020). > It’s not about the drivers, I don’t even see the wifi card at the dmesg! > The strange fact is that on previous installations everything went smoothly, > I installed OpenBSD and then the bwi firmware d

Apple Macbook Air (M1) lost bwfm

2024-09-25 Thread Jan Stary
This is 7.6-beta/arm64 (#179) on an MBA (M1, 2020), the last kernel used is this: https://github.com/janstary/dmesg/blob/master/apple-macbook-air-A2337.20240915 While this listing shows bwfm0 at pci1 dev 0 function 0 "Broadcom BCM4378" rev 0x03: msi and it worked (I pkg_add-u'd the packages after

Re: Azalia HDMI audio output with recompiled kernel

2024-09-19 Thread Jan Stary
Does the card have other outputs besides the HDMI? The regular audio jacks? Do these work?

Re: Analyze OpenBSD songs (Puff the Barbarian)

2024-08-21 Thread Jan Stary
For those enrolled in Modern Poetry 101, On Aug 20 22:16:47, alirezaarzehga...@gmail.com wrote: > > Broke down the guard > > Cause math is hard > > Saw McNealy on his throne > > All alone and only bones > > In this text, I don't see the relationship between "hardness of math" and > OpenBSD challe

Re: How to trim SSD?

2024-08-12 Thread Jan Stary
On Aug 11 21:44:52, oli...@gfuzz.de wrote: > How do you guys trim your SSDs? > Or shall I ask "do you trim your SSDs at all"? > > Does OpenBSD have similar functionality like > https://man.netbsd.org/blkdiscard.8 ? > > I recently rented a phys. machine and installed OpenBSD on it[1], smartctl > a

Re: doas tab completion

2024-07-29 Thread Jan Stary
On Jul 29 11:44:32, develo...@robert-palm.de wrote: > > On Jul 29 09:47:39, develo...@robert-palm.de wrote: > > > wonder how I can get TAB completion in the shell when using doas ... echo $SHELL Different shells do (or don't) this differently. > > tab completion is not specific to any command. >

Re: doas tab completion

2024-07-29 Thread Jan Stary
On Jul 29 09:47:39, develo...@robert-palm.de wrote: > wonder how I can get TAB completion in the shell when using doas ... tab completion is not specific to any command.

Re: trying to boot on HP EliteBook 820 G1

2024-07-28 Thread Jan Stary
The point is exactly to point out that it is a speculation. On Jul 28 16:31:14, mih...@gmail.com wrote: > > So my current speculation is that OpenBSD has a problem booting _from_USB_ > > on this laptop. > > I think it should be like this: > "So my current speculation is that LAPTOP has a problem

Re: M-Audio Fast Track Ultra 8R

2024-07-25 Thread Jan Stary
On Jul 07 18:03:56, h...@stare.cz wrote: > On Jul 01 15:07:48, a...@caoua.org wrote: > > On Sun, Jun 30, 2024 at 08:26:06AM +0200, Jan Stary wrote: > > > This is current/amd64 on a PC (full dmesg below). > > > I got my hands on an M-Audio Fast Track Ultra 8R, > >

Re: firefox crashes on an M1 macbook

2024-07-25 Thread Jan Stary
On Jul 25 15:14:01, benni+openbsd-m...@stuerz.xyz wrote: > On 4/12/23 11:11 AM, Jan Stary wrote: > > This is current/arm64 on an Apple M1 MacBook Air (dmesg below). > > While everything mostly works, Firefox keeps crashing. > > > > Reproducibly, it always cra

Re: trying to boot on HP EliteBook 820 G1

2024-07-24 Thread Jan Stary
On Jul 24 09:28:16, n...@holland-consulting.net wrote: > On 7/24/24 08:24, Jan Stary wrote: > > On Jul 24 07:46:09, kolip...@exoticsilicon.com wrote: > > > On Wed, Jul 24, 2024 at 12:19:34PM +0200, Jan Stary wrote: > > > > The problem persists with every USB stick, &

Re: trying to boot on HP EliteBook 820 G1

2024-07-24 Thread Jan Stary
On Jul 24 07:46:09, kolip...@exoticsilicon.com wrote: > On Wed, Jul 24, 2024 at 12:19:34PM +0200, Jan Stary wrote: > > The problem persists with every USB stick, > > with each of miniroot75.img, install75.img > > and a full usb stick install, on every USB port. > >

Re: trying to boot on HP EliteBook 820 G1

2024-07-24 Thread Jan Stary
On Jul 22 15:22:21, h...@stare.cz wrote: > I am trying to boot current/amd64 on this HP laptop from USB stick. > > Disabling the "secure boot" in BIOS, so that something else > than the preinstalled windows is even allowed to boot, > and choosing USB Flash Disk as the boot source, > I see the usu

Re: trying to boot on HP EliteBook 820 G1

2024-07-23 Thread Jan Stary
> > > - "machine mem" output might be useful to someone looking at this > Region 0: type 1 at 0x0 for 631KB > Region 1: type 2 at 0x9dc00 for 9KB > Region 2: type 2 at 0xe for 128KB > Region 3: type 1 at 0x10 for 3058172KB > Region 4: type 2 at 0xbab7f000 for 19456KB > Region 5: type 4 at

Re: trying to boot on HP EliteBook 820 G1

2024-07-23 Thread Jan Stary
On Jul 22 15:22:21, h...@stare.cz wrote: > I am trying to boot current/amd64 on this HP laptop from USB stick. > > Disabling the "secure boot" in BIOS, so that something else > than the preinstalled windows is even allowed to boot, > and choosing USB Flash Disk as the boot source, > I see the usu

Re: trying to boot on HP EliteBook 820 G1

2024-07-22 Thread Jan Stary
On Jul 22 10:38:44, kolip...@exoticsilicon.com wrote: > On Mon, Jul 22, 2024 at 03:22:21PM +0200, Jan Stary wrote: > > There, the rotating slash either stops and nothing else happens, > > or the machine reboots after the first number in > > > > booting h

Re: Frustrating feature in Evolution mail

2024-07-18 Thread Jan Stary
> > > > > > > I know how to fix this in > > > > > > > FreeBSD by  including LANG=en_GB.UTF-8 etc in a number of > > > > > > > text > > > > > > > files. > > > > > > > However on OpenBSD, this hasn't worked in exactly the same > > > > > > > way. > > > > > > To be clear: "hasn't worked in exactly sam

Re: Frustrating feature in Evolution mail

2024-07-18 Thread Jan Stary
On Jul 18 10:42:23, mwg...@btinternet.com wrote: > > > > https://gnome.pages.gitlab.gnome.org/evolution/help/mail-change-time-format.html > > > > > > > > > > I did already change that.  However it only changes the header > > > view, on > > > the email. Not the column view on list of emails. > >

Re: Frustrating feature in Evolution mail

2024-07-18 Thread Jan Stary
On Jul 18 09:21:14, mwg...@btinternet.com wrote: > On Wed, 2024-07-17 at 13:22 +0200, Jan Stary wrote: > > On Jul 17 09:59:01, mwg...@btinternet.com wrote: > > > HI All, > > > > > > I'm trying to resolve a trivial, but annoying problem with using >

  1   2   3   4   5   6   7   8   9   10   >