I have a problem where citations are correctly displayed on one machine (OSX 10.5) but fail on another machine (Ubuntu 10.04).


Basically I have a set of .tex files and a .bib file and run the following commands to produce a PDF file:
pdflatex main # there's main.tex
biber main
pdflatex main
pdflatex main
Comparing logs from the two machines, it seems .bbl file is not created on the machine that failed to produce proper citation.
Package biblatex Info: ... file 'main.bbl' not found.
No file main.bbl.
Should biber produce the bbl file? How should I go about troubleshooting why this process doesn't work on Ubuntu?
biblatexto use Biber (with\usepackage[backend=biber]{biblatex}? If so, you should get a.blgfile containing any errors/warnings, once you've run Biber. By the way, withbiblatexyou only normally need to runpdflatexonce after running Biber. – Joseph Wright♦ Apr 18 '12 at 6:34biber. Its installation can get corrupted, but in this case the shell message should be clear about it. – egreg Apr 18 '12 at 6:44