Created
June 12, 2012 14:07
-
-
Save flavianmissi/2917751 to your computer and use it in GitHub Desktop.
Rsyslog installation script (ubuntu 12.04)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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