CoreOS + nfs synced folder (#217)- 9p Cent OS how-to guide (#218)
Build box for Ubuntu 14.04 LTS Trusty Final (April 17th)
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
#!/usr/bin/Rscript --vanilla | |
require(ggplot2) | |
inodeCount1 <- read.csv(sprintf("%s/%s", ".", "stats_3.csv")) | |
inodeCount2 <- read.csv(sprintf("%s/%s", ".", "stats_2.csv")) | |
summary1 <- read.csv(sprintf("%s/%s", ".", "summary_3.csv")) | |
summary2 <- read.csv(sprintf("%s/%s", ".", "summary_2.csv")) |
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
#!/bin/sh | |
## repo default configuration | |
## | |
REPO_URL='git://android.git.kernel.org/tools/repo.git' | |
REPO_REV='stable' | |
# Copyright (C) 2008 Google Inc. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); |
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
$ cd working-directory | |
$ cd hibari | |
$ repo forall -c "git branch norton-server-timestamp origin/norton-server-timestamp" | |
→ 一部エラー(Not a valid object name)になるが、それでOK。 | |
$ repo forall -c "git checkout norton-server-timestamp" | |
→ 一部エラーになるが、それでOK。 |
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
#!/home/hibari/hibari/erts-5.8.5/bin/escript | |
%% -*- erlang -*- | |
%%! -name [email protected] | |
-define(RPC_TIMEOUT, 15000). | |
-define(FAIL_MSG(Format, Args), io:format(Format, Args), timer:sleep(1000), halt(1)). | |
main([]) -> | |
HibariHome = "/home/hibari/hibari/", |
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
brick_simple_stub.erl:186: Function start/0 has no local return | |
brick_simple_stub.erl:223: Function start_main/0 has no local return | |
brick_simple_stub.erl:234: Function install_module/0 has no local return | |
brick_simple_stub.erl:237: The pattern 'ok' can never match the type binary() |
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
#!/bin/sh | |
# | |
# Bootstrapping OpsCode Chef on Joyent SmartOS | |
# | |
# Run the following commands from a terminal: | |
# zlogin UUID | |
# curl https://gist.github.com/tatsuya6502/5425523/raw/bootstrap-chef-smartos.sh | sh | |
# | |
if [ ! -f /opt/local/bin/chef-client ]; then |
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
Vagrant.configure('2') do |config| | |
config.vm.box = 'fedora20' | |
config.vm.box_url = 'https://vagrant-kvm-boxes-si.s3.amazonaws.com/fedora20-amd64-kvm-20140413.box' | |
config.vm.provider :kvm do |kvm, override| | |
kvm.memory_size = '1GB' | |
kvm.image_mode = 'clone' | |
end | |
# You can mount your box files folder on the guest. | |
# config.vm.synced_folder '/path/to/box-files', # '/home/vagrant/boxes', type: 'nfs' |
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
Vagrant.configure('2') do |config| | |
config.vm.hostname = 'centos6' | |
config.vm.box = 'centos-6.5' | |
config.vm.box_url = 'https://vagrant-kvm-boxes-si.s3.amazonaws.com/centos-6-amd64-kvm-20140413.box' | |
# config.vm.synced_folder ".", "/vagrant", type: "nfs" | |
# config.vm.network :private_network, ip: "192.168.80.50" | |
config.vm.provider :kvm do |kvm, override| | |
# kvm.gui = true |
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
Vagrant.configure('2') do |config| | |
config.vm.hostname = 'centos6' | |
config.vm.box = 'centos-6.5' | |
config.vm.box_url = 'https://vagrant-kvm-boxes-si.s3.amazonaws.com/centos-6-amd64-kvm-20140413.box' | |
config.vm.provider :kvm do |kvm, override| | |
kvm.memory_size = '512MB' | |
end | |
if Vagrant.has_plugin?("vagrant-cachier") |
OlderNewer