Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I check if ncurses is installed?

Tags:

linux

redhat

How can I check if ncurses is installed in a Red-Hat Linux OS? One solution is to use

dpkg -l '*ncurses*' | grep '^ii'

But I don't even have the dpkg package in my system, and since I don't have the administrative rights, I can't install it.

like image 734
MetallicPriest Avatar asked Sep 16 '13 16:09

MetallicPriest


1 Answers

On RedHat based systems there is (mostly) no dpkg but you can use rpm -qa | grep ncurse

like image 154
deagh Avatar answered Oct 01 '22 18:10

deagh