-
Notifications
You must be signed in to change notification settings - Fork 6
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
Non root install #6
base: ubuntu14.04/v1.1
Are you sure you want to change the base?
Changes from 1 commit
2bb35a8
cd21e3f
becd6f3
4a87f7f
5e8fbd9
dc86e93
caaa0bb
a966b79
92bda18
3d15fcf
74bf7d9
b66eae0
31e9b73
9d08ddd
bfce3b7
c78f9ba
55a61f3
4b29611
2568739
fcaf3d0
353bacb
88e9fa3
a3c77a4
6438276
727aa85
8d3b137
763a608
99eac72
c21b7ba
e8e8a0a
ff79fd1
b6fd3f0
28a9afe
83eade1
188a66f
e240d39
17d9f17
29db18f
a3328ba
f525527
1bf737d
51e8670
83267f2
a890134
90cfefd
081d1e7
d5dcf9e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ Additionally, if you are on RackSpace, you will need to disable the firewall so | |
|
||
If you need to create a new user, you can do so with:: | ||
|
||
useradd -m -d /home/user <your_user_name> | ||
adduser <your_user_name> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Inconsistent use of sudo in this section. |
||
|
||
|
||
Depending on the instance you chose, we may need to add extra space for data by formating and mounting a drive. | ||
|
@@ -69,7 +69,12 @@ packages we will need. You will need root permissions to install these:: | |
ncbi-tools-bin prodigal infernal aragorn parallel | ||
|
||
|
||
Now, with root privledges, you'll need to install the version of 'khmer' that the | ||
|
||
All Non-Root | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'User land installs' |
||
-------------------------------------------- | ||
Once you have completed all of the previous commands that require root permissions, | ||
go ahead and login as you normally would. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Drop this paragraph above |
||
Now you'll need to install the version of 'khmer' that the | ||
paper is currently using.:: | ||
|
||
cd ${HOME} | ||
|
@@ -81,11 +86,7 @@ paper is currently using.:: | |
pip install --upgrade numpy | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mr-c Added this line to fix:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is the python-numpy Debian package new enough to work? On Tue, Feb 10, 2015, 23:40 Michael Wright notifications@github.com wrote:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wrong URL, we're running Ubuntu Trusty: On Wed, Feb 11, 2015, 10:47 Michael Crusoe michael.crusoe@gmail.com wrote:
|
||
|
||
|
||
All Non-Root | ||
-------------------------------------------- | ||
Once you have completed all of the previous commands that require root permissions, | ||
go ahead and login as you normally would. | ||
Now we can go ahead and add the ``~/bin`` to our path:: | ||
Now we can go ahead and add ``~/bin`` to our path:: | ||
|
||
echo 'export PATH=${PATH}:${HOME}/bin' >> ${HOME}/.bashrc | ||
source ${HOME}/.bashrc | ||
|
@@ -95,6 +96,7 @@ We need to install Velvet. (We need to do this the old fashioned way to enable l | |
sizes):: | ||
|
||
mkdir -p ${HOME}/src/velvet | ||
mkdir -p ${HOME}/bin | ||
cd ${HOME}/src/velvet | ||
curl -O http://www.ebi.ac.uk/~zerbino/velvet/velvet_1.2.10.tgz | ||
tar xzf velvet_1.2.10.tgz | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to do a
mkdir -p
first here as well