Skip to content

Correct package names for rebranding (10gen -> mongodb) #1431

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source/tutorial/install-mongodb-on-ubuntu.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ are generally more up to date.
Package Options
---------------

The MongoDB downloads repository provides the ``mongodb-10gen`` package,
The MongoDB downloads repository provides the ``mongodb-org`` package,
which contains the latest **stable** release. Additionally you can
:ref:`install previous releases <install-ubuntu-version-pinning>` of MongoDB.

Expand Down Expand Up @@ -63,25 +63,25 @@ MongoDB:

.. code-block:: sh

sudo apt-get install mongodb-10gen
sudo apt-get install mongodb-org

When this command completes, you have successfully installed MongoDB!
Continue for configuration and start-up suggestions.

Manage Installed Versions
~~~~~~~~~~~~~~~~~~~~~~~~~

You can use the ``mongodb-10gen`` package to install previous versions
You can use the ``mongodb-org`` package to install previous versions
of MongoDB. To install a specific release, append the version number
to the package name, as in the following example:

.. code-block:: sh

apt-get install mongodb-10gen=2.2.3
apt-get install mongodb-org=2.2.3

This will install the ``2.2.3`` release of MongoDB. You can specify
any available version of MongoDB; however ``apt-get`` **will** upgrade
the ``mongodb-10gen`` package when a newer version becomes
the ``mongodb-org`` package when a newer version becomes
available. Use the following *pinning* procedure to prevent unintended
upgrades.

Expand All @@ -90,7 +90,7 @@ To pin a package, issue the following command at the system prompt to

.. code-block:: sh

echo "mongodb-10gen hold" | sudo dpkg --set-selections
echo "mongodb-org hold" | sudo dpkg --set-selections

Control Scripts
---------------
Expand Down