Re: bsd.re-config syntax

2023-11-23 Thread Nowarez Market
Received, thnx.. -- Nowarez Market Nov 24, 2023 08:38:37 Peter N. M. Hansteen : > the machine-independent GENERIC config is at > https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/conf/GENERIC?rev=1.291=text/plain, > while what I assume is the most common machine dependent one would

Re: bsd.re-config syntax

2023-11-23 Thread Peter N. M. Hansteen
On Fri, Nov 24, 2023 at 08:23:48AM +0100, Capitan Cloud wrote: > Thnx Peter, please can you point me out the path of cvsweb where > to find the resources that you are meaning? the machine-independent GENERIC config is at

Re: bsd.re-config syntax

2023-11-23 Thread Nowarez Market
Thnx Peter, please can you point me out the path of cvsweb where to find the resources that you are meaning? Nov 24, 2023 08:03:00 Peter N. M. Hansteen : > It's a kernel configuration file. There are numerous examples > in the source tree. -- Nowarez Market

Re: bsd.re-config syntax

2023-11-23 Thread Capitan Cloud
Thnx Peter, please can you point me out the path of cvsweb where to find the resources that you are meaning? Nov 24, 2023 08:03:00 Peter N. M. Hansteen : > It's a kernel configuration file. There are numerous examples > in the source tree.

Re: bsd.re-config syntax

2023-11-23 Thread Peter N. M. Hansteen
On Fri, Nov 24, 2023 at 01:14:06AM +0100, Nowarez Market wrote: > I'm in the need to know if /etc/bsd.re-config accepts > comment starting with "#" as normally other file.conf do. It's a kernel configuration file. There are numerous examples in the source tree. -- Peter N. M. Hansteen, member

bsd.re-config syntax

2023-11-23 Thread Nowarez Market
Hello, I'm in the need to know if /etc/bsd.re-config accepts comment starting with "#" as normally other file.conf do. Just to pass my time during the upgrade to 7.4 (and to simplify my life for the next time) .. NB: man could be a little more detailed about the subject. Thnx! == Nowarez

Re: OpenBSD alternative setup to ZFS on Linux or FreeBSD

2023-11-23 Thread Crystal Kolipe
On Fri, Nov 24, 2023 at 08:32:20AM +1000, Stuart Longland VK4MSL wrote: > On 22/11/23 18:25, Crystal Kolipe wrote: > >1. Once data is no longer "work in progress", archive it to write-only > >media and take it out of the regular backup loop. In most cases this > >drastically reduces the

Re: OpenBSD alternative setup to ZFS on Linux or FreeBSD

2023-11-23 Thread Stuart Longland VK4MSL
On 22/11/23 18:25, Crystal Kolipe wrote: 1. Once data is no longer "work in progress", archive it to write-only media and take it out of the regular backup loop. In most cases this drastically reduces the volume of data you need to manage. Feel free to keep a local on-line copy on

Re: Auto-install over network using UEFI

2023-11-23 Thread Stuart Henderson
On 2023-11-23, Nick Owens wrote: > On Tue, Nov 21, 2023 at 7:03 PM Chris Narkiewicz wrote: >> >> I'm experimentin with auto-install over network using linux libvirt >> (qemu). >> >> I managed to load pxeboot in BIOS mode and I'm wondering if UEFI >> is supported. >> >> According to this blog, I

Re: mkdir

2023-11-23 Thread Pascal Deveaux
all files are present in /bin/ mkdir. Oddly enough after several attempts I was able to create the directory Cdt, Pascal DEVEAUX From: Zé Loff Sent: Thursday, November 23, 2023 4:57:32 PM To: Pascal Deveaux Cc: misc@openbsd.org Subject: Re: mkdir On Thu, Nov

Re: And about /bin - Re: mkdir

