On Tue, Aug 27, 2024 at 02:18:29AM -0400, openbsd_fr...@mail2tor.com wrote: > I cannot install OpenBSD using flash usb media. The installer stops at > (disk, http, nfs etc). After partioning. The install USB boots up and > everythings goes well until I reach the part with the data sets. > > The installer cannot find usb media. >
Unplug and plug the USB media back on, and see if the console spits out the device, something like: sd4 at scsibus5 targ 1 lun 0: <Kingston, DataTraveler 3.0, > ... Then enter "!" on the installer prompt to drop to a shell, check if the node exists in /dev (e.g. "ls /dev/sd4*", change sd4 to whatever is relevant in your case) and if it doesn't, create it using MAKEDEV (e.g.: "cd /dev; sh ./MAKEDEV sd4"). Exit the shell to get back to the installer and see if the media is now detected. (caveat: commands above were written from memory, might not be 100% correct) --