tags:

views:

845

answers:

3

Here is a command on free bsd

sudo pw usermod ksbuild -s /usr/local/bin/bash

how do I do the equivalent on RHEL?

+3  A: 

chsh

(Change Shell)

flolo
+3  A: 

To change the default setting of all new users, edit the setting in the defaults file: /etc/default/useradd

Ulf Lindback
+3  A: 

Or for just a specific user: usermod -s /usr/local/bin/bash ksbuild

Ulf Lindback