Skip to content

Instantly share code, notes, and snippets.

@otzoran
otzoran / memo.md
Last active August 29, 2015 13:56
git index, cache, staging area

What is git index?

see explanation

git add -p

-p, --patch
Interactively choose hunks of patch between the index and the work tree and add them to the index. This gives
the user a chance to review the difference before adding modified contents to the index.

The git index goes by many names.
apt-get install build-essential module-assistant
m-a prepare
@otzoran
otzoran / piix4_smbus.md
Last active January 29, 2023 16:45
VirtualBox piix4_smbus Error during VM boot

Problem

During VM boot we see an error from piix4_smbus and in dmesg something like:

piix4_smbus 0000:00:07.3: Host SMBus controller not enabled!

This error is caused by VM having no smbus but Ubuntu always trying to load the module. It doesn’t affect anything but is a bit annoying. Originally this error was reported on VirtualBox and Ubuntu 10.10, but I still see it in Ubuntu 13.10. It also exist on VMware Fusion.

@otzoran
otzoran / chrome-install.sh
Created August 31, 2014 12:41
Chrome Installation on Ubu - script steps - tested on 14.04
#!/bin/bash
set -ex
[[ $(id -u) == 0 ]] || { echo "Buddy needs to be root to run this"; exit 1; }
[[ $PWD == "/root" ]] || { echo "Run this from /root"; exit 1; }
# 1. Download key
wget -q -O google_signing_key.pub https://dl-ssl.google.com/linux/linux_signing_key.pub
apt-key add google_signing_key.pub
@otzoran
otzoran / truecrypt_fix.bash
Last active August 29, 2015 14:16 — forked from yiufung/truecrypt_fix.bash
Fixes annoying brew doctor messages caused by Truecrypt - tested on Yosemite
#!/usr/bin/env bash
# Author: Ori Tzoran, based on idea and gist by aaronzirbes (see evolution below)
# Tested on Mac OS X 10.10.2 (14C109)
set -e
## verify root runs this
[[ $(id -u) == 0 ]] || { echo need root; exit 1; }
#set -vx
@otzoran
otzoran / ntp_iix.md
Last active August 26, 2016 01:05
NTP Server Israel

NTP Server Israel

source: isoc-il

timeserver.iix.net.il   # 192.114.62.250 stratum-2
@otzoran
otzoran / check bash interactive.md
Last active August 29, 2015 14:26
Check if bash shell is interactive

The old way

if tty -s; then
  echo "interactive"
fi

Cons

This method does the job, but invloves process invocation (fork/exec) of tty, which is expensive in terms of performance.
But there's a worse side-effect:
If PATH is empty or wrong, calling tty will fail. When sourced for a login shell,

@otzoran
otzoran / env_ec2.sh
Created August 6, 2015 12:11
env file for Mac, brew to work with EC2
# vim: set filetype=sh :
# Purpose
# set environment variables for EC2_URL EC2_HOME JAVA_HOME CLASSPATH
# required by ec2-api-tools, used by other tools (e.g. vagrant)
# Usage:
# source this
# create local env.monsoon in a project's subdir defining:
# export AWS_PROJECT="MOCONS / rmjen"
@otzoran
otzoran / virtualbox_prereq_guest_additions.md
Last active August 29, 2015 14:27
Installing Guest Additions on Debian Ubuntu Mint etc.

Installing Guest Additions on Debian

Follow these steps to install the Guest Additions on your Debian virtual machine:

sudo -i
apt-get update && apt-get upgrade
apt-get install build-essential module-assistant
# Configure your system for building kernel modules by running:
m-a prepare
@otzoran
otzoran / Replace_Unity_by_MATE.md
Created August 9, 2015 22:07
Ubuntu: Replace Unity by MATE

The proc is explained here