Skip to content

Instantly share code, notes, and snippets.

View tomazursic's full-sized avatar

Tomaz Ursic tomazursic

View GitHub Profile
@tomazursic
tomazursic / ipv6_HE.rst
Last active August 27, 2018 09:50
Setup ipv6 for Hurricane Electric

IPv6

dig aaaa ipv6.he.net
host -t aaaa ipv6.he.net
nslookup -tyle=aaa ipv6.he.net

ping6 <host> -c 1 -n
@tomazursic
tomazursic / commandline_gems.rst
Last active July 10, 2017 08:37
Commandline gems

CREATE DISK IMAGE USING DD AND PV

# bring img on sd card
sudo pv -tpreb name.img | sudo dd of=/dev/mmcblk0 bs=4M
# create image from sd card
sudo pv -tpreb /dev/mmcblk0 | sudo dd of=name.img bs=4M
@tomazursic
tomazursic / ubuntu-ppa.md
Last active June 30, 2017 21:45
Ubuntu ppa

Google Chrome

App Type: Internet Brows

Command:


    wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
    sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'