diff --git a/Installation-CentOS-6.md b/Installation-CentOS-6.md index 627dde0..d125eca 100644 --- a/Installation-CentOS-6.md +++ b/Installation-CentOS-6.md @@ -80,22 +80,13 @@ The installation assumes that you're not using the root user to install/run Sona 7. **Run Sonarr to test** - Just run it to verify everything is working the stop it (CTRL-C) and move to the next steps. + Just run it to verify everything is working, then stop it (CTRL-C) and move to the next steps. - The freakishly long command below will: -
- 1. Set the LD_LIBRARY_PATH and PATH to point to the new sqlite and mono directories -
- 2. Run Sonarr -
- 3. Set the environment back to normal. + The somewhat long command below will temporarily set the LD_LIBRARY_PATH and PATH to point to the new sqlite and mono directories and run Sonarr using those variables. ```bash - export LPATH_BAK=$LD_LIBRARY_PATH ; export PATH_BAK=$PATH && \ - export LD_LIBRARY_PATH=/opt/mono/lib:/opt/sqlite3.8.5/lib && \ - export PATH=/opt/mono/bin:/opt/sqlite3.8.5/bin:$PATH && \ - /opt/mono/bin/mono /opt/nzbdrone/NzbDrone.exe ; \ - export PATH=$PATH_BAK ; export LD_LIBRARY_PATH=$LPATH_BAK + LD_LIBRARY_PATH=/opt/mono/lib:/opt/sqlite3.8.5/lib PATH=/opt/mono/bin:/opt/sqlite3.8.5/bin:$PATH \ + /opt/mono/bin/mono /opt/nzbdrone/NzbDrone.exe ``` ### Create Sonarr init Service