ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* What’s wrong with installation?
@ 2022-03-07 11:48 Henning Hraban Ramm via ntg-context
  2022-03-08  9:06 ` Ursula Hermann via ntg-context
  0 siblings, 1 reply; 9+ messages in thread
From: Henning Hraban Ramm via ntg-context @ 2022-03-07 11:48 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Henning Hraban Ramm

Hi, I just tried to install a new instance of LMTX without success.

"""
$ unzip -l *.zip
Archive:  context-osx-64.zip
   Length      Date    Time    Name
---------  ---------- -----   ----
         0  03-05-2019 22:50   bin/
     19082  01-21-2022 20:13   bin/mtx-install.lua
    693184  01-21-2022 20:13   bin/mtxrun.lua
      3910  01-21-2022 20:13   install.sh
   2725900  01-21-2022 20:13   bin/mtxrun
     24047  01-21-2022 20:13   installation.pdf
---------                     -------
   3466123                     6 files


$ sh install.sh
mtx-install     | provide valid server and instance

cp: /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun: No such 
file or directory
cp: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-context/scripts/context/lua/mtxrun.lua: 
No such file or directory
cp: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-context/scripts/context/lua/mtx-install.lua: 
No such file or directory

If you want to run ConTeXt everywhere, you need to adapt the path, like:

   export PATH=/Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin:$PATH

If you run from an editor you can specify the full path to mtxrun:

   /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun 
--autogenerate --script context --autopdf ...

The following settings were used:

   server   : lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl
   instance : install-lmtx
   extras   :
   ownpath  : /Users/hraban/lmtx_2022-03-07
   platform : osx-64


$ ./bin/mtxrun --script ./bin/mtx-install.lua --update 
--server=lmtx.contextgarden.net --instance=install-lmtx 
--platform=osx-64 --extras=all
mtx-install     | provide valid server and instance
"""

Same result if I omit --server and --instance, since they default to the 
same.

In mtx-install.lua, line 489 "local server = false" overwrites the 
previously set server variable.

If I comment this line, I get:

"""
$ ./bin/mtxrun --script ./bin/mtx-install.lua --update --platform=osx-64 
--extras=all
mtx-install     | server   : 
lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl
mtx-install     | instance : install-lmtx
mtx-install     | platform : osx-64
mtx-install     | system   : unix
mtx-install     | invalid database 
'http://lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl/install-lmtx//tex/texmf.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl/install-lmtx//tex/texmf-context.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl/install-lmtx//tex/texmf-osx-64.tma'
mtx-install     | current  : %S
mtx-install     | target   : %S
mtx-install     | removing : mtxrun
mtx-install     | removing : context
mtx-install     | copied   : mtxrun
mtx-install     | copied   : context
mtx-install     | running: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun --generate
sh: /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun: No such 
file or directory
mtx-install     | running: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/context --make en
sh: /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/context: No such 
file or directory
mtx-install     |
mtx-install     |
mtx-install     | ConTeXt LMTX with LuaMetaTeX is still experimental and 
when you get a crash this
mtx-install     | can be due to a mismatch between Lua bytecode and the 
engine. In that case you can
mtx-install     | try the following:
mtx-install     |
mtx-install     |   - wipe the texmf-cache directory
mtx-install     |   - run: mtxrun --generate
mtx-install     |   - run: context --make
mtx-install     |
mtx-install     | When that doesn't solve the problem, ask on the 
mailing list (ntg-context@ntg.nl).
mtx-install     |
mtx-install     | update, done
"""

The "invalid database" lines don’t look good. If I give an explicit 
--server=lmtx.contextgarden.net, I still get the same error:

"""
mtx-install     | invalid database 
'http://lmtx.contextgarden.net/install-lmtx//tex/texmf.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net/install-lmtx//tex/texmf-context.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net/install-lmtx//tex/texmf-osx-64.tma'
"""

What’s wrong?

Hraban
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-07 11:48 What’s wrong with installation? Henning Hraban Ramm via ntg-context
@ 2022-03-08  9:06 ` Ursula Hermann via ntg-context
  2022-03-08 10:09   ` Hans Hagen via ntg-context
  0 siblings, 1 reply; 9+ messages in thread
From: Ursula Hermann via ntg-context @ 2022-03-08  9:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Ursula Hermann

Dear List, 
I can't make the installation context-mswin.zip, too. 
Uschi Hermann 

-----Ursprüngliche Nachricht-----
Von: ntg-context <ntg-context-bounces@ntg.nl> Im Auftrag von Henning Hraban Ramm via ntg-context
Gesendet: Montag, 07. März 2022 12:48
An: mailing list for ConTeXt users <ntg-context@ntg.nl>
Cc: Henning Hraban Ramm <texml@fiee.net>
Betreff: [NTG-context] What’s wrong with installation?

Hi, I just tried to install a new instance of LMTX without success.

"""
$ unzip -l *.zip
Archive:  context-osx-64.zip
   Length      Date    Time    Name
---------  ---------- -----   ----
         0  03-05-2019 22:50   bin/
     19082  01-21-2022 20:13   bin/mtx-install.lua
    693184  01-21-2022 20:13   bin/mtxrun.lua
      3910  01-21-2022 20:13   install.sh
   2725900  01-21-2022 20:13   bin/mtxrun
     24047  01-21-2022 20:13   installation.pdf
---------                     -------
   3466123                     6 files


$ sh install.sh
mtx-install     | provide valid server and instance

cp: /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun: No such file or directory
cp: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-context/scripts/context/lua/mtxrun.lua: 
No such file or directory
cp: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-context/scripts/context/lua/mtx-install.lua: 
No such file or directory

If you want to run ConTeXt everywhere, you need to adapt the path, like:

   export PATH=/Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin:$PATH

If you run from an editor you can specify the full path to mtxrun:

   /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun
--autogenerate --script context --autopdf ...

The following settings were used:

   server   : lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl
   instance : install-lmtx
   extras   :
   ownpath  : /Users/hraban/lmtx_2022-03-07
   platform : osx-64


$ ./bin/mtxrun --script ./bin/mtx-install.lua --update --server=lmtx.contextgarden.net --instance=install-lmtx
--platform=osx-64 --extras=all
mtx-install     | provide valid server and instance
"""

Same result if I omit --server and --instance, since they default to the same.

In mtx-install.lua, line 489 "local server = false" overwrites the previously set server variable.

If I comment this line, I get:

"""
$ ./bin/mtxrun --script ./bin/mtx-install.lua --update --platform=osx-64 --extras=all
mtx-install     | server   : 
lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl
mtx-install     | instance : install-lmtx
mtx-install     | platform : osx-64
mtx-install     | system   : unix
mtx-install     | invalid database 
'http://lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl/install-lmtx//tex/texmf.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl/install-lmtx//tex/texmf-context.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl,dmz.pragma-ade.nl/install-lmtx//tex/texmf-osx-64.tma'
mtx-install     | current  : %S
mtx-install     | target   : %S
mtx-install     | removing : mtxrun
mtx-install     | removing : context
mtx-install     | copied   : mtxrun
mtx-install     | copied   : context
mtx-install     | running: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun --generate
sh: /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/mtxrun: No such file or directory
mtx-install     | running: 
/Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/context --make en
sh: /Users/hraban/lmtx_2022-03-07/tex/texmf-osx-64/bin/context: No such file or directory
mtx-install     |
mtx-install     |
mtx-install     | ConTeXt LMTX with LuaMetaTeX is still experimental and 
when you get a crash this
mtx-install     | can be due to a mismatch between Lua bytecode and the 
engine. In that case you can
mtx-install     | try the following:
mtx-install     |
mtx-install     |   - wipe the texmf-cache directory
mtx-install     |   - run: mtxrun --generate
mtx-install     |   - run: context --make
mtx-install     |
mtx-install     | When that doesn't solve the problem, ask on the 
mailing list (ntg-context@ntg.nl).
mtx-install     |
mtx-install     | update, done
"""

The "invalid database" lines don’t look good. If I give an explicit --server=lmtx.contextgarden.net, I still get the same error:

"""
mtx-install     | invalid database 
'http://lmtx.contextgarden.net/install-lmtx//tex/texmf.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net/install-lmtx//tex/texmf-context.tma'
mtx-install     | invalid database 
'http://lmtx.contextgarden.net/install-lmtx//tex/texmf-osx-64.tma'
"""

What’s wrong?

Hraban
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-08  9:06 ` Ursula Hermann via ntg-context
@ 2022-03-08 10:09   ` Hans Hagen via ntg-context
  2022-03-08 11:55     ` Stephen Gaito via ntg-context
  0 siblings, 1 reply; 9+ messages in thread
