Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
https://www.reddit.com/r/JDM_WAAAT/comments/8zgkfj/server_build_nas_killer_v_20_the_terminator_dual/ 2x X5650 from this thread Aside from that build guide, a generic USB3 card and an AMD R9-200
Modify /etc/default/grub and add vfio-pci.ids=dead:beef video=efifb:off to GRUB_CMDLINE_LINUX_DEFAULT (use the PCI vid/pid of your primary GPU, not dead:beef)
| // Inspired by http://bulkan-evcimen.com/using_sequelize_migrations_with_an_existing_database | |
| var Promise = require('bluebird'); | |
| var fs = Promise.promisifyAll(require('fs')); | |
| module.exports = { | |
| up: function(migration, DataTypes, done) { | |
| var db = migration.migrator.sequelize; | |
| fs.readFileAsync(__dirname + '/initial.sql', {encoding: 'utf8'}) | |
| .then(function(initialSchema) { | |
| var tables = initialSchema.split(';'); |
| #!/bin/sh | |
| export HOME="/home/me" | |
| export PATH="$HOME/.plenv/bin:$PATH" | |
| eval "$(plenv init -)" | |
| cd $HOME/app | |
| exec carton exec -- "$1" |
| #!/bin/sh | |
| export HOME=/home/ytnobody | |
| cd $HOME/work/myapp | |
| . ~/perl5/perlbrew/etc/bashrc | |
| perlbrew use perl-5.12.3 | |
| export PERL5OPT="-Ilib" | |
| exec carton exec "$@" |
| #!/bin/bash | |
| # | |
| # Init file for Ping server daemon | |
| # | |
| # chkconfig: 2345 55 25 | |
| # description: Ping server daemon | |
| # | |
| # processname: ping | |
| # pidfile: /var/run/ping.pid |