Definindo o BASH como padrão na SCO

1

Eu tentei inúmeras vezes, tentando obter bash como o shell padrão no SCO, e falhei.

Eu tentei o seguinte:

  1. Bash instalado - usando bash-2.05a.pkg
  2. Readline instalado - usando readline-4.2a.pkg

Eu os instalei usando:

pkgadd -d - < bash-2.05a.pkg
pkgadd -d - < readline-4.2a.pkg

Em seguida, adicionei o bash ao meu .profile . Este é o conteúdo:

stty intr '^C'

#SHELL=/bin/sh
SHELL=/usr/local/bin/bash
HOME=/
PATH=/bin:/etc:/usr/bin:/tcb/bin:/usr/local/bin

# set terminal type
#eval 'tset -m scoansi:${TERM:-scoansi} -m :\?${TERM:-scoansi} -e -r -s -Q'
TERM=bash
export TERM PATH SHELL HOME

[ -x /bin/mesg ] && mesg n              # if mesg is installed...

if [ -f $HOME/.kshrc -a -r $HOME/.kshrc ]; then
    # ksh88: intent is that $ENV is set only for interactive shells,
    # ksh93 easier since it doesn't source $ENV when run non-interactively.
    # $_ is set to 1.  $_flags (shell flags, e.g. ismh) is set to 0
    # Then one of the two is subtracted from their sum:
    # either $_, if ${-%%*i*} evaluates to null (will for an interactive shell),
    # or $_flags (for a non-interactive shell - i not set ).
    # ENV will only be set if the result is 0, since only ENVFILE[0] is set.
    ENV='${_ENVFILE[(_=1)+(_$-=0)-_${-%%*i*}]}'
    _ENVFILE=/.kshrc
    export ENV _ENVFILE
fi

Eu estava on-line e as pessoas sugeriram que eu fizesse isso:

# cat /etc/shells
#       @(#) shells 95.1 00/10/29
#
/bin/csh
/bin/sh
/bin/ksh
/usr/bin/scosh
/bin/bash
/usr/bin/bash

# exec /bin/bash
/bin/bash: not found

Eu até tentei pesquisar na máquina para que todos fiquem com bash , assim:

#find / -name bash*
/usr/local/bin/bash
/usr/local/bin/bashbug
/usr/local/info/bash.info
/usr/local/man/man1/bash.1
/usr/local/man/man1/bashbug.1
/usr/options/bash.name
/opt/K/SCO/lynx/5.0.7a/usr/lib/lynx/lynx_help/keystrokes/bashlike_edit_help.html
/opt/bash-2.05a.pkg
/var/adm/pkg/bash

( Nota: Não bash.rc)

#find / -name .bash*
# (nothing)

Então, como defino bash como o shell padrão no SCO?

    
por Kevdog777 13.11.2013 / 11:55

1 resposta

2

OK, descobri que precisava verificar o sistema e o software usando scoadmin . Depois disso, instalei o SCO Maintenance Pack 5 e reiniciei a máquina.

Agora, quando digito:

# bash
bash-3.1#

Começar a bater na máquina funciona muito bem!

Editar
Isso também funciona com o usuário padrão (não apenas o usuário root).

    
por 13.11.2013 / 14:06

Tags