Linux

suse Professional 11 的等效開發/建構工具

  • May 10, 2021

我有 suse Professional 11.4

在redhat我們有這個:

yum group install "development tools"

在 Debian 中,我們有這個:

apt-get install build-essentials

suse 的等價物是什麼?我想安裝所有的建構/開發工具。

非常感謝您的任何建議,

您可以在 Suse 論壇上找到它。

http://forums.opensuse.org/applications/413553-build-essential.html

沒有“建構必需”類型的包 - 您可以使用命令安裝 c/c++ 開發工具,zypper install -t pattern devel_C_C++或者通過安裝C/C++ Compiler and Tools(在 suse 11.0 上)或C/C++ DevelopmentYAST 軟體管理中的模式

除了 Jeroen 的回答之外,我還執行了這個命令來找出模式名稱:

$ zypper se -t pattern devel
Loading repository data...
Reading installed packages...

S | Name        | Summary                  | Type
--+-------------+--------------------------+--------
i | Basis-Devel | C/C++ Compiler and Tools | pattern

然後是安裝軟體包的問題:

$ zypper install --type pattern Basis-Devel
Loading repository data...
Reading installed packages...
Resolving package dependencies...

The following NEW packages are going to be installed:
 adaptec-firmware aspell aspell-en aspell-ispell atmel-firmware autoconf automake bison brocade-firmware ctags cvs emacs emacs-info emacs-x11 flex gcc43-c++ gcc43-info gcc43-locale gcc-c++ gcc-info gcc-locale gdbm-devel giflib
 glibc-info icom-firmware ipw-firmware kernel-default-devel kernel-source libaio-devel libasound2 libncurses6 libstdc++43-devel libstdc++-devel mpt-firmware ncurses-devel pkg-config rcs tack texinfo xaw3d

The following NEW patterns are going to be installed:
 Basis-Devel Minimal

<snip>

這是在 SLES SP1 上。

引用自:https://serverfault.com/questions/437680