LoginSignup
1
0

More than 5 years have passed since last update.

emacsの起動時にemacs: Cannot open termcap database fileというエラーが出る

Posted at

emacs23.4をさくらVPSのCentOSにソースからコンパイルしてインストールする

$./configure --without-x
$make
$make install

しかし実行時
$emacs
emacs: Cannot open termcap database file

となって起動できない。
調べるとlibncurses5-devが必要らしいがyumにない。
yumだとncurses-develが対応しているらしい
$sudo yum install ncurses-devel
再コンパイル
$./configure --without-x
$make
$make install

無事起動できた

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0