difference between mongodb and mongodb-server

mongodb, ubuntu

Solution

Package mongodb installs full set of packages - client, admin tools, development files, mongod (mongodb daemon) and mongos (shard routing service), while mongodb-server installs only mongod and mongos (and logs / docs).

Problem

When I am trying to install mongodb in my Ubuntu box, apt-get shows me the following options mongodb mongodb-clients mongodb-dev mongodb-server Can anyone please tell me the difference between mongodb and mongodb-server?

Original source