Navigation
0 users online :: 0 Guests and 0 Registered
Records in this category
- How to convert LaTeX files into HTML files?
- How to change the bibliography/reference names?
- How to make a list of abbreviations or a glossary in the appendices?
- How to include source code (programs) in LaTeX?
- How to create multiple indexes?
- I prefer to have my own bibliography appearance, e.g., customize my bibliography for a particular publication, how to do that?
- I need to generate both DVI and PDF, what should I write in the source code?
- How to use hyperref and pdflatex?
- Error: Package hyperref Warning:Token not allowed in a PDFDocEncoded string?
- Error message: ! pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored ...
- How can I draw a tree quickly and easily?
- I have to deal with TeX macros... Any online Tex macro programming tutorial?
- Can I install LaTeX/TeX systems on a shared host like BlueHost?
- Why latexrender based on LaTeX does not work in my WordPress/blog?
- Can I install latex2html on a shared host?
- Why LaTeX cannot find my own style/class file, e.g., llncs.cls?
- How to use latex2html to convert my paper to webpages?
- How to enable math on MediaWiki?
- How to resolve this problem: Failed to parse (PNG conversion failed; check for correct installation of latex, dvips, gs, and convert) in MediaWiki when I try to enable math?
Tags
Sticky FAQs
Education » Computer Science » LaTeX
ID #1028
Can I install LaTeX/TeX systems on a shared host like BlueHost?
It is SAID that if you can find some TeX systems that need no root access, then you can install the system on a shared host. Forutunately, I found that TeXLive meet this requirement. I am sure some other systems also qualify, but I just give the instructions about how to install TeXLive, and the same rule applies to other installation, with possible modifications.
- Create a directory under your home directory (not under public_html or www). This directory, say texlive, will be used for the TeX systems.
- TexLive has a neat and trouble-free installer available at http://www.tug.org/texlive/acquire.html Note that the bluehost/hostmonster is linux server, so download the universal installer by typing wget http://mirror.ctan.org/systems/texlive/tlnet/2008/install-tl-unx.tar.gz
- Decompress the installer, and run the installer: ./install-tl
- Now you will see a list of options. Some of them are not important, but at least you need to change the directory for installation. Select the option "d", which lets you to change the installtion directory and sub-directories to the one created in step 1. E.g., the directories will be similar to $home/texlive/... Another option that might be useful is the binary forms indicating you server type. For example, the server for me is x86_64-linux. This piece of information will be used later. The instructions on the options are also available here.
- If you in step 4 choose to install the full packages (schemes), it will take a long time for a complete installation (1 hour for me), and free disk space on the server shoule be more than 2GB. Wait till it is done, then basically you can use the TeX/LaTeX under the installation directory.
- To make the commands of LaTeX site-available, we need to change the path. On Bluehost servers, find the file named .bashrc under your home directory. Add the following three path variables (always backup such config files!): (Note that the server type in the first line, i.e., x86_64-linux is identified in step 4.)
- PATH=$PATH:$HOME/texlive/2008/bin/x86_64-linux; export PATH
- MANPATH=$HOME/texlive/2008/texmf/doc/man:$MANPATH;
export MANPATH - INFOPATH=$HOME/texlive/2008/texmf/doc/info:$INFOPATH;
export INFOPATH
- Now done... To test if your LaTeX is working properly. CD to any directory, and type the command: man latex , and test tex itself by typing: tex --version. If any other problems occur, let me know to see if I can help you.
Tags: latex
Related entries:
- How to convert LaTeX files into HTML files?
- How to change the bibliography/reference names?
- How to include source code (programs) in LaTeX?
- I prefer to have my own bibliography appearance, e.g., customize my bibliography for a particular publication, how to do that?
- I need to generate both DVI and PDF, what should I write in the source code?
Last update: 2009-01-14 17:35
Author: Admin
Revision: 1.4
You can comment this FAQ