I installed Tex Live 2016 on Ubuntu 16.04.1 LTS using
sudo apt-get install texlive-full
Now References are not working. MWE is below with its output:
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\bibliography{myrefs}
\begin{document}
\textcite{lamport94} is a good reference for \LaTeX.\\
Main matter with citations such as \autocite{lamport94}.
\printbibliography
\end{document}
The contents of myrefs.bib are:
@book{lamport94
, author = "Leslie Lamport"
, title = "{\LaTeX} : a document preparation system"
, edition = "2nd"
, publisher = "Addison-Wesley"
, year = 1994
}
If I run other documents which was working correctly, I get the following error messages:
This is BibTeX, Version 0.99d (TeX Live 2016/Debian) The top-level auxiliary file: Test.aux I found no \citation commands---while reading file Test.aux I found no \bibdata command---while reading file Test.aux I found no \bibstyle command---while reading file Test.aux (There were 3 error messages)
I also installed biber using
sudo apt-get install biber
But, no success. Even references are not working in LYX 2.2.2 with its template documents. Any help to figure out the problem will be highly appreciated. Thanks in advance for any help.

bibtexbackend withbiblatexyou need to pass thebackend=bibtexoption tobiblatex. The generally preferred backend forbiblatexisbiberthough - what do you mean by no success? What did you try/where did things go wrong? – Dai Bowen Dec 03 '16 at 15:49\usepackage[backend=bibtex, style=authoryear]{biblatex}, but still the same problem. I want to usebiber, I thought it might be missing so I installed it but even after that, I am getting the same error. BWTbiberis used inbiblatex. Any thoughts, please. – MYaseen208 Dec 03 '16 at 15:55.texfile example, runninglatex <filename>thenbiber <filename>should give you a.blgfile: does it work and are there any errors? – Joseph Wright Dec 04 '16 at 08:04pdflatex filename.tex, followed bybiber filename.bcf, and thenpdflatex filename.texagain? Do you get any errors/warnings in any of the cases? – Torbjørn T. Dec 04 '16 at 10:19backend=bibtex, it works fine but when I usebackend=biber, it gives the following error: This is BibTeX, Version 0.99d (TeX Live 2016/Debian) The top-level auxiliary file: Test.aux I found no \citation commands---while reading file Test.aux I found no \bibdata command---while reading file Test.aux I found no \bibstyle command---while reading file Test.aux (There were 3 error messages). – MYaseen208 Dec 04 '16 at 10:33Biber error: Error: Found biblatex control file version 3.1, expected version 3.2.– MYaseen208 Dec 04 '16 at 10:36bibtexwhen you havebackend=biber. About the second: Right, so there is a mismatch between thebiblatexversion and thebiberversion. You'll need to updatebiblatexas you say. I don't know how to best do that when you've installed TL viaaptthough. – Torbjørn T. Dec 04 '16 at 10:49tlmgr update --allto update Texlive packages, but it saystlmgr: no updates available. Any thoughts, please. – MYaseen208 Dec 04 '16 at 10:52