Tuesday, October 7, 2014

How to add default network search domain on Ubuntu 12.04

Why?
you can use ping p1.google.com
if you added google.com to the default search domain, you only need to do ping p1.
This is especially needed for Erlang.

Forwarded from:
http://askubuntu.com/questions/135629/how-to-add-some-additional-dns-search-domains-without-ignoring-the-ones-returned

You will need to edit this file with your favorite editor:
sudo vim /etc/dhcp/dhclient.conf
Once in file, you should see a commented line with the word supersede next to it:
#supersede domain-name "...."
Uncomment that line, substitute the name supersede for append, then add the domain names you wish to search (follow the example below and leave a space after the first "):
append domain-name " ubuntu.com ubuntu.net test.ubunut.com";
Save the file and close.
All you need to do is restart your network connection. You can do this by unplugging and plugging in the physical network connect OR disable and enable your network connect (see picture below). After that you should be good to go:
To verify:
sudo cat /etc/resolv.conf
Disconnect Network
enter image description here
Connect Network
enter image description here

Thursday, April 24, 2014

VIM useful commands

:sort
to sort all the lines in the current file

:sort u
to sort and then unique all the lines in the current file

:%!sort -R
to shuffle all the lines in the current file

:%!xxd
to view the current file in hex mode


Friday, March 7, 2014

How to combine combine images/pdfs on Ubuntu?

1. Ubuntu 12.04 pdf printer
sudo apt-get install cups-pdf

2. Combine images into a pdf file
imagemagick is a command line toolkit to modify image files
sudo apt-get install imagemagick
convert 1.png 2.jpg output.pdf


3. Combine pdfs into a single pdf file
pdfshuffler is a GUI toolkit for your use
sudo apt-get install pdfshuffler
pdfshuffler