From: Hans Hagen via ntg-context @ 2022-03-08 10:09 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Hans Hagen

On 3/8/2022 10:06 AM, Ursula Hermann via ntg-context wrote:
> Dear List,
> I can't make the installation context-mswin.zip, too.
that's 32 bit windows ... are you sure you don't need 64 bit?

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-08 10:09   ` Hans Hagen via ntg-context
@ 2022-03-08 11:55     ` Stephen Gaito via ntg-context
  2022-03-08 13:03       ` Hans Hagen via ntg-context
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Gaito via ntg-context @ 2022-03-08 11:55 UTC (permalink / raw)
  To: ntg-context; +Cc: Stephen Gaito

Hans,

I am having the same problem on an XUbuntu 21.10 :
-----------------------------------------------------------------------------------
user@host:/tmp/testContext$ wget https://lmtx.pragma-ade.nl/install-lmtx/context-linux-64.zip
--2022-03-08 11:42:14--
https://lmtx.pragma-ade.nl/install-lmtx/context-linux-64.zip Resolving
lmtx.pragma-ade.nl (lmtx.pragma-ade.nl)... 213.125.29.165 Connecting to
lmtx.pragma-ade.nl (lmtx.pragma-ade.nl)|213.125.29.165|:443...
connected. HTTP request sent, awaiting response... 200 OK Length:
1538088 (1.5M) [application/zip] Saving to: ‘context-linux-64.zip’

context-linux-64.zi 100%[===================>]   1.47M  1.57MB/s    in 0.9s    

2022-03-08 11:42:16 (1.57 MB/s) - ‘context-linux-64.zip’ saved [1538088/1538088]

user@host:/tmp/testContext$ ls
context-linux-64.zip
user@host:/tmp/testContext$ unzip context-linux-64.zip 
Archive:  context-linux-64.zip
   creating: bin/
  inflating: bin/mtxrun              
  inflating: bin/mtx-install.lua     
  inflating: bin/mtxrun.lua          
  inflating: install.sh              
  inflating: installation.pdf        
user@host:/tmp/testContext$ ls
bin  context-linux-64.zip  installation.pdf  install.sh
user@host:/tmp/testContext$ sh install.sh 
mtxrun          | forcing cache reload
resolvers       | resolving | looking for regular 'texmfcnf.lua' on given path '/home/stg/texmf/web2c' from specification 'home:texmf/web2c'
resolvers       | resolving | looking for regular 'texmfcnf.lua' on given path '/tmp/texmf-local/web2c' from specification 'selfautoparent:/texmf-local/web2c'
resolvers       | resolving | looking for regular 'texmfcnf.lua' on given path '/tmp/texmf-context/web2c' from specification 'selfautoparent:/texmf-context/web2c'
resolvers       | resolving | looking for regular 'texmfcnf.lua' on given path '/tmp/texmf-dist/web2c' from specification 'selfautoparent:/texmf-dist/web2c'
resolvers       | resolving | looking for regular 'texmfcnf.lua' on given path '/tmp/texmf/web2c' from specification 'selfautoparent:/texmf/web2c'
resolvers       | resolving | looking for fallback 'contextcnf.lua' on given path '/home/stg/texmf/web2c' from specification 'home:texmf/web2c'
resolvers       | resolving | looking for fallback 'contextcnf.lua' on given path '/tmp/texmf-local/web2c' from specification 'selfautoparent:/texmf-local/web2c'
resolvers       | resolving | looking for fallback 'contextcnf.lua' on given path '/tmp/texmf-context/web2c' from specification 'selfautoparent:/texmf-context/web2c'
resolvers       | resolving | looking for fallback 'contextcnf.lua' on given path '/tmp/texmf-dist/web2c' from specification 'selfautoparent:/texmf-dist/web2c'
resolvers       | resolving | looking for fallback 'contextcnf.lua' on given path '/tmp/texmf/web2c' from specification 'selfautoparent:/texmf/web2c'
resolvers       | resolving |
resolvers       | resolving | warning: no lua configuration files found
resolvers       | resolving | no texmf paths are defined (using TEXMF)
resolvers       | resolving |
mtxrun          | the resolver databases are not present or outdated
mtx-install     | provide valid server and instance

cp: cannot stat '/tmp/testContext/tex/texmf-linux-64/bin/mtxrun': No such file or directory
cp: cannot stat '/tmp/testContext/tex/texmf-context/scripts/context/lua/mtxrun.lua': No such file or directory
cp: cannot stat '/tmp/testContext/tex/texmf-context/scripts/context/lua/mtx-install.lua': No such file or directory

If you want to run ConTeXt everywhere, you need to adapt the path, like:

  export PATH=/tmp/testContext/tex/texmf-linux-64/bin:$PATH

If you run from an editor you can specify the full path to mtxrun:

  /tmp/testContext/tex/texmf-linux-64/bin/mtxrun --autogenerate --script context --autopdf ...

The following settings were used:

  server   : lmtx.contextgarden.net,lmtx.pragma-ade.com,lmtx.pragma-ade.nl
  instance : install-lmtx
  extras   : 
  ownpath  : /tmp/testContext
  platform : linux-64

-----------------------------------------------------------------------------------

On Tue, 8 Mar 2022 11:09:33 +0100
Hans Hagen via ntg-context <ntg-context@ntg.nl> wrote:

> On 3/8/2022 10:06 AM, Ursula Hermann via ntg-context wrote:
> > Dear List,
> > I can't make the installation context-mswin.zip, too.  
> that's 32 bit windows ... are you sure you don't need 64 bit?
> 
> -----------------------------------------------------------------
>                                            Hans Hagen | PRAGMA ADE
>                Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>         tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an
> entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl /
> http://www.ntg.nl/mailman/listinfo/ntg-context webpage  :
> http://www.pragma-ade.nl / http://context.aanhet.net archive  :
> https://bitbucket.org/phg/context-mirror/commits/ wiki     :
> http://contextgarden.net
> ___________________________________________________________________________________

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-08 11:55     ` Stephen Gaito via ntg-context
@ 2022-03-08 13:03       ` Hans Hagen via ntg-context
  2022-03-08 13:22         ` Keith McKay via ntg-context
                           ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Hans Hagen via ntg-context @ 2022-03-08 13:03 UTC (permalink / raw)
  To: Stephen Gaito via ntg-context; +Cc: Hans Hagen

