Skip to content

Instantly share code, notes, and snippets.

# install vagrant
macmini:vagrant tru$ VERS=1.9.1
macmini:vagrant tru$ curl https://releases.hashicorp.com/vagrant/${VERS}/vagrant_${VERS}.dmg > vagrant_${VERS}.dmg
macmini:vagrant tru$ curl https://releases.hashicorp.com/vagrant/${VERS}/vagrant_${VERS}_SHA256SUMS > vagrant_${VERS}_SHA256SUMS
macmini:vagrant tru$ grep vagrant_${VERS}.dmg vagrant_${VERS}_SHA256SUMS | shasum -a 256 -c && \
macmini:vagrant tru$ hdiutil mount vagrant_${VERS}.dmg && \
macmini:vagrant tru$ sudo installer -pkg /Volumes/Vagrant/Vagrant.pkg -target /
macmini:vagrant tru$ hdiutil unmount /Volumes/Vagrant
# installing VirtualBox
macmini:vagrant tru$ VERSVB=5.1.14
@nicksan2c
nicksan2c / slurm-tips-and-tricks.txt
Created March 22, 2017 04:12
Slurm Tips and Tricks
show all non-responsive nodes
% sinfo -d
show all drained nodes
% sinfo -d | grep drain
show all dead nodes
% sinfo -d | grep dead
show job size, availability, time limit and node status by partition
@nicksan2c
nicksan2c / grant-writing
Created March 22, 2017 04:14
Grant Writing
http://www.advancedclustering.com/how-strong-is-your-grant-proposal-for-hpc-funding/
http://www.advancedclustering.com/high-performance-computing-grant-proposal-writing/
http://www.advancedclustering.com/grant-writing-white-paper/
@nicksan2c
nicksan2c / terminal-emulators-for-windows.txt
Last active March 22, 2017 04:31
Terminal Emulators for Windows
http://www.thewindowsclub.com/free-ssh-client-software-for-windows
http://mobaxterm.mobatek.net/features.html
https://en.wikipedia.org/wiki/List_of_terminal_emulators#Microsoft_Windows
https://www.slant.co/topics/1552/~terminal-emulators-for-windows
@nicksan2c
nicksan2c / provisioning-systems.txt
Created March 22, 2017 04:22
Provisioning Systems
http://sedici.unlp.edu.ar/bitstream/handle/10915/23622/4804-A_Comparison_of_Provisioning_Systems_for_Beowulf_Clusters.pdf
@nicksan2c
nicksan2c / aws-certification.md
Created April 15, 2017 11:12 — forked from miglen/aws-certification.md
AWS Certification guide and notes on how to prepare for the aws associate certification architect, sysops and developer exams


AWS Certification notes

Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.

To pass AWS certification, you should have:

  • Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
  • Hands on experience with AWS services.
@nicksan2c
nicksan2c / 2016-devops-conf-playlist.md
Created April 15, 2017 11:15 — forked from miglen/2016-devops-conf-playlist.md
2016 DevOps Conferences - Video playlists
@nicksan2c
nicksan2c / README.md
Created April 15, 2017 20:45 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed


@nicksan2c
nicksan2c / props.conf
Created April 16, 2017 20:31 — forked from darylrobbins/props.conf
AWS Splunk Configuration
[source::.../var/log/messages]
sourcetype = linux_messages_syslog
[source::.../var/log/secure]
sourcetype = linux_secure
[source::.../var/log/dmesg]
sourcetype = dmesg
[source::.../var/log/cron]
@nicksan2c
nicksan2c / Vagrantfile
Created April 16, 2017 20:34
Install Splunk on Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 8000, host: 8000
config.vm.network "forwarded_port", guest: 8089, host: 8089
config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
end