我正试图在一台ubuntu16.04机器上安装一个香草的texlive 2018发行版,如下所示:https://tex.stackexchange.com/questions/1092/how-to-install-vanilla-texlive-on-debian-or-ubuntu/95373#95373
然而,在步骤equivs-build texlive-local (作为root执行)中,我得到了错误消息:
/usr/bin/fakeroot: line 175: debian/rules: Permission denied
Error in the build process: exit status 126我怎么才能解决这个问题?
发布于 2018-11-07 18:17:13
问题是,我在/tmp/中为equivs构建过程创建了临时目录,出于安全原因,使用noexec标志挂载了/tmp。
将构建目录复制到另一个位置确实使其工作,同时es在没有/tmp标志的情况下重新挂载noexec。
https://unix.stackexchange.com/questions/480382
复制相似问题