texlive2022-20220321.iso installation problem

karl at aspodata.se karl at aspodata.se
Fri May 20 17:22:33 CEST 2022


George N. White III:
> On Fri, May 20, 2022 at 5:59 AM <karl at aspodata.se> wrote:
...
> > But I kindof wanted to get rid of unneeded packages...
...
>  for f in $('ls' -1 /usr/local/texlive/2022/bin/x86_64-linux|head) ; do
>    type $(basename $f)
>  done | grep -Fv 'not found'
> 
> with the texlive directory removed from the PATH should generate a
> list of name clashes with stuff found elsewhere on your PATH.

Do you want tools such as this in the texlive dist ?

Since I have texlive in the end part of PATH, I don't have to change
PATH.

Good starting point, but that one also finds data files and directories,
so the one below works better.

///
find /usr/local/texlive/2022/bin/x86_64-linux/ -maxdepth 1 -type f -executable |
while read a; do which `basename $a`; done |
egrep '^(/usr|/usr/local)?/bin' > list
///
cat list |
while read a; do grep -l $a /var/db/pkg/*/*/CONTENTS; done |
sort -u |
sed -e 's/^\/var\/db\/pkg\///; s/\/CONTENTS$//' > list2
///
 list2:
app-crypt/rhash-1.4.2
app-forensics/magicrescue-1.1.10
app-text/dvipng-1.17
app-text/dvisvgm-2.12
app-text/lcdf-typetools-2.108-r1
app-text/ps2eps-1.68
app-text/ps2pkm-1.8_p20210325-r1
app-text/psutils-1.17-r3
app-text/t1utils-1.42
app-text/teckit-2.5.10
app-text/ttf2pk2-2.0_p20210325
app-text/xdvik-22.87.03-r3
media-gfx/imagemagick-7.1.0.13

I get a list of 34 binaries from 13 packages on gentoo, and on devuan:

cat list |
while read a; do grep -l $a /var/lib/dpkg/info/*.list; done |
cut -f1 -d: |
sort -u |
sed -e 's/^\/var\/lib\/dpkg\/info\///; s/\.list$//'

dvipng
lcdf-typetools
ps2eps
psutils
t1utils
teckit
texlive-binaries

Regards,
/Karl Hammar




More information about the tex-live mailing list.