Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Build-essential for openSUSE

Tags:

linux

opensuse

I am a newbie on openSUSE. I needed to get build-essential for the system but could not get it using sudo apt-get install build-essential or even by using sudo apt-get update and then following it with the previous code. I found a way to install most packages of build essential through sudo zypper install -t pattern devel_basis. But however, I am not able to obtain libframe package !! I can't directly download it because mine is an account on the office computer and I don't have the root access. I am also attaching the screenshot of my terminal.. The error is towards the end.

Screenshot

like image 218
Astronomer Avatar asked May 27 '16 07:05

Astronomer


People also ask

What is build-essential on Linux?

build-essential is what is called a meta-package. It in itself does not install anything. Instead, it is a link to several other packages that will be installed as dependencies. In the case of the build-essential meta-package, it will install everything required for compiling basic software written in C and C++.

How do I install build-essential?

The build-essential tools can be directly installed using the Ubuntu official repository. They are available in the Ubuntu system repository by default. We need to just install build-essential tool meta-packages from the apt package manager. We need to open our terminal window from the "Ctrl+Alt+T" keyboard shortcut.

What package manager does OpenSUSE use?

Zypper is the name of the package manager used by openSUSE and SUSE Enterprise Linux.


1 Answers

zypper info -t pattern devel_basis to see what packages have the pattern

zypper install -t pattern devel_basis to install these packages

thanks to what-is-build-essentials-for-opensuse

like image 104
赵锦杰 Avatar answered Sep 18 '22 06:09

赵锦杰