(solution) colemak layout not used in console after install of GhostBSD

After installing GhostBSD, selected keyboard layout was used in X/xorg, but not in console. According to this vt is the current default console. Keyboard layout is in
Code:
/usr/share/vt/keymap/colemak.acc.kbd

Solution: edit
Code:
/etc/defaults/rc.conf keymap="colemak.acc.kbd"
and
Code:
/etc/rc.conf keymap="colemak.acc.kbd"

Additionally, renamed keymap file in syscons for clarity:
Code:
cd /usr/share/syscons/keymap/ && cp colemak.iso15.acc.kbd colemak.acc.kbd
(likely unnecessary, but if syscons was used, it would not load due to the naming inconsistency)

This is a note in case anyone else experiences the same issue.
 
Back
Top