On 3/8/2022 12:55 PM, Stephen Gaito via ntg-context wrote:
> Hans,
> 
> I am having the same problem on an XUbuntu 21.10 :
hm, maybe the server has some issue ... i rebooted the machine

Hans


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-08 13:03       ` Hans Hagen via ntg-context
@ 2022-03-08 13:22         ` Keith McKay via ntg-context
  2022-03-08 13:32         ` Stephen Gaito via ntg-context
  2022-03-08 14:58         ` Henning Hraban Ramm via ntg-context
  2 siblings, 0 replies; 9+ messages in thread
From: Keith McKay via ntg-context @ 2022-03-08 13:22 UTC (permalink / raw)
  To: ntg-context; +Cc: Keith McKay

Hi,

I had the same issue on an old laptop running Ubuntu 21.04, but after 
the server reboot the update was successful.

Running context -version now gives:

mtx-context     | ConTeXt Process Management 1.04
mtx-context     |
mtx-context     | main context file: 
/myPath/context-linux-64/tex/texmf-context/tex/context/base/mkiv/context.mkiv 

mtx-context     | current version: 2022.01.21 20:13
mtx-context     | main context file: 
/myPath/context-linux-64/tex/texmf-context/tex/context/base/mkxl/context.mkxl 

mtx-context     | current version: 2022.01.21 20:13

