OpenBSD 6.4: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (+categories) |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
* IPv6 working | * IPv6 working | ||
* pkg_add working (in older | * pkg_add working (in older versions, you had to set PKG_PATH manually) | ||
Because I don't like OpenBSD's default shell so much and I want to use an editor with at least little usability, the first commands I enter is | Because I don't like OpenBSD's default shell so much and I want to use an editor with at least little usability, the first commands I enter is | ||
Line 16: | Line 16: | ||
pkg_add -v mc wget | pkg_add -v mc wget | ||
== Shutting down the system == | |||
halt -p | |||
[[Category:OpenBSD]] | |||
[[Category:BSD]] |
Latest revision as of 18:09, 3 January 2023
Introduction
Right after installation of OpenBSD 6.4, you already have
- IPv6 working
- pkg_add working (in older versions, you had to set PKG_PATH manually)
Because I don't like OpenBSD's default shell so much and I want to use an editor with at least little usability, the first commands I enter is
pkg_add -v bash nano chsh -s /usr/local/bin/bash echo "source $HOME/.bashrc" > ~/.bash_profile echo "PS1='\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w \[\033[00m\]\$ '" > ~/.bashrc
Interesting packages
pkg_add -v mc wget
Shutting down the system
halt -p