2023-11-23 Thread Nowarez Market
Got it, many thanks.. -- Nowarez Market Nov 23, 2023 15:23:26 Omar Polo : > On 2023/11/23 14:18:22 +0100, Nowarez Market wrote: >> >> >> Yesterday I was playing around some software and at a the certain >> point in time I launched in the shell: >> >> wiz# rm -Rf * >> ksh: rm: wrong param -3

Re: And about /bin - Re: mkdir

2023-11-23 Thread Omar Polo
On 2023/11/23 14:18:22 +0100, Nowarez Market wrote: > > > Yesterday I was playing around some software and at a the certain > point in time I launched in the shell: > > wiz# rm -Rf * > ksh: rm: wrong param -3 it's quite obvious when you know, yet maybe obscure the first time you run into it.

Re: Auto-install over network using UEFI

2023-11-23 Thread Eric Elena
On Thu, 23 Nov 2023 00:37:37 -0800 Nick Owens wrote: > On Tue, Nov 21, 2023 at 7:03 PM Chris Narkiewicz wrote: > > > > I'm experimentin with auto-install over network using linux libvirt > > (qemu). > > > > I managed to load pxeboot in BIOS mode and I'm wondering if UEFI > > is supported. > > > >

And about /bin - Re: mkdir

2023-11-23 Thread Nowarez Market
Yesterday I was playing around some software and at a the certain point in time I launched in the shell: wiz# rm -Rf * ksh: rm: wrong param -3 or something very near. Now, I tried to reproduce it but without enough luck. Maybe from the returned string you can guess something.. == Nowarez

Re: mkdir

2023-11-23 Thread Zé Loff
On Thu, Nov 23, 2023 at 12:38:50PM +, Pascal Deveaux wrote: > simple command to create a directories return: > > $ mkdir test > ksh: mkdir: not found > > I don't understand... > > OpenBSD 7.4 - fresh install > > Pascal Is /bin in your PATH, and if so, does /bin/mkdir exist? On an amd64

Re: mkdir

2023-11-23 Thread Omar Polo
On 2023/11/23 12:38:50 +, Pascal Deveaux wrote: > simple command to create a directories return: > > $ mkdir test > ksh: mkdir: not found > > I don't understand... Start off by checking $PATH. mkdir(1) should be in /bin, see if it's listed there. Depending on it, understand either why

mkdir

2023-11-23 Thread Pascal Deveaux
simple command to create a directories return: $ mkdir test ksh: mkdir: not found I don't understand... OpenBSD 7.4 - fresh install Pascal

Re: OpenBSD alternative setup to ZFS on Linux or FreeBSD

2023-11-23 Thread Nowarez Market
Geoff Steckel : > Of course, there's one storage medium verified to last for centuries. > Good ink on rag paper stored dry. Papyrus is good for millenia. > Not entirely a joke. This needs any bullet-proof..

Re: Auto-install over network using UEFI

2023-11-23 Thread Nick Owens
On Tue, Nov 21, 2023 at 7:03 PM Chris Narkiewicz wrote: > > I'm experimentin with auto-install over network using linux libvirt > (qemu). > > I managed to load pxeboot in BIOS mode and I'm wondering if UEFI > is supported. > > According to this blog, I should load BOOTX64.EFI instead of pxeboot.

Re: PF Rules for Dual Upstream Gateways

2023-11-23 Thread Stuart Henderson
On 2023-11-22, Ian Timothy wrote: > Hello, > > I have two ISPs where one connection is primary and the other is > low-bandwidth for temporary failover only. ifstated handles the failover by > simply changing the default gateway. But under normal conditions I want to be > able to connect via

Re: OpenBSD alternative setup to ZFS on Linux or FreeBSD

2023-11-23 Thread Geoff Steckel
On 11/22/23 20:31, j...@bitminer.ca wrote For long-term storage, you have other risks to manage, not the simple technical risk of "will my portable-USB disk be readable in 2038?". Interfaces die - IDE interface cards? Even if you have one the ISA bus might not be available. Parallel SCSI,