Best Wishes

Keith McKay



On 08/03/2022 13:03, Hans Hagen via ntg-context wrote:
> On 3/8/2022 12:55 PM, Stephen Gaito via ntg-context wrote:
>> Hans,
>>
>> I am having the same problem on an XUbuntu 21.10 :
> hm, maybe the server has some issue ... i rebooted the machine
>
> Hans
>
>
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________ 
>
> If your question is of interest to others as well, please add an entry 
> to the Wiki!
>
> maillist : ntg-context@ntg.nl / 
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________ 
>
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-08 13:03       ` Hans Hagen via ntg-context
  2022-03-08 13:22         ` Keith McKay via ntg-context
@ 2022-03-08 13:32         ` Stephen Gaito via ntg-context
  2022-03-08 14:58         ` Henning Hraban Ramm via ntg-context
  2 siblings, 0 replies; 9+ messages in thread
From: Stephen Gaito via ntg-context @ 2022-03-08 13:32 UTC (permalink / raw)
  To: ntg-context; +Cc: Stephen Gaito

Hans, (and all)

I can confirm that the context garden's download for Intel/XUbuntu
21.10 

    http://lmtx.pragma-ade.nl/install-lmtx/context-linux-64.zip

Works again!

Many thanks for your swift solution!

And as always.... **many many thanks for a wonderful tool!**

