Skip to content

Instantly share code, notes, and snippets.

@VeLKerr
VeLKerr / install_docker_from_repos.sh
Last active September 24, 2017 19:40
Script for install the newest Docker version
#! /usr/bin/env bash
apt-get update
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository \
@VeLKerr
VeLKerr / mpi_centos.sh
Last active September 12, 2017 01:11
Commands for preparing pure CentOS v.6 machine to MCS
# Basic MPI packages
# But it still causes error:
# make: mpic++: Command not found
# during build of programs
yum update -y
yum install mc git openmpi openmpi-devel environment-modules -y
module add openmpi-x86_64
which mpirun
# This cmd resolve the issue