sbc-performance-test-kit/bin/install-dependencies.sh

15 lines
364 B
Bash
Raw Normal View History

2021-01-09 21:36:27 +00:00
#!/bin/bash
2021-01-10 23:40:11 +00:00
apt -y install make automake libtool pkg-config libaio-dev libssl-dev smartmontools hdparm nvme-cli
#apt -y install libmysqlclient-dev
apt -y install libmariadb-dev libmariadb-dev-compat
2021-01-09 21:36:27 +00:00
apt -y install libpq-dev
apt -y install lm-sensors
git clone https://github.com/akopytov/sysbench
cd sysbench/
./autogen.sh
./configure
make -j
make install
cd ..