--UPDATE--
I've installed biblatex via the command "sudo apt-get install biblatex". However I now get a partially generated pdf like this:
instead of the desired output of:

--UPDATE--
I've found TexMaker very easy and helpful with the pdf file it generated whenever you pressed the "Quick Build" button.
Sadly when I started writing slightly more complicated scripts (my current Tex document) that required biblatex for references whenever I clicked on the "Quick Build" button I get the following error:
! LaTeX Error: File `biblatex.sty' not found.
Instead to build my pdf I need to type the following in the command line:
pdflatex test.tex
biber test
pdflatex test.tex
A similar question was asked here but I really don't want to use a script each time I need to compile my Tex document.
My echo $PATH is "/usr/local/texlive/2012/bin/x86_64-linux:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games" and here is the current configuration of TexMaker


tlmgr install biblatex(or withsudoifnot enough permissions)? – T. Verron Mar 16 '13 at 19:18biblatexinstalled, and what permissions does it have? – jon Mar 16 '13 at 21:01biblatexis a LaTeX package, so your editor does not need to know about it. If you use Biber rather than BibTeX as the 'back end' there is some set up, but first you wantbiblatexinstalled! – Joseph Wright Mar 16 '13 at 21:36kpsewhich biblatex.styat terminal will confirm its path and presence. – texenthusiast Mar 16 '13 at 21:45biblatexinstalled but have not runlatexthenbiber, thenlatexagain, or have runbiberbut with settings expectingbibtex. Do you have a.blgfile about? This is a log of what BibTeX does: it might be informative. – Joseph Wright Mar 16 '13 at 21:58.bblfile and did you runlatexagain after runningbiber? – Joseph Wright Mar 16 '13 at 22:05biblatexfromapt, that is probably not the 'right'biblatex: it is outdated, and installed in the wrong place with respect to the CTAN install. – jon Mar 16 '13 at 22:05latexmk, a more flexible system such asararaor 'roll your own' if you want to have Biber run automatically by Texmaker. Perhaps pop over to chat as this might need quite a bit of discussion. – Joseph Wright Mar 16 '13 at 22:13