Recent changes in the FAQ.

2023-03-03 Thread Pascal Deveaux
I want to install OpenBSD with full disk encryption.

Why these recent changes in the FAQ in the section "Full Disk Encryption":

-old-
"if you use GPT for UEFI booting, do: # fdisk -iy -g -b 960 sd0"

-new-
"if you use GPT for UEFI booting, do: # fdisk -gy -b 532480 sd0"

Pascal


Re: Recent changes in the FAQ.

2023-03-03 Thread Pascal Deveaux
Thank you

73 de Pascal


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: 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 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
install /bin should have 41 files.

--
 


Re : mkdir

2023-11-28 Thread Pascal Deveaux
Interesting... because I was testing accents on my French keyboard.


De : Crystal Kolipe 
Envoyé : dimanche 26 novembre 2023 22:54
À : Pascal Deveaux 
Cc : Zé Loff ; misc@openbsd.org 
Objet : Re: mkdir

On Thu, Nov 23, 2023 at 05:14:42PM +, Pascal Deveaux wrote:
> all files are present in /bin/ mkdir. Oddly enough after several attempts I
> was able to create the directory

You probably typed:

$ mkdir[some unprintable character] test

For example, if you type 'mkdir', then hit ALT-ENTER, then ' test', you will
get exactly the error message you first reported:

ksh: mkdir: not found

Then, I'm guessing that instead of typing it again, you just hit 'cursor up'
to get the line back from the shell's command history, which would include the
unprintable character.

Eventually, when you typed it again without the unprintable character, it
worked.

Try:

$ mkdir[ALT-ENTER] test 2> /dev/stdout | hexdump -C

And you will get the following:

  6b 73 68 3a 20 6d 6b 64  69 72 8d 3a 20 6e 6f 74  |ksh: mkdir.: not|
0010  20 66 6f 75 6e 64 0a  | found.|
0017

Notice the 0x8d byte following 'mkdir'.  This is 0x0d, (ENTER), plus 0x80 as
a result of seting bit 7 by pressing ALT.


Re: smtpd outgoing mail configuration

2024-05-16 Thread Pascal Deveaux
The command
# chown root:_smtpd /etc/mail/secrets
Return : group smtpd doesn't exist

17 mai 2024 10:32:19 Otto Moerbeek :

> On Fri, May 17, 2024 at 08:12:27AM +0200, fr...@lilo.org wrote:
> 
>> How to forward outgoing mail to a remote SMTP server with smtpd?
>> 
>> I found this page, but it's out of date I think.
>> https://romanzolotarev.com/openbsd/smtpd-forward.html
>> 
>> Tks
>> Pascal
> 
> man smtpd.conf, first exmaple
> 
>     -Otto

-- 
Pascal