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
1.download latest release barge.img file (13MB) from: https://github.com/bargees/barge-os/releases | |
2.login and goto https://cloud.digitalocean.com/images/custom_images | |
3.click "Upload Image" and select barge.img to upload | |
4.Create Droplets/Custom images/barge.img | |
5.ssh bargee@<vps ip> (password is also bargee) | |
6.sudo fdisk -l, found the "EndLBA" is <26635> | |
7.sudo fdisk /dev/vda, | |
Command (m for help): n, | |
Partition type: p, | |
Partition number (1-4): 2, |
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
module VagrantPlugins | |
module GuestLinux | |
class Plugin < Vagrant.plugin("2") | |
guest_capability("linux", "change_host_name") { Cap::ChangeHostName } | |
guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks } | |
end | |
end | |
end | |
Vagrant.configure(2) do |config| |
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
# see https://github.com/mitchellh/vagrant/pull/7574 | |
curl -s https://github.com/mitchellh/vagrant/commit/b57b0e0d48fe8b4196ca6b7e01bb6c1ecb4b69f9.patch \ | |
| sudo patch -p1 -d /opt/vagrant/embedded/gems/gems/vagrant-1.8.4 |
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
// ==Taberareloo== | |
// { | |
// "name" : "WikiHub Model for RAC Articles" | |
// , "description" : "Post an article to https://rac.wikihub.io/articles" | |
// , "include" : ["background"] | |
// , "version" : "0.0.2" | |
// , "downloadURL" : "https://gist.githubusercontent.com/raw/87ea769b18357185f27babb24e471a31/model.wikihub.rac.tbrl.js" | |
// } | |
// ==/Taberareloo== |
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/bash | |
# Save docker images | |
ds() { | |
docker images | \ | |
cut -d ' ' -f 1 | \ | |
tail -n +2 | \ | |
xargs -t -n 1 -I {} -P 4 \ | |
sh -c 'docker save {} | bzip2 > $(echo "{}" | sed "s/^.*\///").tar.bz2' | |
} |
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
// ==Taberareloo== | |
// { | |
// "name" : "Update Tumblr's favicon 2015.06" | |
// , "description" : "Update Tumblr's favicon 2015.06" | |
// , "include" : ["background"] | |
// , "version" : "0.1.1" | |
// , "downloadURL" : "https://gist.github.com/taizooo/581c4e1ad5147a963378/raw/patch.update.tumble.favicon.tbrl.js" | |
// } | |
// ==/Taberareloo== |
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 | |
KERNEL="/path/to/vmlinuz64" | |
INITRD="/path/to/initrd.img" | |
#CMDLINE="earlyprintk=serial console=ttyS0 acpi=off" | |
CMDLINE="loglevel=3 user=docker console=ttyS0 console=tty0 noembed nomodeset norestore waitusb=10:LABEL=boot2docker-data base" | |
MEM="-m 1G" | |
#SMP="-c 2" | |
NET="-s 2:0,virtio-net,en0" |
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
// ==Taberareloo== | |
// { | |
// "name" : "Fix Tumblr.getTumblelogs 2015.04" | |
// , "description" : "Fix Tumblr.getTumblelogs 2015.04" | |
// , "include" : ["background"] | |
// , "version" : "0.1.2" | |
// , "downloadURL" : "https://gist.github.com/mactkg/d19a5421c55fa40f5799/raw/ca2da60df200603d322cc7fcafb76eda1febc37f/patch.fix.tumblr.getTumblelogs.tbrl.js" | |
// } | |
// ==/Taberareloo== |
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
_ ;-.-._ /----------------------------------------------\ | |
.-" "-. \. _{ ( Welcome to HuevOS ) | |
/ \ / o )_ / \----------------------------------------------/ | |
; | ; ,__(_<` / | |
| / | \() | |
| /`\ ( | ; | |
\ \ | '-..-'; |\ | |
'.;| ,_ _.= \ /`| | |
\ '. '-' | | |
\ '=. / |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>bootp_enabled</key> | |
<true/> | |
<key>detect_other_dhcp_server</key> | |
<integer>1</integer> | |
<key>dhcp_enabled</key> | |
<array> |
NewerOlder