Skip to content

Commit 3eb59aa

Browse files
committed
updating version of singularity in linux install docs to close #54
1 parent ad99aef commit 3eb59aa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pages/docs/install/install-linux.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ You can try the following two options:
1313
### Option 1: Download latest stable release
1414
You can always download the latest tarball release from <a href="{{ site.repo }}/releases" target="_blank">Github</a>
1515

16-
For example, here is how to download version `2.2` and install:
16+
For example, here is how to download version `2.2.1` and install:
1717

1818
```bash
19-
VERSION=2.2
19+
VERSION=2.2.1
2020
wget https://github.com/singularityware/singularity/releases/download/$VERSION/singularity-$VERSION.tar.gz
2121
tar xvf singularity-$VERSION.tar.gz
2222
cd singularity-$VERSION
@@ -99,7 +99,7 @@ To build a deb package for Debian/Ubuntu/LinuxMint invoke the following commands
9999

100100
```bash
101101
$ fakeroot dpkg-buildpackage -b -us -uc # sudo will ask for a password to run the tests
102-
$ sudo dpkg -i ../singularity-container_2.2-1_amd64.deb
102+
$ sudo dpkg -i ../singularity-container_2.2.1-1_amd64.deb
103103
```
104104

105105
Note that the tests will fail if singularity is not already installed on your system. This is the case when you run this procedure for the first time.

pages/docs/user-docs/docs-quick-start-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: docs-quick-start-installation
55
folder: docs
66
---
77

8-
If you already have Singularity installed, or if you are using Singularity from your distribution provider and the version they have included version 2.2 or newer, you may skip this section. Otherwise, it is recommended that you install or upgrade the version of Singularity you have on your system. The following commands will get you going, and install Singularity to `/usr/local`. If you have an earlier version of Singularity installed, you should first remove it before continuing with the following installation commands.
8+
If you already have Singularity installed, or if you are using Singularity from your distribution provider and the version they have included version 2.2.1 or newer, you may skip this section. Otherwise, it is recommended that you install or upgrade the version of Singularity you have on your system. The following commands will get you going, and install Singularity to `/usr/local`. If you have an earlier version of Singularity installed, you should first remove it before continuing with the following installation commands.
99

1010
```bash
1111
$ mkdir ~/git
@@ -148,7 +148,7 @@ Formatting image with ext3 file system
148148
Done.
149149
```
150150

151-
Think of this as an empty bucket of a given size, and you can fill that bucket up to the specified size. By default the size in Singularity v2.2 is 768MiB (but this has changed from 512 - 1024 in different versions). You can override the default size by specifying the `--size` option in MiB as follows:
151+
Think of this as an empty bucket of a given size, and you can fill that bucket up to the specified size. By default the size in Singularity v2.2.1 is 768MiB (but this has changed from 512 - 1024 in different versions). You can override the default size by specifying the `--size` option in MiB as follows:
152152

153153
```bash
154154
$ sudo singularity create --size 2048 /tmp/container.img

0 commit comments

Comments
 (0)