unetbootin - Live usb creator

UNetbootin is a good tool for creating live usb, you can install it via apt

sudo apt install unetbootin

TensorFlow on Ubuntu 16.10


  • Installation

  • A note for installing tensorflow under ubuntu 16.10 with nvidia GTX-750 Ti graphic card
    Install the following packages
    sudo apt install python-pip python-dev libcupti-dev libcublas8.0 nvidia-cuda-dev nvidia-cuda-toolkit
    Install tensorflow GPU version
    pip install --upgrade tensorflow-gpu
    Download cudnn from NVIDIA website (you need to register a account before download it)
    Extract the file and execute below commands
    sudo cp -P include/cudnn.h /usr/include sudo cp -P lib64/libcudnn* /usr/lib/x86_64-linux-gnu/ sudo chmod a+r /usr/lib/x86_64-linux-gnu/libcudnn*
  • Reference
  • TensorFlow official website for installation Nvidia officiail website for installation

    imagemagick - add date on image


  • Install
  • sudo apt install imagemagick

  • example for batch mark date on images
  • for img in *.jpg;
    do convert "$img" -gravity SouthEast -pointsize 64 -fill white -annotate +30+30 %[exif:DateTimeOriginal] "time_""$img";
    done

    Atom - source editor

    Atom - excellent source editor under Linux, the most import thing is it's "FREE"
  • Install
  • sudo add-apt-repository ppa:webupd8team/atom sudo apt-get update sudo apt-get install atom

  • Ignored names (useful for search)
  • .git, .hg, .svn, .DS_Store, ._*, Thumbs.db, *.txt, *.tags, tags, *.stack, _out, *.htm, *.lst, .tags1


  • Best Packages for developers
  • Atom-ctags
    Atom Beautify
    File-icons
    Highlight-line
    Highlight-selected
    Project-Manager
    Symbol-tree-view
    Terminal-plus
    Vertical-tabs
    Merge-conflicts
    Todo-show
    git-blame

    SSD Optimization under Ubuntu

  • Reduce flush frequency
  • Add "noatime" on /etc/fstab UUID=f0ae2c59-83d2-42e7-81c4-2e870b6b255d / ext4 noatime,errors=remount-ro 0 1
  • Reserve some space for Over-provision
  • leave at least 7% capacity size for unformatted. (14 % is better)
  • Enable TRIM suuport
  • By default, Ubunut 16.04 will support trim operation automatically, but you could perform it manually
  • Reference
  • https://sites.google.com/site/easylinuxtipsproject/ssd

    PS. Trust me, I have over 6 years experience on SSD firmware development.

    Static code analysis - pylint

    popular static code analysis for python language
  • Install (via pip)
  • pip install pylint
  • Run pylint
  • pylint [SOURCE]
    Don't like command line tool? try pylint-gui pylint-gui

    Python package installer

    For all python developer, you will need it
  • for python 2.x
  • sudo apt install python-pip
  • for python 3.x
  • sudo apt install python3-pip

    Orange - data analysis tool

    Installation pip install orange3 Run orange python -m Orange.canvas