Install texlive during centos installation

Issues related to applications and software problems and general support
Post Reply
kalahan
Posts: 4
Joined: 2020/09/12 12:43:06

Install texlive during centos installation

Post by kalahan » 2020/09/12 12:46:55

When I creating a bootable flash drive with centos 8, using rufus, I noticed that texlive packages are copied to the flash drive. I was wondering how to install texlive with centos. I need to use texlive, and there will be no Internet on my centos computer.

User avatar
TrevorH
Site Admin
Posts: 33216
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Install texlive during centos installation

Post by TrevorH » 2020/09/12 13:30:48

Don't use rufus, it can break our isos.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

kalahan
Posts: 4
Joined: 2020/09/12 12:43:06

Re: Install texlive during centos installation

Post by kalahan » 2020/09/12 13:48:44

It was a necessity. I usually use dd. The crux of the issue is that I saw that, it turns out, texlive can be installed during the installation of centos. I wanted to know how.

kalahan
Posts: 4
Joined: 2020/09/12 12:43:06

Re: Install texlive during centos installation

Post by kalahan » 2020/09/12 18:48:53

So how can I install texlive when installing centos?

User avatar
jlehtone
Posts: 4530
Joined: 2007/12/11 08:17:33
Location: Finland

Re: Install texlive during centos installation

Post by jlehtone » 2020/09/12 22:13:15

The packages are in AppStream repo. The install media has a copy of that repo (I presume).

CentOS install defines repositories c8-media-BaseOS and c8-media-AppStream. They point to:

Code: Select all

baseurl=file:///media/CentOS/BaseOS
        file:///media/cdrom/BaseOS
        file:///media/cdrecorder/BaseOS

baseurl=file:///media/CentOS/AppStream
        file:///media/cdrom/AppStream
        file:///media/cdrecorder/AppStream
Therefore, if the install media is mounted to one of /media/CentOS, /media/cdrom, or /media/cdrecorder
then you can

Code: Select all

sudo yum --enablerepo=c8-media-BaseOS,c8-media-AppStream install texlive ...
If you want the installer to include packages (that its GUI does not let you choose), then you should have
a kickstart config, preferably on the media.

kalahan
Posts: 4
Joined: 2020/09/12 12:43:06

Re: Install texlive during centos installation

Post by kalahan » 2020/09/14 16:14:58

Thanks

Post Reply