Skip to content

Instantly share code, notes, and snippets.

@flavianmissi
Created June 12, 2012 14:07
Show Gist options
  • Save flavianmissi/2917751 to your computer and use it in GitHub Desktop.
Save flavianmissi/2917751 to your computer and use it in GitHub Desktop.
Rsyslog installation script (ubuntu 12.04)
#!/bin/bash
sudo apt-get update
sudo apt-get -y install make libmysqlclient-dev x11-apps
wget http://www.rsyslog.com/files/download/rsyslog/rsyslog-4.6.1.tar.gz
tar xvf rsyslog-4.6.1.tar.gz
cd rsyslog-4.6.1
sudo mkdir /var/log/rsyslog # replace by your $WorkDirectory value, if any
./configure && make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment