如何在不安装 Linux 的情况下测试包

出于某种原因,您可能希望在将软件包安装到 Linux 系统之前对其进行测试。 如果是这样,你很幸运! 今天,我将向您展示如何在 Linux 中使用 尼克斯 包管理器。 Nix 包管理器的显着功能之一是它允许用户测试包而无需先安装它们。 当您想临时使用特定应用程序时,这会很有帮助。

测试一个包而不在 Linux 中安装它

确保您首先安装了 Nix 包管理器。 如果您尚未安装它,请参阅以下指南。

  • Nix – 适用于 Linux 和 Unix 的强大包管理器

例如,假设您想测试您的 C++ 代码。 您不必安装 GCC。 只需运行以下命令:

$ nix-shell -p gcc

此命令构建或下载 gcc 包及其依赖项,然后将您放入 Bash shell,其中 海合会 命令存在,所有这些都不会影响您的正常环境。

 LANGUAGE = (unset), LC_ALL = (unset), LANG = "en_US.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). download-using-manifests.pl: perl: warning: Setting locale failed. download-using-manifests.pl: perl: warning: Please check that your locale settings: download-using-manifests.pl: LANGUAGE = (unset), download-using-manifests.pl: LC_ALL = (unset), download-using-manifests.pl: LANG = "en_US.UTF-8" download-using-manifests.pl: are supported and installed on your system. download-using-manifests.pl: perl: warning: Falling back to the standard locale ("C"). download-from-binary-cache.pl: perl: warning: Setting locale failed. download-from-binary-cache.pl: perl: warning: Please check that your locale settings: download-from-binary-cache.pl: LANGUAGE = (unset), download-from-binary-cache.pl: LC_ALL = (unset), download-from-binary-cache.pl: LANG = "en_US.UTF-8"  [...]  fetching path ‘/nix/store/6mk1s81va81dl4jfbhww86cwkl4gyf4j-stdenv’... perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = "en_US.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C").  *** Downloading ‘https://cache.nixos.org/nar/0aznfg1g17a8jdzvnp3pqszs9rq2wiwf2rcgczyg5b3k6d0iricl.nar.xz’ to ‘/nix/store/6mk1s81va81dl4jfbhww86cwkl4gyf4j-stdenv’... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 8324 100 8324 0 0 6353 0 0:00:01 0:00:01 --:--:-- 6373  [nix-shell:~]$

检查 GCC 版本:

[nix-shell:~]$ gcc -v Using built-in specs. COLLECT_GCC=/nix/store/dyj2k6ch35r1ips4vr97md2i0yvl4r5c-gcc-5.4.0/bin/gcc COLLECT_LTO_WRAPPER=/nix/store/dyj2k6ch35r1ips4vr97md2i0yvl4r5c-gcc-5.4.0/libexec/gcc/x86_64-unknown-linux-gnu/5.4.0/lto-wrapper Target: x86_64-unknown-linux-gnu Configured with:  Thread model: posix gcc version 5.4.0 (GCC)

现在,继续测试代码。 完成后,输入 出口 返回您的控制台。

[nix-shell:~]$ exit exit

一旦你从 nix-shell 退出,你就不能使用 GCC。

这是另一个例子。

$ nix-shell -p hello 

这会构建或下载 GNU Hello 及其依赖项,然后将您放入 Bash shell,其中 你好 命令存在,所有这些都不会影响您的正常环境:

[nix-shell:~]$ hello Hello, world! 

键入 exit 以返回控制台。

[nix-shell:~]$ exit 

现在测试 hello 程序是否可用。

$ hello  hello: command not found

有关 Nix 包管理器的更多详细信息,请参阅以下指南。

  • Nix 包管理器入门

感谢您的光临!

帮助我们帮助您:

  • 订阅我们的电子邮件通讯: 立即注册
  • 支持 OSTechNix: 通过贝宝捐款
  • 下载免费的电子书和视频: TradePub 上的 OSTechNix
  • 联系我们: 红迪网 | Facebook | 推特 | 领英 | RSS订阅

祝你有美好的一天!!

LinuxNix 包管理器NixOS包管理器