texlive2020的安装

一、下载 iso 镜像

wget -c https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/texlive2020.iso

下载过程大约持续10~30分钟
二、挂载镜像

su
mount -o loop texlive2020.iso  /mnt/
cd /mnt
./install-tl #输入 I 然后回车进行安装

安装过程大约持续半小时
三、卸载镜像

su
cd
umount /mnt

当你的当前路径为/mnt下,即在挂载文件的里面时,卸载会失败,提示:Dev is besy。所以必须退出挂载的目录。另外,当有别的程序正在访问挂载的文件时,也会提示卸载失败,通过 lsof /mnt 查看是哪个进程占用了/mnt,kill -9 $pid ,然后再卸载。
也可以直接使用:umount -l /mnt (-l : 卸载前会检查占用该挂载文件的程序并迅速kill掉,以达到快速卸载的目的)
四、设置环境变量

export MANPATH=${MANPATH}:/urs/local/texlive/2020/texmf-dist/doc/man
export INFOPATH=${INFOPATH}:/usr/local/texlive/2020/texmf-dist/doc/info
export PATH=${PATH}:/usr/local/texlive/2020/bin/x86_64-linux

五、设置清华源

su
tlmgr update --self
tlmgr update --all --repository https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/tlnet

参考文献:
https://blog.csdn.net/m0_37952030/article/details/90646388

你可能感兴趣的:(shell)