diff --git a/source/tutorial/install-mongodb-on-linux.txt b/source/tutorial/install-mongodb-on-linux.txt index 68446c23ead..b826b211ff0 100644 --- a/source/tutorial/install-mongodb-on-linux.txt +++ b/source/tutorial/install-mongodb-on-linux.txt @@ -42,18 +42,16 @@ most cases you will want to download the 64-bit version of MongoDB. .. code-block:: sh - curl http://downloads.mongodb.org/linux/mongodb-linux-x86_64-x.y.z.tgz > mongo.tgz + curl http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.2.0.tgz > mongo.tgz If you need to run the 32-bit version, use the following command. .. code-block:: sh - curl http://downloads.mongodb.org/linux/mongodb-linux-i686-x.y.z.tgz > mongo.tgz + curl http://downloads.mongodb.org/linux/mongodb-linux-i686-2.2.0.tgz > mongo.tgz .. note:: - Replace x.y.z with the current stable version (i.e. |version|). - You may also choose to install a development release, in which case you will need to specify that version number above. @@ -71,7 +69,7 @@ extract the files from the archive: .. code-block:: sh - cp -R -n mongodb-osx-20??-??-??/ mongodb + cp -R -n mongodb-linux-x86_64-2.2.0/ mongodb You can find the :program:`mongod` binary, and the binaries all of the associated MongoDB utilities, in the ``bin/`` directory within the diff --git a/source/tutorial/install-mongodb-on-os-x.txt b/source/tutorial/install-mongodb-on-os-x.txt index c6c4a70e8a5..3ee364d6f15 100644 --- a/source/tutorial/install-mongodb-on-os-x.txt +++ b/source/tutorial/install-mongodb-on-os-x.txt @@ -132,18 +132,16 @@ most cases you will want to download the 64-bit version of MongoDB. .. code-block:: sh - curl http://downloads.mongodb.org/osx/mongodb-osx-x86_64-x.y.z.tgz > mongo.tgz + curl http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.2.0.tgz > mongo.tgz If you need to run the 32-bit version, use the following command: .. code-block:: sh - curl http://downloads.mongodb.org/osx/mongodb-osx-i386-x.y.z.tgz > mongo.tgz + curl http://downloads.mongodb.org/osx/mongodb-osx-i386-2.2.0.tgz > mongo.tgz .. note:: - Replace x.y.z with the current stable version (i.e. |version|). - You may also choose to install a development release, in which case you will need to specify that version number above.