Last active
August 21, 2016 11:12
-
-
Save mikeifomin/0fd6bd495c7eb8f0e0b55d4fc93ac260 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this is just a reminder, NOT WORKING as a install script | |
sudo add-apt-repository ppa:graphics-drivers/ppa | |
sudo apt-get update && | |
sudo apt-get install nvidia-367 | |
sudo apt-get install apt-transport-https ca-certificates | |
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
echo 'deb https://apt.dockerproject.org/repo ubuntu-trusty main' > /etc/apt/sources.list.d/docker.list | |
sudo apt-get update | |
sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual | |
sudo apt-get install docker-engine | |
sudo usermod -aG docker $USER | |
# config raid | |
sudo mdadm --assemble --scan | |
sudo mkdir /raid1 | |
sudo chmod 777 /raid1 | |
# fstab | |
# /dev/md1p1 /raid1 auto defaults,nobootwait 1 2 | |
sudo mount -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment