OpenBSD : Installation de bash

1/ Installation de 'bash'.

local$ sudo su
local# 
local# pkg_add bash

2/ Changement de shell.

local# chsh -s /usr/local/bin/bash
local# exit
local$ 

3/ Configuration du profile de l'utilisateur 'util01'.

Ouvrir :

~/.bashrc

Ajouter :

export PS1="[\u@\h \W]"

4/ Configuration du démarrage de l'utilisateur 'util01'.

Ouvrir :

~/.profile

Ajouter à la fin :

if [ -s ~/.bashrc ]; then
source ~/.bashrc;
fi

5/ Lancer bash.

local$ bash 
[util01@local ~]