Skip to content

Instantly share code, notes, and snippets.

View uglide's full-sized avatar
🇺🇦

Igor Malinovskiy uglide

🇺🇦
View GitHub Profile
@uglide
uglide / install-teamcity.md
Last active November 23, 2017 02:51 — forked from sandcastle/install-teamcity.md
Install TeamCity 9.1.6 on Ubuntu with Nginx
@uglide
uglide / chroot.sh
Last active March 14, 2024 02:28
Chroot to Installed system on LVM
#!/bin/bash
fdisk -lu
pvscan
vgscan
vgchange -a y
lvscan
mount /dev/ubuntu-vg/root /mnt
mount --bind /dev /mnt/dev
mount --bind /proc /mnt/proc
@uglide
uglide / setup.py
Last active August 29, 2015 14:21 — forked from stlehmann/setup.py
#! python3.4
from setuptools import setup
import os
import py2exe
import matplotlib
includes = ["sip",
"PyQt5",
"PyQt5.QtCore",
"PyQt5.QtGui",
@uglide
uglide / add_to_etc_exports
Created February 19, 2015 12:13
Vagrant fast shared folder (60 Mb/s)
"/home/projects/foo" 192.168.56.111(rw,async,insecure,no_subtree_check,no_acl,no_root_squash)
@uglide
uglide / Vagrantfile
Last active August 29, 2015 14:14
Openstack Manila Development Boilerplate
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "private_network", ip: "192.168.56.111"
config.vm.provider "virtualbox" do |vb|