From 1f7bda882b8a7c4fcf71fc8a51c1f56c7ece0a66 Mon Sep 17 00:00:00 2001 From: Drewster727 Date: Sun, 27 Mar 2016 14:20:14 -0500 Subject: [PATCH] Update README.md --- README.md | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 063df9a5e..c322f1537 100644 --- a/README.md +++ b/README.md @@ -42,25 +42,29 @@ Looking for a Docker Image? Well [rogueosb](https://github.com/rogueosb/) has cr To configure PlexRequests to run on debian/ubuntu and set it to start up with the system, do the following (via terminal): -Create a location to drop the files (up to you, we'll ues /opt/PlexRequests as an example) +###Create a location to drop the files (up to you, we'll ues /opt/PlexRequests as an example) + ```sudo mkdir /opt/PlexRequests``` -Download the release zip +###Download the release zip ``` sudo wget {release zip file url} sudo unzip PlexRequests.zip -d /opt/PlexRequests ``` -Install Mono (this app will be used to actually run the .net libraries and executable) +###Install Mono (this app will be used to actually run the .net libraries and executable) + ```sudo apt-get install mono-devel``` -Verify Mono properly runs PlexRequests +###Verify Mono properly runs PlexRequests + ```sudo /usr/bin/mono /opt/PlexRequests/PlexRequests.exe``` -Create an upstart script to auto-start PlexRequests with your system (using port 80 in this example) +###Create an upstart script to auto-start PlexRequests with your system (using port 80 in this example) + ```sudo nano /etc/init/plexrequests.conf``` -paste in the following: +####Paste in the following: ``` start on runlevel [2345] @@ -78,7 +82,8 @@ script end script ``` -Reboot and open up your browser to check that it's running! +###Reboot, then open up your browser to check that it's running! + ```sudo shutdown -r 00``` # Contributors