Difference between revisions of "Talk:TeTeX 3.0 installation"

From Wiki
Jump to navigation Jump to search
(texmfstart?)
 
(12 intermediate revisions by 5 users not shown)
Line 11: Line 11:
 
Thanks.
 
Thanks.
  
* You should be doing all of the installation as root, and therefore it should be in the folder /root, since that is root's home directory. [[User:Taco|Taco]]
+
* I've added a bit of extra explanation. [[User:Taco|Taco]] 13:00, 7 Sep 2005 (UTC)
  
: I didn't read that section on the page, but on OS X for example, root's home is at /var/root (which is not really relevant, since on OS X nobody ever uses that) --[[User:Patrick Gundlach|pg]]
+
== lmodern in debian ==
  
== Can't locate .texmf-var folder ==
+
Hi David,
  
Thanks for the answer <b>pg</b> but I did perform the installation as root and looked in the /root folder but there was no folder named <tt>.texmf-var</tt>. What is this folder supposed to contain exactly? I hope these questions do not seem too stupid for words :)
+
Can you check the version number of latin modern in Debian please?
 +
It has to be '''precisely''' 0.89.3, or some ConTeXt documents will come out wrong.  
 +
The cont-lmt.zip is separate because the font is not updated as frequently as
 +
cont-tmf.zip, but they really are tied together quite closely.
  
Thanks [[User:Mark.pearson|Mark Pearson]]
+
--[[User:Taco|Taco]]
  
: sorry Mark for the confusion, my remark was an addition meant for Taco. --[[User:Patrick Gundlach|pg]]
+
dpkg -l lmodern gives
 +
lmodern        0.92-7        scalable PostScript fonts for european chara
  
Sorry pg, my mistake, my reply was aimed at Taco but I didn't see his signature the first time.
+
Could you, please, give me one or two ConTeXt documents that may come out wrong ?
 +
 
 +
--[[User:David.marsal|David]]
 +
 
 +
Never mind, I checked and the newer version should be ok. Hans will switch the main distriution over to 0.92 for the next release as well, and that won't take longer than a week or so anyway. --[[User:Taco|Taco]] 15:31, 12 Sep 2005 (UTC)
 +
 
 +
== Wrong path? ==
 +
Hi, in the "code" section
 +
# cp -f build/tex/web2c/pdftex `which pdftex`
 +
# cp -f build/texk/web2c/pdfetex `which pdfetex`
 +
# cd build/tex/web2c
 +
# cp -f pdftex.pool pdfetex.pool /usr/local/teTeX/share/texmf/web2c
 +
# fmtutil-sys --refresh
 +
I think that in line 1 it should be build/'''texk'''/web2c/pdftex ...
 +
...at least I couldn't find any directory named "tex".
 +
 
 +
And then I would like to thank the authors of this page for saving my life with these simple and streightforward instructions on installing this, well, complicated software!
 +
[[User:213.213.136.102|213.213.136.102]] 16:17, 16 October 2005 (CEST)
 +
 
 +
* You are right, will fix that right away. Thanks [[User:Taco|Taco]] 11:57, 17 October 2005 (CEST)
 +
 
 +
== last stage: making the formats global ==
 +
 
 +
the last 2 steps are given as:
 +
 
 +
<code>
 +
# cp -a /root/.texmf-var/web2c/* /usr/local/teTeX/share/texmf-var/web2c
 +
# texhash
 +
</code>
 +
 
 +
but <tt>/root/.texmf-var/web2c/*</tt> includes all the other formats as well
 +
generated when pdftex/metapost was updated...
 +
 
 +
and the context formats are in <tt>/root/.texmf-var/web2c/pdfetex/*</tt>, aren't they?
 +
 
 +
so, for me it is not clear if it's enough what to move. shouldn't it be:
 +
 
 +
<code>
 +
# mv /root/.texmf-var/web2c/pdfetex /usr/local/teTeX/share/texmf-var/web2c
 +
# texhash
 +
</code>
 +
 
 +
--[[User:Minusf|Minusf]] 23:13, 6 March 2006 (CET)
 +
 
 +
 
 +
== beta ==
 +
 
 +
There is a pdftex beta for 1.40 at sarovar. I have not tried yet, but I assume it is installed just like 1.30. Could a knowledgeable soul check this and edit the page?
 +
 
 +
--[[User:ChristopherCreutzig|ChristopherCreutzig]] 15:17, 21 August 2006 (CEST)
 +
 
 +
== texmfstart? ==
 +
 
 +
The page does not mention texmfstart yet. What is the proper way(TM) of installing it in teTeX?
 +
 
 +
--[[User:ChristopherCreutzig|ChristopherCreutzig]] 16:38, 21 August 2006 (CEST)

Latest revision as of 14:40, 21 August 2006

In the section entitled Install the zip archive towards the end of the page, the line

cp -a /root/.texmf-var/web2c/* /usr/local/teTeX/share/texmf-var/web2c

contains the hard-coded path /root/.texmf-var/web2c which is not explained. Could you clarify where I should be looking for the .texm-var/web2c folder and its contents please?

Thanks.

  • I've added a bit of extra explanation. Taco 13:00, 7 Sep 2005 (UTC)

lmodern in debian

Hi David,

Can you check the version number of latin modern in Debian please? It has to be precisely 0.89.3, or some ConTeXt documents will come out wrong. The cont-lmt.zip is separate because the font is not updated as frequently as cont-tmf.zip, but they really are tied together quite closely.

--Taco

dpkg -l lmodern gives lmodern 0.92-7 scalable PostScript fonts for european chara

Could you, please, give me one or two ConTeXt documents that may come out wrong ?

--David

Never mind, I checked and the newer version should be ok. Hans will switch the main distriution over to 0.92 for the next release as well, and that won't take longer than a week or so anyway. --Taco 15:31, 12 Sep 2005 (UTC)

Wrong path?

Hi, in the "code" section

# cp -f build/tex/web2c/pdftex which pdftex
# cp -f build/texk/web2c/pdfetex which pdfetex
# cd build/tex/web2c
# cp -f pdftex.pool pdfetex.pool /usr/local/teTeX/share/texmf/web2c
# fmtutil-sys --refresh

I think that in line 1 it should be build/texk/web2c/pdftex ... ...at least I couldn't find any directory named "tex".

And then I would like to thank the authors of this page for saving my life with these simple and streightforward instructions on installing this, well, complicated software! 213.213.136.102 16:17, 16 October 2005 (CEST)

  • You are right, will fix that right away. Thanks Taco 11:57, 17 October 2005 (CEST)

last stage: making the formats global

the last 2 steps are given as:

# cp -a /root/.texmf-var/web2c/* /usr/local/teTeX/share/texmf-var/web2c
# texhash

but /root/.texmf-var/web2c/* includes all the other formats as well generated when pdftex/metapost was updated...

and the context formats are in /root/.texmf-var/web2c/pdfetex/*, aren't they?

so, for me it is not clear if it's enough what to move. shouldn't it be:

# mv /root/.texmf-var/web2c/pdfetex /usr/local/teTeX/share/texmf-var/web2c
# texhash

--Minusf 23:13, 6 March 2006 (CET)


beta

There is a pdftex beta for 1.40 at sarovar. I have not tried yet, but I assume it is installed just like 1.30. Could a knowledgeable soul check this and edit the page?

--ChristopherCreutzig 15:17, 21 August 2006 (CEST)

texmfstart?

The page does not mention texmfstart yet. What is the proper way(TM) of installing it in teTeX?

--ChristopherCreutzig 16:38, 21 August 2006 (CEST)