LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Other *NIX Forums > *BSD
User Name
Password
*BSD This forum is for the discussion of all BSD variants.
FreeBSD, OpenBSD, NetBSD, etc.

Notices


Reply
  Search this Thread
Old 04-10-2023, 09:41 AM   #1
YesItsMe
Member
 
Registered: Oct 2014
Posts: 915

Rep: Reputation: 313Reputation: 313Reputation: 313Reputation: 313
OpenBSD 7.3 is released.


Here you go:
https://www.openbsd.org/73.html

Upgrading from 7.2:
https://www.openbsd.org/faq/upgrade73.html

Enjoy!

Random finding post-installation: pkg_add could fail because of Perl version mismatch:

Quote:
Socket.c: loadable library and perl binaries are mismatched
Solution: rm -rf /usr/local/libdata/perl5/*. If you're not sure, rename the folder instead.

Last edited by YesItsMe; 04-10-2023 at 10:44 AM.
 
Old 04-13-2023, 06:50 AM   #2
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,503

Rep: Reputation: Disabled
Tried your 'solution' on my newly installed 7.3 but the repository still has lots of missing programs when trying to add extra software, tried 2 days running.

(firefox-esr/firefox - mc - mpv - pysolfc).

Unfortunately 7.3 is (seems) 'broken', it installs OK, but can't install additional programs!

EDIT: Just to be clear, it seems like the repositories got changed between 7.3-BETA & 7.3 release, which caused the problems...

Last edited by fatmac; 04-14-2023 at 12:47 PM.
 
Old 04-13-2023, 11:12 AM   #3
jmccue
Member
 
Registered: Nov 2008
Location: US
Distribution: slackware
Posts: 698
Blog Entries: 1

Rep: Reputation: 382Reputation: 382Reputation: 382Reputation: 382
Quote:
Originally Posted by fatmac View Post
Tried your 'solution' on my newly installed 7.3 but the repository still has lots of missing programs when trying to add extra software, tried 2 days running.

(firefox-esr/firefox - mc - mpv - pysolfc).

Unfortunately 7.3 is 'broken', it installs OK, but can't install additional programs!
From my experience so far, OpenBSD 7.3 is not "broke"

The issue you are referring to seems to be firefox plus I guess mpv, that is a port and is maintained by a different group then OpenBSD core.

I am have no issues at all with firefox-esr, but I do not use mpv. I would guess it is a unveil issue or a security check failing. Check /etc/firefox-esr and maybe the ports doc in question in Directory /usr/local/share/doc/pkg-readmes

Last edited by jmccue; 04-13-2023 at 11:16 AM. Reason: grammer
 
Old 04-13-2023, 12:38 PM   #4
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,503

Rep: Reputation: Disabled
The packages I am trying to install are usually in ftp.openbsd.org/pub/OpenBSD/7.3/packages/amd64/

/etc/installurl has https://cdn.openbsd.org/pub/OpenBSD
 
Old 04-13-2023, 01:46 PM   #5
jmccue
Member
 
Registered: Nov 2008
Location: US
Distribution: slackware
Posts: 698
Blog Entries: 1

Rep: Reputation: 382Reputation: 382Reputation: 382Reputation: 382
https://cdn.openbsd.org/pub/OpenBSD

is what I have and I had no issues using 'pkg_add -u'.

But the upgrade did fail for 2 packages, I forgot what the were but the error was something like "package removed from repository". I just did a pkg_delete(1) on those 2 packages, re-did pkg_add(1) and all went well.
 
Old 04-14-2023, 03:22 AM   #6
_blackhole_
Member
 
Registered: Mar 2023
Distribution: FreeBSD
Posts: 92

Rep: Reputation: 68
Jmccue, that's the norm with obsolete packages, post upgrade.

To clean up:
Code:
# pkg_delete -a
Also refer to pkg_check(8)

Though that perl issue looks like it could only be caused by a previous incomplete upgrade.

You always have to option to strip right back to base and reinstall.
 
Old 04-14-2023, 05:28 AM   #7
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,503

Rep: Reputation: Disabled
Tried....

/etc/resolve.conf - added a nameserver
ifconfig | grep AUTOCONF = ok
rcctl check dhcpleased = ok
rcctl check resolvd = ok
pkg_add -u = ok
pkg_check = ok
ping 8.8.8.8 = works
ping 199.185.178.80 = works (OpenBSD.org)

Problems with libcrypto & libssl = 'minor is too small'

Trying to add software = 'can't resolve'
 
Old 04-14-2023, 10:02 AM   #8
_blackhole_
Member
 
Registered: Mar 2023
Distribution: FreeBSD
Posts: 92

Rep: Reputation: 68
You mention in the thread on daemonforums.org that you have 'can't resolve' errors.

( https://daemonforums.org/showthread.php?t=12393 )

Then you proceed to explicitly set PKG_PATH to override /etc/installurl

This, obviously, did not fix the problem - in fact it most likely created the next problem.

You mess around with nameservers, even adding the OpenBSD mirror as a nameserver...

Then you mention that
Code:
# pkg_add -u
actually worked?

Finally you have repository mismatch errors such as "minor is too small", so I would guess that you downloaded the wrong image to start with. i.e. what you downloaded and installed was not 7.3 amd64 as you seem to think.

I'm sorry, but based on this thread and the one on daemonforums.org, you just seem out of your depth.
 
Old 04-14-2023, 12:43 PM   #9
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,503

Rep: Reputation: Disabled
Quote:
Originally Posted by _blackhole_ View Post
........

Finally you have repository mismatch errors such as "minor is too small", so I would guess that you downloaded the wrong image to start with. i.e. what you downloaded and installed was not 7.3 amd64 as you seem to think.

I'm sorry, but based on this thread and the one on daemonforums.org, you just seem out of your depth.
And now I believe I know what the problem is, & you are quite right, & I admit it, I was completely out of my depth with this problem - it seems that my '7.3' was in fact '7.3-BETA', & the repositories no longer worked with it....

Not exactly something one would think of!

Thanks for attempting to guide me through this problem all the same...
 
Old 04-14-2023, 09:13 PM   #10
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Debian, Void, Slackware, VMs
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
Cool

Just got home from holidays. OpenBSD 7.3 up and running. Set-up and package installation was smooth as silk. Many thanks to Theo and the developers.

Code:
bsd$ uname -a
OpenBSD bsd.darkstar.home 7.3 GENERIC.MP#1125 amd6
 
Old 04-15-2023, 10:02 AM   #11
Petols
LQ Newbie
 
Registered: Jan 2023
Location: Sweden
Posts: 7

Rep: Reputation: 0
7.3 crashes for me in VirtualBox.

Works in VMware.

Last edited by Petols; 04-16-2023 at 02:20 AM.
 
Old 04-16-2023, 12:39 PM   #12
YesItsMe
Member
 
Registered: Oct 2014
Posts: 915

Original Poster
Rep: Reputation: 313Reputation: 313Reputation: 313Reputation: 313
Which part of it crashes?
 
Old 04-16-2023, 12:57 PM   #13
Petols
LQ Newbie
 
Registered: Jan 2023
Location: Sweden
Posts: 7

Rep: Reputation: 0
Quote:
Originally Posted by YesItsMe View Post
Which part of it crashes?
The install, when it begins to install the sets.
 
Old 04-16-2023, 02:12 PM   #14
TheTKS
Member
 
Registered: Sep 2017
Location: Ontario, Canada
Distribution: Slackware, X/ubuntu, OpenBSD, OpenWRT
Posts: 361

Rep: Reputation: 243Reputation: 243Reputation: 243
OpenBSD 7.3 arm64 installed successfully on a Raspberry Pi 4 onto a USB SSD (Samsung T7.) A change from installation onto SD card in an SD/USB adaptor as I've always done before on my RPis. It's nicely faster than 7.2 on the SD card.

Booting handled by U Boot on a micro SD card in the Pi's SD card slot.

Installation went smoothly. Two observations:

- The installer didn't include an option to enable xenodm. That has been included in the installer in the past, but I don't remember if that was only in the amd64 version or also in the arm64 version. I added that after to /etc/rc.conf.local.

- I was considering doing full disk encryption (not needed, just to give it a try), but although I decided against it, on reading I saw that guided FDE is in the installer for some architectures, but not in arm64 yet.

The only package I've added so far is another text editor (no DE yet, will give fvwm a try for awhile), so no reports on how packages are working.

TKS
 
Old 04-17-2023, 12:18 PM   #15
DracoSentien
Member
 
Registered: May 2019
Location: Bronx New York
Distribution: Debian
Posts: 38

Rep: Reputation: Disabled
Quote:
Originally Posted by TheTKS View Post
OpenBSD 7.3 arm64 installed successfully on a Raspberry Pi 4 onto a USB SSD (Samsung T7.) A change from installation onto SD card in an SD/USB adaptor as I've always done before on my RPis. It's nicely faster than 7.2 on the SD card.



TKS
It should be faster for everyone or most because of SMP improvements and other syscall changes or improvements. It is faster on my laptop for sure.
 
1 members found this post helpful.
  


Reply

Tags
openbsd, release



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
OpenBSD: nvidia drivers, screen resolution and FreeBSD binaries on OpenBSD ::: *BSD 2 08-21-2009 04:18 AM
LXer: Fsck errors in the Linux filesystem on my OpenBSD laptop NOT caused by OpenBSD LXer Syndicated Linux News 1 08-31-2008 03:15 AM
LXer: OpenBSD: The OpenBSD Foundation LXer Syndicated Linux News 0 07-26-2007 10:31 AM
OpenBSD - Where can i get OpenBSD 3.7 ISO CD -- Please help me b:z Linux - Software 5 04-08-2005 07:09 AM
OpenBSD - Where can i get OpenBSD 3.7 ISO CD -- Please help me b:z Linux - Software 1 04-07-2005 08:46 AM

LinuxQuestions.org > Forums > Other *NIX Forums > *BSD

All times are GMT -5. The time now is 01:38 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration