X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/73812c5a32581a7f72922dcd2e448e4d4ba4d918..0af7e7b2ab33ad8766c4c0b537070dfddbadf37c:/doc/install/install-shell-server.html.textile.liquid diff --git a/doc/install/install-shell-server.html.textile.liquid b/doc/install/install-shell-server.html.textile.liquid index dd5995ffdd..ea6df87553 100644 --- a/doc/install/install-shell-server.html.textile.liquid +++ b/doc/install/install-shell-server.html.textile.liquid @@ -36,25 +36,34 @@ Next, install the arvados-cli Ruby gem. If you're using RVM: If you're not using RVM: -
~$ sudo gem install arvados-cli
+
~$ sudo -i gem install arvados-cli
 
h2. Install the Python SDK and utilities -{% include 'note_python27_sc' %} +{% assign rh_version = "6" %} +{% include 'note_python_sc' %} -On Debian-based systems: +On CentOS 6 and RHEL 6: -
~$ sudo apt-get install python-arvados-python-client python-arvados-fuse
+
~$ sudo yum install python27-python-arvados-python-client python27-python-arvados-fuse crunchrunner
 
-On Red Hat-based systems: +On other Red Hat-based systems: -
~$ sudo yum install python27-python-arvados-python-client python27-python-arvados-fuse
+
~$ echo 'exclude=python2-llfuse' | sudo tee -a /etc/yum.conf
+~$ sudo yum install python-arvados-python-client python-arvados-fuse crunchrunner
+
+ + +On Debian-based systems: + + +
~$ sudo apt-get install python-arvados-python-client python-arvados-fuse crunchrunner
 
@@ -121,17 +130,28 @@ If you're not using RVM: Install cron. -On Debian-based systems: +On CentOS 6 and RHEL 6: -
~$ sudo apt-get install cron
+
~$ sudo yum install cronie
+~$ sudo chkconfig crond on
+~$ sudo service crond start
 
-On Red Hat-based systems: +On other Red Hat-based distributions: -
~$ sudo yum install cron
+
~$ sudo yum install cronie
+~$ sudo systemctl enable crond
+~$ sudo systemctl start crond
+
+ + +On Debian-based systems: + + +
~$ sudo apt-get install cron