Xterm: Nenhum caminho absoluto encontrado para o shell: 500

1

Depois de sshing (usando o putty com o X11 ativado) na minha máquina virtual, tentei abrir uma janela do xterm. No entanto, o seguinte comando:

xterm -sb 500

ou até mesmo

/usr/bin/xterm -sb 500

retorna o erro:

xterm: No absolute path found for shell: 500

Eu não consigo descobrir o que o erro significa!

EDITAR:

ls -la /usr/bin/xterm
-rwxr-xr-x 1 root root 450888 Sep 28  2012 /usr/bin/xterm

alias xterm
-bash: alias: xterm: not found


DISTRIB_DESCRIPTION="Ubuntu 12.10"
NAME="Ubuntu"
VERSION="12.10, Quantal Quetzal"
    
por user2883071 27.12.2015 / 18:40

1 resposta

5

Talvez você quisesse dizer

xterm -sl 500

A -sb opção não usa nenhum valor.

A página manual para estas opções:

   -sb     This  option  indicates  that  some  number  of  lines that are
           scrolled off the top of the window should be saved and  that  a
           scrollbar  should  be  displayed  so  that  those  lines can be
           viewed.  This option may be turned on  and  off  from  the  "VT
           Options" menu.

e a -sl opção :

   -sl number
           This option specifies the number of lines  to  save  that  have
           been  scrolled  off the top of the screen.  This corresponds to
           the saveLines resource.  The default is "64".
    
por 27.12.2015 / 18:49

Tags