Xterm: シェルへの絶対パスが見つかりません: 500

Xterm: シェルへの絶対パスが見つかりません: 500

私の仮想マシンにSSHで接続した後(X11がアクティブなパテを使用)、xtermウィンドウを開いてみました。ただし、次のコマンドは次のとおりです。

xterm -sb 500

でも

/usr/bin/xterm -sb 500

戻りエラー:

xterm: No absolute path found for shell: 500

このエラーが何を意味するのかわからないようです。

編集する:

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"

ベストアンサー1

おそらくあなたは

xterm -sl 500

これ-sbオプション使用価値がありません。

これ手動これらのオプションのページ:

   -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.

そして-slオプション:

   -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".

おすすめ記事