Boot up with an Fedora Live USB stick.
- Run
vgs
to check if there's any space:
$ sudo vgs
VG #PV #LV #SN Attr VSize VFree
fedora 1 3 0 wz--n- <237.28g 0
See official doc: Using Go Guru
go get golang.org/x/tools/cmd/guru
guru -help
Guru command line usage:
#!/usr/bin/env bash | |
# Builds Polybar on Fedora-based systems | |
# Tested on Fedora 25, Fedora 26 and Korora 25, untested on others | |
# To get started: | |
# | |
# wget -O- https://gist.githubusercontent.com/nathanchere/22491daf4f917b100a35e5c284a5fec5/raw/install-polybar-ex.sh | bash | |
sudo dnf install -y cmake @development-tools gcc-c++ i3-ipc jsoncpp-devel alsa-lib-devel wireless-tools-devel libmpdclient-devel libcurl-devel cairo-devel xcb-proto xcb-util-devel xcb-util-wm-devel xcb-util-image-devel |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# Create associative arrays | |
declare -A interior=() | |
declare -A exterior=() | |
# Make sure ethtool is installed on this host | |
apt-get install -y ethtool | |
# For each container |
global_environment_variables: | |
- "VAR=things" |
diff --git a/requirements.txt b/requirements.txt | |
index c1545a9..e8e0a9d 100644 | |
--- a/requirements.txt | |
+++ b/requirements.txt | |
@@ -8,7 +8,7 @@ pexpect>=3.1,<=3.3 | |
requests>=1.1,<=2.6.0 | |
cloudlib>=0.4.0 | |
wsgiref==0.1.2 | |
-pip==1.5.6 | |
-wheel==0.24.0 |
#![feature(collections)] | |
use std::io::prelude::*; | |
use std::fs::File; | |
use std::io::BufReader; | |
fn main() { | |
let args: Vec<String> = std::env::args().collect(); | |
let filename = args[1].clone(); |
# Prefix and cycle | |
set-option -g prefix C-\\ | |
bind C-\ last-window | |
# Reload config | |
bind r source-file ~/.tmux.conf | |
# Mouse mode | |
set -g mode-mouse on | |
set -g mouse-resize-pane on |
#!/usr/bin/env python | |
import requests | |
from keystoneclient.contrib.auth.v3 import saml2 | |
from keystoneclient import session | |
# project id you want to scope to | |
VALID_PROJECT_ID = 'your_project_id' |