Regards,

Stephen Gaito

On Tue, 8 Mar 2022 14:03:54 +0100
Hans Hagen via ntg-context <ntg-context@ntg.nl> wrote:

> On 3/8/2022 12:55 PM, Stephen Gaito via ntg-context wrote:
> > Hans,
> > 
> > I am having the same problem on an XUbuntu 21.10 :  
> hm, maybe the server has some issue ... i rebooted the machine
> 
> Hans
> 
> 
> -----------------------------------------------------------------
>                                            Hans Hagen | PRAGMA ADE
>                Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>         tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an
> entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl /
> http://www.ntg.nl/mailman/listinfo/ntg-context webpage  :
> http://www.pragma-ade.nl / http://context.aanhet.net archive  :
> https://bitbucket.org/phg/context-mirror/commits/ wiki     :
> http://contextgarden.net
> ___________________________________________________________________________________

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-08 13:03       ` Hans Hagen via ntg-context
  2022-03-08 13:22         ` Keith McKay via ntg-context
  2022-03-08 13:32         ` Stephen Gaito via ntg-context
@ 2022-03-08 14:58         ` Henning Hraban Ramm via ntg-context
  2022-03-08 15:22           ` Hans Hagen via ntg-context
  2 siblings, 1 reply; 9+ messages in thread
From: Henning Hraban Ramm via ntg-context @ 2022-03-08 14:58 UTC (permalink / raw)
  To: ntg-context; +Cc: Henning Hraban Ramm

Am 08.03.22 um 14:03 schrieb Hans Hagen via ntg-context:
> On 3/8/2022 12:55 PM, Stephen Gaito via ntg-context wrote:
>> Hans,
>>
>> I am having the same problem on an XUbuntu 21.10 :
> hm, maybe the server has some issue ... i rebooted the machine

Thank you! I can confirm it’s working again – and the current version is 
much faster than the previous one, because it doesn’t write so many 
logging/debugging messages. Now to check all my projects are working...

Hraban
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re:  What’s wrong with installation?
  2022-03-08 14:58         ` Henning Hraban Ramm via ntg-context
@ 2022-03-08 15:22           ` Hans Hagen via ntg-context
  0 siblings, 0 replies; 9+ messages in thread
From: Hans Hagen via ntg-context @ 2022-03-08 15:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Hans Hagen

On 3/8/2022 3:58 PM, Henning Hraban Ramm via ntg-context wrote:
> Am 08.03.22 um 14:03 schrieb Hans Hagen via ntg-context:
>> On 3/8/2022 12:55 PM, Stephen Gaito via ntg-context wrote:
>>> Hans,
>>>
>>> I am having the same problem on an XUbuntu 21.10 :
>> hm, maybe the server has some issue ... i rebooted the machine
> 
> Thank you! I can confirm it’s working again – and the current version is 
> much faster than the previous one, because it doesn’t write so many 
> logging/debugging messages. Now to check all my projects are working...
actually, that current version is not that current ... so you could have 
gotten that gain more than a month ago

(btw, you only got that 'temporary' enabled plenty of detail when you 
had many overfull boxes so you still need to check that)

we are progressing with the math so i suppose that there will be an 
update soon, if only because users can then test if we messed up

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-03-08 15:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-07 11:48 What’s wrong with installation? Henning Hraban Ramm via ntg-context
2022-03-08  9:06 ` Ursula Hermann via ntg-context
2022-03-08 10:09   ` Hans Hagen via ntg-context
2022-03-08 11:55     ` Stephen Gaito via ntg-context
2022-03-08 13:03       ` Hans Hagen via ntg-context
2022-03-08 13:22         ` Keith McKay via ntg-context
2022-03-08 13:32         ` Stephen Gaito via ntg-context
2022-03-08 14:58         ` Henning Hraban Ramm via ntg-context
2022-03-08 15:22           ` Hans Hagen via ntg-context

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).