$ sudo -i
# vim /etc/systemd/system/disable-transparent-huge-pages.service
# systemctl enable disable-transparent-huge-pages
# systemctl start disable-transparent-huge-pages
# systemctl status disable-transparent-huge-pages
# cat /sys/kernel/mm/transparent_hugepage/enabled
# cat /sys/kernel/mm/transparent_hugepage/defrag
This file contains hidden or 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
import jenkins.model.Jenkins; | |
import hudson.model.FreeStyleProject; | |
import hudson.tasks.Shell; | |
job = Jenkins.instance.createProject(FreeStyleProject, 'job-name') | |
job.buildersList.add(new Shell('echo hello world')) | |
job.save() |
This file contains hidden or 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
worker64-ub1404:381:https://gist.githubusercontent.com/borgified/01d7f39d57fa17400260/raw/67e9f9358e5a25630d0e2702972d676dd65fbfa8/build.log | |
worker64-ub1204:381:https://gist.githubusercontent.com/borgified/6575944/raw/9daf310538234f656b53e6865e67a0953109bbe2/build.log | |
worker64-centos65:217:https://gist.githubusercontent.com/borgified/9845543/raw/da4f0e1efbe4e53e251165b5ce1171a39bcd1667/build.log | |
worker64-centos64:217:https://gist.githubusercontent.com/borgified/9845540/raw/ba4256e3fff10ce8d077b4badc309b47887d2e76/build.log | |
worker64-centos7:217:https://gist.githubusercontent.com/borgified/63973a717bd4f390cdee/raw/0364aa06a0b1f9678a81046a062a7e610fdb64f8/build.log | |
worker64-centos510:217:https://gist.githubusercontent.com/borgified/9fcc66eec54079d72645/raw/5551f722f81a5075f0f6a285433e645cfea77d3a/build.log | |
worker32-centos65:217:https://gist.githubusercontent.com/borgified/f80ffd9199d194de88d9/raw/9f82153f5cdff7d0d3c005bdc1a0cf28ff96068c/build.log | |
worker64-centos65:216:https://gist.githubusercontent.com/borgified |
This file contains hidden or 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 | |
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F" "http://download.oracle.com/otn-pub/java/jdk/7u25-b15/jdk-7u25-linux-x64.rpm" -O jdk-7u25-linux-x64.rpm | |
rpm -ivh jdk-7u25-linux-x64.rpm | |
rpm -ivh http://rpm-preview.neo4j.org.s3.amazonaws.com/neo4j-1.9.3-1.noarch.rpm --nodeps | |
service neo4j start |
This file contains hidden or 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
set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab | |
set smartindent | |
colorscheme delek | |
cmap w!! %!sudo tee > /dev/null % | |
set nu |