Skip to content

Instantly share code, notes, and snippets.

View elyezer's full-sized avatar

Elyézer Rezende elyezer

View GitHub Profile
@elyezer
elyezer / stop_vnc.sh
Last active August 29, 2015 14:06 — forked from dimacus/stop_vnc.sh
#!/bin/bash +e
# allow change to pass-in display argument
DISPLAY=$1
: ${DISPLAY:=:1}
export DISPLAY
echo "=== network before $0 ==="
netstat -na | grep "LISTEN "
echo
@elyezer
elyezer / start_vnc.sh
Last active August 29, 2015 14:06 — forked from dimacus/start_vnc.sh
#!/bin/bash -e
# allow change to pass-in display argument
DISPLAY=$1
: ${DISPLAY:=:1}
export DISPLAY
echo "Starting VNC server"
vncserver ${DISPLAY} -geometry 1280x1024
@elyezer
elyezer / gist:7933471
Last active December 31, 2015 04:19 — forked from omaciel/gist:7811339

Fork It

  • Add Robottelo as a remote repository to your fork
(master) $ git remote add upstream git@github.com:omaciel/robottelo.git
  • Fetch latest upstream code