0

One of the open source web crawlers (Heritrix) requires Java to run. I have to install this on my CENTOS via the command line (aptitude). How?

Alex
  • 8,471
  • 26
  • 75
  • 99
  • Quick note: The standard package manager for CentOS is YUM. Aptitude is a package manager for Debian and Ubuntu Linux or more generally, DEB-based Linux distributions, in contrast to RPM-based distributions like CentOS. – joschi Oct 08 '09 at 21:11

1 Answers1

2

Here is a list of good HOWTOs for Java on Centos.

BTW, CentOS' package manager is called yum. It generally works like aptitude, like

yum search $packagename
yum install $packagename
yum remove $packagename
yum check-update
yum upgrade

Zoredache
  • 130,897
  • 41
  • 276
  • 420
PEra
  • 2,875
  • 18
  • 14