boot> bsd.rd
This will boot the kernel named bsd.rd
from the first partition
of the first recognized hard disk.
boot> boot hd1d:/bsd.rd
https://man.openbsd.org/boot.8
- reads /etc/boot.conf
- /bsd or /bsd.rd
- https://ftp.openbsd.org/pub/OpenBSD/7.3/amd64/INSTALL.amd64
- https://cdn.openbsd.org/pub/OpenBSD/7.3/amd64/install73.img
- https://cdn.openbsd.org/pub/OpenBSD/
File Sets
The complete OpenBSD installation is broken up into a number of file sets:
bsd
| The kernel (required) |
bsd.mp
| The multi-processor kernel (only on some platforms) |
bsd.rd
| The ramdisk kernel |
base73.tgz
| The base system (required) |
comp73.tgz
| The compiler collection, headers and libraries |
man73.tgz
| Manual pages |
game73.tgz
| Text-based games |
xbase73.tgz
| Base libraries and utilities for X11
(requires xshare73.tgz )
|
xfont73.tgz
| Fonts used by X11 |
xserv73.tgz
| X11's X servers |
xshare73.tgz
| X11's man pages, locale settings and includes |
https://man.openbsd.org/fw_update
https://man.openbsd.org/vnconfig
# vnconfig install73.img vnd0 # mount /dev/vnd0a /mnt # fw_update -Fv -p /mnt iwm # umount /mnt # vnconfig -u vnd0
firmware.openbsd.org
https://man.openbsd.org/syspatch
https://man.openbsd.org/rc
https://man.openbsd.org/rc.d
/etc/rc.d
httpd_flags=NO
edit /etc/rc.conf.local as update overwrite /etc/rc.conf
# rcctl enable apmd # rcctl set apmd flags -A # rcctl start apmd
$ doas -u root crontab -l
https://man.openbsd.org/doas
/etc/master.passwd
reset pw
boot -s
fsck -p / && mount -uw /
fsck -p /usr && mount /usr
passwd
The ntpd(8) daemon is enabled by default and will set the clock based on data received from NTP peers.
timezone
ln -fs /usr/share/zoneinfo/EST5EDT /etc/localtime
-
If logging in via xenodm(1),
add
export LC_CTYPE="en_US.UTF-8"
to your~/.xsession
before starting the window manager. See customizing X for more details. -
If logging in via the text console, add
export LC_CTYPE="en_US.UTF-8"
to your~/.profile
. The text console's UTF-8 support is a work in progress, and some non-ASCII characters may not display properly.
Comments
Post a Comment