I am trying to change the teletype font in my thesis document to Bera Mono. I downloaded the beramono CTAN package and unzipped it in my ~/texmf folder (where I've already installed a few dozen packages).
Here is all of the preamble I have direct control over
% template .tex preamble
\documentclass[11pt,a4paper]{report}
\usepackage{warwickthesis,setspace,graphicx}
\usepackage{enumerate}
% my code starts here
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\usepackage{import}
\usepackage{amsmath,amssymb,siunitx}
\usepackage{hyperref}
\usepackage{cleveref}
\usepackage{glossaries}
\usepackage{minted}
\usepackage{babel}
\usepackage{csquotes}
\usepackage{biblatex}
\usepackage{mathpazo}
\usepackage[scaled]{beramono} % this command breaks the \tt font on its own
\usepackage[T1]{fontenc} % so does this
\usepackage{tikz}
Example of the problem:
{\ttfamily Hi there} Hi there:
This is also how minted source code listings appear.
Instead of using Bera Mono, it seems to start rendering CM as a bitmap as the teletype font. I have tried a few other examples from the internet, e.g. courier, with the same effect.
Unless I've made a mistake in my package inclusion or ordering, I expect that the thesis template I'm using is causing the problem (I initially copied this out of a known working example using courier).
So, my question is: Have I made a mistake, and if not, is there a way I can absolutely force the use of the font?
Edit
Following Ulrike Fischer's advice, I minimised the packages and found the following telling error:
(/dcs/pg14/phulgm/texmf/tex/latex/bera/t1fvm.fd) [1{/var/lib/texmf/fonts/map/pd
ftex/updmap/pdftex.map}] (./test.aux) ) </dcs/pg14/phulgm/.texlive2007/texmf-va
r/fonts/pk/ljfour/jknappen/ec/ecrm1095.600pk>kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 1+57/600 --dpi 657 fvmr8r
mktexpk: don't know how to create bitmap font for fvmr8r.
kpathsea: Appending font creation commands to missfont.log.
pdfTeX warning: pdflatex (file fvmr8r): Font fvmr8r at 657 not found
Output written on test.pdf (1 page, 2989 bytes).

\documentclassline? Also\{tt Hi there}is wrong input. – egreg Aug 27 '15 at 20:22\ttfamilyinstead of\tt– Ulrike Fischer Aug 27 '15 at 20:26~/texmffolder. I followed the instructions in the README: the firstbera.zipcontained a secondbera.zipwhich it instructed me to unzip in mytekmffolder. I also moved the.afmfiles to~/texmf/fonts/afm/public/beraand the.pfbfiles to~/texmf/fonts/type1/public/bera. However, I did not take any steps beyond this - did I miss something? – Qualia Aug 27 '15 at 20:36\ttfamilyto no avail. I've updated my question to clarify that other environments which should automatically invoke teletype fonts (minted) suffer the same problem. – Qualia Aug 27 '15 at 20:38tex/latex/bera. Six.fdfiles:t1fv{e,m,s}andts1fv{e,m,s}– Qualia Aug 27 '15 at 20:50.tfmfiles? The.afmfiles can't be used directly by TeX. Was there a.mapfile? Where did you put it? Did you runupdmap? Note that running this is NOT generally recommended but, in this case, you have no choice. – cfr Aug 27 '15 at 21:08.tfmfiles infonts/tfm/public/bera. There are two.mapfiles:fonts/map/dvips/bera.mapanddvips/config/bera.map. I've never usedupdmap, but it seems to be being used:[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]– Qualia Aug 27 '15 at 21:18updmap-sys --enable Map=bera.map– Ulrike Fischer Aug 27 '15 at 21:23updmap --enable Map=bera.map. You should take a look at this question so that you are aware of the issues which are associated with doing this, though. – cfr Aug 27 '15 at 21:24.mapfiles for the entire university. – cfr Aug 27 '15 at 21:25\pdfmapfile{=bera.map}in the document. – Ulrike Fischer Aug 27 '15 at 21:29updmap --enable Map=bera.mapsolved the problem. "Luckily" for me, I don't think these computers are going to be updated any time soon. – Qualia Aug 27 '15 at 21:35