• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2# Copyright (c) 2018-2020 Petr Vorel <pvorel@suse.cz>
3set -ex
4
5# workaround for missing oldstable-updates repository
6# W: Failed to fetch http://deb.debian.org/debian/dists/oldstable-updates/main/binary-amd64/Packages
7grep -v oldstable-updates /etc/apt/sources.list > /tmp/sources.list && mv /tmp/sources.list /etc/apt/sources.list
8
9apt update
10
11apt install -y --no-install-recommends \
12	acl-dev \
13	autoconf \
14	automake \
15	build-essential \
16	debhelper \
17	devscripts \
18	clang \
19	gcc \
20	libacl1 \
21	libacl1-dev \
22	libaio-dev \
23	libaio1 \
24	libcap-dev \
25	libcap2 \
26	libc6 \
27	libc6-dev \
28	libkeyutils-dev \
29	libkeyutils1 \
30	libmm-dev \
31	libmnl-dev \
32	libnuma-dev \
33	libnuma1 \
34	libselinux1-dev \
35	libsepol1-dev \
36	libssl-dev \
37	libtirpc-dev \
38	linux-libc-dev \
39	lsb-release \
40	pkg-config
41
42df -hT
43