December 16, 201114 yr First of all, thank you for a awesome script. I am a Unraid noob, and it made things easy. I have a couple of questions. I had installed Plex and if you want to stop the array, you have to stop the running apps. In the Unmenu package you have an option to stop/start the apps. What is the proper method if using the script?
December 16, 201114 yr Author First of all, thank you for a awesome script. I am a Unraid noob, and it made things easy. I have a couple of questions. I had installed Plex and if you want to stop the array, you have to stop the running apps. In the Unmenu package you have an option to stop/start the apps. What is the proper method if using the script? Thanks - glad to see someone give it a spin. Realistically there is two ways to stop the services to stop the array (from what I know): 1. Easiest: Go to Box/Settings/Disk and disable autostart of array. Reboot the machine (all the services will shutdown *cleanly*) and array will not be started - make the changes you wish, set the array to autostart again and reboot. All services should come up next boot. 2. Technical way: Telnet into the box and run the following commands to stop the current services. (hint, run the same commands and replace "stop" with "start" to start the services) - You should be able to stop the array after. /etc/rc.d/unraid.d/rc.unraid_sabnzbd stop /etc/rc.d/unraid.d/rc.unraid_sickbeard stop /etc/rc.d/unraid.d/rc.unraid_couchpotato stop /etc/rc.d/unraid.d/rc.unraid_headphones stop /etc/rc.d/unraid.d/rc.unraid_transmission stop /etc/rc.d/unraid.d/rc.unraid_subsonic stop /etc/rc.d/unraid.d/rc.unraid_airvideo stop /etc/rc.d/unraid.d/rc.unraid_plex stop ~dpc
December 17, 201114 yr Thanks for the quick reply. That simple solution, came to me about an hour after posting the question? Just turn of the autostart.
December 18, 201114 yr Started using it but seems to have some sort of issue , i used --sabnzbd --sickbeard --couchpotato --headphones and it still installed everything , any idea why ? it installed transmission and all the other stuff air video ffmpeg etc. Thanks. ./massivev1.0.sh: line 103: [: =: unary operator expected ./massivev1.0.sh: line 110: [: =: unary operator expected ./massivev1.0.sh: line 117: [: =: unary operator expected ./massivev1.0.sh: line 124: [: =: unary operator expected ./massivev1.0.sh: line 133: [: =: unary operator expected ./massivev1.0.sh: line 142: [: =: unary operator expected ./massivev1.0.sh: line 155: [: =: unary operator expected I get those warnings as after i setup the things and then it starts by installing JRE Cheers Ah after more testing guess those packages i can't filter out unless i modify the script i guess to not download ffmpeg and jre etc
February 16, 201214 yr Started using it but seems to have some sort of issue , i used --sabnzbd --sickbeard --couchpotato --headphones and it still installed everything , any idea why ? it installed transmission and all the other stuff air video ffmpeg etc. Thanks. ./massivev1.0.sh: line 103: [: =: unary operator expected ./massivev1.0.sh: line 110: [: =: unary operator expected ./massivev1.0.sh: line 117: [: =: unary operator expected ./massivev1.0.sh: line 124: [: =: unary operator expected ./massivev1.0.sh: line 133: [: =: unary operator expected ./massivev1.0.sh: line 142: [: =: unary operator expected ./massivev1.0.sh: line 155: [: =: unary operator expected I get those warnings as after i setup the things and then it starts by installing JRE Cheers Ah after more testing guess those packages i can't filter out unless i modify the script i guess to not download ffmpeg and jre etc I had the same issue with those errors. I fixed it with the information from http://linuxcommand.org/wss0100.php On each of those lines you have something like if [ $infoairvideo = 5 ] Change that to if [ "$infoairvideo" = "5" ] Problem solved
Archived
This topic is now archived and is closed to further replies.