Re: install-tl.zip rimanda al repo di uniroma2 e fallisce …

#63669
Up
0
Down
::


Per l’installazione su Windows ci sono poche alternative, perché si deve passare da install-tl.bat (per scelta escludo il bat ‘advanced’).
`
@echo off
rem $Id: install-tl.bat 23570 2011-08-15 23:28:01Z trzeciak $
rem Wrapper script to set up environment for installer
rem
rem Public domain.
rem Originally written 2009 by Tomasz M. Trzeciak.

rem First, check if this is DOS based system
rem in DOS '^' is just a normal character
if not ^x==x goto DOS

rem Abort if we are running from UNC path
if %~d0==\\ goto UNC

rem Localize environment changes
setlocal enableextensions

rem Do we really need to cd to the batch location?
cd /d “%~dp0”

rem Remove any double quotes from PATH (why we care for it at all???)
set “path=%path:”=%”

rem Break search path into dir list and rebuild w/o tex dirs
call :rebuildpath “;” “%path:;=” “%”
if “%path:~0,1%”==”;” set “path=%path:~1%”

rem Use TL Perl
set “path=%~dp0tlpkg\tlperl\bin;%path%”
set “PERL5LIB=%~dp0tlpkg\tlperl\lib”

rem Start installer
path
perl “%~dpn0” %*
pause
goto :eof

rem Subroutine to build search path without tex directories
rem any dir containing pdftex.exe is considered a tex dir
:rebuildpath “;” dir list …
shift
rem The first argument (“;”) serves as a marker to reset the path
if “%~0″==”;” set path=
rem Finish if no more arguments to process
if [%1]==[] goto :eof
rem Continue if tex dir
if exist “%~1\pdftex.exe” goto :rebuildpath
rem Add dir to path
set “path=%path%;%~1”
goto :rebuildpath

rem About install-tl.bat.manifest:
rem Vista assumes that a file with install in the name is
rem an installer and therefore requires administrative privileges.
rem The manifest file tells Vista otherwise.

:UNC
echo Cannot run from UNC path.
echo Map network drive to a drive letter and rerun the installer.
echo You can use pushd/popd commands for temporary mapping.
pause
exit /b 1

:DOS
echo DOS and Windows 9x systems are not supported. Sorry.
echo Windows 2000 or newer is required.
pause
`
Poco fa ho dato il comando suggerito dalle istruzioni della figura allegata
`
install-tl –gui=wizard
`
Sembrava che qualcosa fosse cambiato, repo di garr.it. ma anche questo si è bloccato (lettera “e”) per presumibile intasamento del server (error 500)

[attachment=34]istr.png[/attachment]
Che dire … più tardi (notte) proverò il tuo comando, OldClaudio, escludendo il sudo ed eliminando una t da htttp:// …!!
Ciao

Attachments:
You must be logged in to view attached files.

Go to top