I switched from Windows 7 to Ubuntu 14.04. The following code was producing this output.
\documentclass[oneside,english,a4paper, 12pt]{book}
\usepackage{a4wide, fullpage, color, fancyhdr, lastpage, changepage, multirow, calligra, graphicx}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{verbose,tmargin=2cm,bmargin=2cm,lmargin=2cm,rmargin=2cm}
\makeatletter
\let\ps@plain\ps@fancy% Plain page style = fancy page style
\makeatother
\providecommand*{\wb}[2]{\fontsize{#1}{#2}\usefont{U}{webo}{xl}{n}}
\newcommand*{\cdiam}{\prec\kern-2pt\succ}
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\begin{document}
\begin{titlepage}
\fontfamily{pbk}\selectfont
\begin{adjustwidth*}{1.5cm}{2cm}
\vspace*{4.5\baselineskip}
\centering
\begin{picture}(600, 0)
\multiput(0, 110)(20, 0){20}{{\wb{10}{12}4}} % Top Line
\multiput(-5, 90)(0,-21){35}{\rotatebox{90}{{\wb{10}{12}4}}} % Left Line
\multiput(0,-630)(20, 0){20}{{\wb{10}{12}4}} % Bottom Line
\multiput(400,90)(0,-21){35}{\rotatebox{90}{{\wb{10}{12}4}}} % Right Line
\end{picture}
\end{adjustwidth*}
\end{titlepage}
\end{document}
But now on Ubuntu 14.04 I'm getting output with the border shows up as a string of the number 4. I would highly appreciate if someone guide me how to install the required fonts. Thanks
sudo apt-get install texlive-fonts-recommended. If you installed from the iso image, use lmgr` to install packages. If you press tab you can automplete and see that there are other fonts. – Sigur Nov 17 '14 at 14:01sudo apt-get install texlive-fonts-recommendedthrough terminal and gettingtexlive-fonts-recommended is already the newest version. texlive-fonts-recommended set to manually installed. 0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.. There is no change. Any thoughts. – MYaseen208 Nov 17 '14 at 14:31texlive-fonts-and press TAB to see other packages. – Sigur Nov 17 '14 at 15:47apt-get install texlive-fonts-recommended texlive-fonts-extra. From Tahtisilma's answer, it looks like the specific font being asked about in this question has a more specific issue due to licensing. – May 19 '16 at 19:00