Okay I know there have been posted very similar questions like these. However their solutions do not seem to work in my case.
I tried to install Mathtime Pro 2. I have texlive 2013 and Ubuntu 14.04. I first did found this topic: Help using MathTime Pro 2 fonts in Ubuntu Linux with tex-live after which it refers to Problems installing MathTime Professional 2 font on TexLive.
I tried their solutions but I still keep getting the error
kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 4+0/600 --dpi 2400 mt2exf
mktexpk: don't know how to create bitmap font for mt2exf.
kpathsea: Appending font creation commands to missfont.log.
)
!pdfTeX error: pdflatex (file mt2exf): Font mt2exf at 2400 not found
==> Fatal error occurred, no output PDF file produced!
The log file from the installer provided by Problems installing MathTime Professional 2 font on TexLive can be found here: http://pastebin.com/Gk9AHuFP
I also tried with the lite version but that does not seem to work either.
I have to note that I recently also installed MinionPro font. During the install of that font I also stumbled onto problems.
I hope someone can help me with this problem.
--edit--
So I removed all my texlive installations and all files and folders. I downloaded the new texlive version, 2014, and installed it using the installer. I installed it with the following settings:

Now where do I need to put (merge) the texmf folder of mtpro2? /usr/local/texlive/texmf-local or /usr/local/share/texmf or ~/.texmf?
Afterwhich I need to run
sudo texhash
sudo updmap-sys --disable mt-belleek.map --nomkmap
sudo updmap-sys --disable belleek.map --nomkmap
sudo updmap-sys --disable mt-yy.map --nomkmap
sudo updmap-sys --disable mt-plus.map --nomkmap
sudo updmap-sys --enable Map mtpro2.map
and maybe vim $(kpsewhich updmap.cfg), add Map mtpro2.map and run sudo updmap-sys. Correct?
.mapfile. Did you runupdmap-sys? Did you add the relevant entry in theupdmap.cfgfile? The messageThe following map file(s) couldn't be found: mtpro2.map (in /etc/texmf/web2c/updmap.cfg)seems clear about the problem. – egreg Jun 30 '14 at 18:05updmap-sys --enable Map mtpro2.map? – egreg Jun 30 '14 at 18:08sudo vim $(kpsewhich updmap.cfg). And it does containMap mtpro2.map. I should note however that myupdmap.cfgis located at/usr/local/texlive/2013/texmf-config/web2c/updmap.cfgwhen I runkpsewhich updmap.cfgNot at/etc/texmf/web2c/updmap.cfg. Both.cfg-files do however containMap mtpro2.map. – WG- Jun 30 '14 at 18:15kpsewhichsuggests that you are using TL installed using upstream's installer while the presence of the file in/etcand the information in your question suggests that you are using TL from Ubuntu. It is not a good idea to have multiple installations from different distributions. (It is fine to have e.g. TL 2013 and TL 2014 from upstream but mixing TL from upstream with TL from Ubuntu will almost certainly cause problems.) When you ranupdmap-syswhich file did it use? What was the output? What is your user'sPATH? – cfr Jun 30 '14 at 20:42ipeon Ubuntu, it also installed the base packages of texlive by default. Which I did not want, but do not know how to cancel, it is mandatory. – WG- Jun 30 '14 at 22:00PATHis/usr/local/texlive/2013/bin/x86_64-linux/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/wouter/.local/bin– WG- Jun 30 '14 at 22:00ipewithout dragging in Ubuntu'stexlivepackages. See http://tex.stackexchange.com/q/1092/39222 for details. (Except that you should not install as root but nobody takes any notice of that, it seems.) – cfr Jun 30 '14 at 22:05/usr/local/texlive/texmf-localandmktexlsrshould be run. AppendMap mtpro2.mapto the file/usr/local/texlive/texmf-local/web2c/updmap.cfg(create it, if it doesn't exist) and runupdmap-sys. All of this with administrator privileges. – egreg Jul 01 '14 at 19:35TEXMFLOCALfolder, runmktexlsrand append the map file to$TEXMFLOCAL/web2c/updmap.cfg? – WG- Jul 01 '14 at 20:10updmap-sys --enable Map=mtpro2.maprather than editingupdmap.cfg. If you are adding several maps, editing the file is easier but if it is just one or two, sometimes it is easier to use--enable. – cfr Jul 01 '14 at 20:28