我在 Xubuntu 16.04.1 中,make
版本为 4.1。我对这个版本有些怀疑,想暂时安装旧版本 (3.81),它在另一台旧机器上与我的软件包配合得很好。
最安全的方法是什么?我不想破坏任何东西,只想运行旧版本几次。
答案1
GNU 维护者通常在这样的事情上做得很好:如果你从源代码构建和安装,它将默认make-3.81
进入(保留当前版本的),并且你应该能够通过之后从源目录运行来完全删除它。/usr/local/
make
/usr/bin
sudo make uninstall
为了显示:
steeldriver@xenial-vm:~/src/make-3.81$ ./configure
steeldriver@xenial-vm:~/src/make-3.81$ make
steeldriver@xenial-vm:~/src/make-3.81$ sudo make install
然后检查版本:
steeldriver@xenial-vm:~/src/make-3.81$ hash -r make
steeldriver@xenial-vm:~/src/make-3.81$ make --version
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for x86_64-unknown-linux-gnu
现在将其卸载并再次检查:
steeldriver@xenial-vm:~/src/make-3.81$ sudo make uninstall
steeldriver@xenial-vm:~/src/make-3.81$ hash -r make
steeldriver@xenial-vm:~/src/make-3.81$ make --version
GNU Make 4.1
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
答案2
首先安装 make 版本 3.81。这将替换现有的版本。然后重命名可执行文件。然后安装版本 4.1。现在您可以使用旧版本。