Skip to content

Commit 494b163

Browse files
committed
updating install docs with missing dependencies, and fixing all repo urls
1 parent 2821c8f commit 494b163

6 files changed

Lines changed: 29 additions & 30 deletions

File tree

_posts/recipes/2016-10-01-building-singularity-debian.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This is for people who know what's going on, and just want help remembering the
2020

2121

2222
git init .
23-
git remote add lbl git@github.com:gmkurtzer/singularity.git
23+
git remote add lbl git@github.com:singularityware/singularity.git
2424
git remote add stanford git@github.com:vsoch/singularity.git
2525
git fetch lbl
2626

@@ -179,7 +179,7 @@ Singuarity has their repository in Github, so cloning the repository is just a m
179179
First, create a blank repository, add the upstream Github as a source, and fetch:
180180

181181
git init .
182-
git remote add lbl git@github.com:gmkurtzer/singularity.git
182+
git remote add lbl git@github.com:singularityware/singularity.git
183183
git fetch lbl
184184

185185
Next, add a new remote representing your upstream repository:
@@ -207,7 +207,7 @@ From time to time, you should pull in upstream changes, so that your repository
207207
First, create a blank repository, and add both your remote and the upstream remote. Then, fetch from both:
208208

209209
git init .
210-
git remote add lbl git@github.com:gmkurtzer/singularity.git
210+
git remote add lbl git@github.com:singularityware/singularity.git
211211
git remote add stanford git@github.com:vsoch/singularity.git
212212
git fetch --all
213213

pages/docs/admin-docs/admin-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can download the source code either from the latest stable tarball release o
2323
```bash
2424
$ mkdir ~/git
2525
$ cd ~/git
26-
$ git clone https://github.com/gmkurtzer/singularity.git
26+
$ git clone https://github.com/singularityware/singularity.git
2727
$ cd singularity
2828
$ ./autogen.sh
2929
```

pages/docs/install/install-linux.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@ $ make
2424
$ sudo make install
2525
```
2626

27+
If you get an error that you have packages missing, for example on Ubuntu 16.04:
28+
29+
```bash
30+
./autogen.sh
31+
+libtoolize -c
32+
./autogen.sh: 13: ./autogen.sh: libtoolize: not found
33+
+aclocal
34+
./autogen.sh: 14: ./autogen.sh: aclocal: not found
35+
+autoheader
36+
./autogen.sh: 15: ./autogen.sh: autoheader: not found
37+
+autoconf
38+
./autogen.sh: 16: ./autogen.sh: autoconf: not found
39+
+automake -ca -Wno-portability
40+
./autogen.sh: 17: ./autogen.sh: automake: not found
41+
```
42+
43+
then you need to install dependencies:
44+
45+
46+
```bash
47+
sudo apt-get install -y build-essential libtool autotools-dev automake autoconf
48+
```
49+
2750
### Option 2: Download the latest development code
2851
To download the most recent development code, you should use Git and do the following:
2952

pages/docs/user-docs/docs-export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ EXAMPLES:
3030
For additional help, please visit our public documentation pages which are
3131
found at:
3232

33-
http://gmkurtzer.github.io/singularity
33+
http://singularityware.github.io/singularity
3434
```
3535

3636
More details coming soon.

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

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,6 @@ $ make
1818
$ sudo make install
1919
```
2020

21-
If you get an error that you have packages missing, for example on Ubuntu 16.04:
22-
23-
24-
```bash
25-
./autogen.sh
26-
+libtoolize -c
27-
./autogen.sh: 13: ./autogen.sh: libtoolize: not found
28-
+aclocal
29-
./autogen.sh: 14: ./autogen.sh: aclocal: not found
30-
+autoheader
31-
./autogen.sh: 15: ./autogen.sh: autoheader: not found
32-
+autoconf
33-
./autogen.sh: 16: ./autogen.sh: autoconf: not found
34-
+automake -ca -Wno-portability
35-
./autogen.sh: 17: ./autogen.sh: automake: not found
36-
```
37-
38-
then you need to install dependencies:
39-
40-
41-
```bash
42-
sudo apt-get install -y build-essential libtool autotools-dev automake autoconf
43-
```
44-
4521
You should note that the installation prefix is `/usr/local` but the configuration directory is `/etc`. This is done such that the configuration file is in the traditionally found location. If you omit that configure parameter, the configuration file will be found within `/usr/local/etc`.
4622

4723

pages/releases/releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ folder: releases
77
toc: false
88
---
99

10-
<p>For all releases, please go to Singularity's <a href="https://github.com/gmkurtzer/singularity/releases" target="_blank">Github page</a>.</p>
10+
<p>For all releases, please go to Singularity's <a href="https://github.com/singularityware/singularity/releases" target="_blank">Github page</a>.</p>
1111

1212
### Downloads
1313

0 commit comments

Comments
 (0)