One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 4.3.3 Kernel Configuration | |
# | |
CONFIG_64BIT=y | |
CONFIG_X86_64=y | |
CONFIG_X86=y | |
CONFIG_INSTRUCTION_DECODER=y | |
CONFIG_PERF_EVENTS_INTEL_UNCORE=y | |
CONFIG_OUTPUT_FORMAT="elf64-x86-64" |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86_64 3.19.8 Kernel Configuration | |
# | |
CONFIG_64BIT=y | |
CONFIG_X86_64=y | |
CONFIG_X86=y | |
CONFIG_INSTRUCTION_DECODER=y | |
CONFIG_PERF_EVENTS_INTEL_UNCORE=y | |
CONFIG_OUTPUT_FORMAT="elf64-x86-64" |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86_64 3.16.0-031600-generic Kernel Configuration | |
# | |
CONFIG_64BIT=y | |
CONFIG_X86_64=y | |
CONFIG_X86=y | |
CONFIG_INSTRUCTION_DECODER=y | |
CONFIG_OUTPUT_FORMAT="elf64-x86-64" | |
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" |
#!/bin/bash | |
# original script here https://gist.github.com/Garland-g/4552263 | |
# This script requires an argument for the resolution width | |
if [ -z "$1" ]; then | |
echo "Usage: script.sh resolution_width"; | |
echo " $0 1920 for a scaled resolution"; | |
echo " $0 2880 for going back to max resolution"; |
execve("/usr/bin/docker", ["/usr/bin/docker", "-d"], [/* 27 vars */]) = 0 | |
brk(0) = 0x1a9d000 | |
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fd485b25000 | |
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
open("/etc/ld.so.cache", O_RDONLY) = 3 | |
fstat(3, {st_mode=S_IFREG|0644, st_size=29801, ...}) = 0 | |
mmap(NULL, 29801, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fd485b1d000 | |
close(3) = 0 | |
open("/lib64/libpthread.so.0", O_RDONLY) = 3 | |
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340]\0\0356\0\0\0"..., 832) = 832 |
Foreman_proxy.log output: | |
D, [2014-04-10T12:04:13.315124 #2343] DEBUG -- : Reading config file /etc/dhcp/dhcpd.conf | |
D, [2014-04-10T12:04:13.315340 #2343] DEBUG -- : Reading config file /etc/dhcp/dhcpd.hosts | |
D, [2014-04-10T12:04:13.315479 #2343] DEBUG -- : Loading subnets for 127.0.0.1 | |
D, [2014-04-10T12:04:13.315620 #2343] DEBUG -- : Added 10.220.103.0/255.255.255.0 to 127.0.0.1 | |
D, [2014-04-10T12:04:13.316579 #2343] DEBUG -- : trying to find an ip address, we got {:to=>"10.220.103.220", :mac=>nil, :from=>"10.220.103.200"} | |
D, [2014-04-10T12:04:13.318015 #2343] DEBUG -- : Loading subnet data for 10.220.103.0/255.255.255.0 | |
D, [2014-04-10T12:04:13.318914 #2343] DEBUG -- : Added testname62.foremantest (10.220.103.202 / 00:50:56:86:6b:db) to 10.220.103.0/255.255.255.0 |
IGNORE_CC_MISMATCH=1 bash NVIDIA-Linux-x86_64-337.12.run -a | |
System specs: | |
- macbook pro 15 inch retina 11,3 | |
- ubuntu 14.04 beta x64 |
#!/usr/bin/env ruby | |
### | |
### DISCLAIMER - this example is not working yet | |
### more info on this fog github issue - https://github.com/fog/fog/issues/2798 | |
### | |
require 'fog' | |
require 'pp' |