Displaying 5 results from an estimated 5 matches for "lacktherof".
2017 May 29
2
Proper way to start multiple icecast services through bash script?
...them works fine but starting them hangs. Please help me create the steps to start the 4 icecast instances via bash. I have tried no & and && as well. Feeling really stupid right now. Thank you in advance for your time and please spell out the answer without assuming my knowledge or lacktherof! 😉
#Kill all processes with the name icecast
ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r kill -9
#Start my icecast instances
/usr/bin/icecast -c /etc/icecast.xml -b &
/usr/bin/icecast -c /etc/icecast1.xml -b &
/usr/bin/icecast -c /etc/icecast2.xml -b &...
2017 May 29
5
Proper way to start multiple icecast services through bash script?
...m works fine but starting them hangs. Please help me create the
steps to start the 4 icecast instances via bash. I have tried no &
and && as well. Feeling really stupid right now. Thank you in
advance for your time and please spell out the answer without assuming
my knowledge or lacktherof! 😉
#Kill all processes with the name icecast
ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r
kill -9
#Start my icecast instances
/usr/bin/icecast -c /etc/icecast.xml -b &
/usr/bin/icecast -c /etc/icecast1.xml -b &
/usr/bin/icecast -c /etc/icecast2.xml -...
2017 May 29
0
Proper way to start multiple icecast services through bash script?
...rting them hangs. Please help me create the
> steps to start the 4 icecast instances via bash. I have tried no &
> and && as well. Feeling really stupid right now. Thank you in
> advance for your time and please spell out the answer without assuming
> my knowledge or lacktherof! 😉
>
>
> #Kill all processes with the name icecast
> ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r
> kill -9
> #Start my icecast instances
>
> /usr/bin/icecast -c /etc/icecast.xml -b &
> /usr/bin/icecast -c /etc/icecast1.xml -b &
>...
2017 May 29
0
Proper way to start multiple icecast services through bash script?
...them hangs. Please help me create the
> steps to start the 4 icecast instances via bash. I have tried no &
> and && as well. Feeling really stupid right now. Thank you in
> advance for your time and please spell out the answer without
> assuming
> my knowledge or lacktherof! 😉
>
>
> #Kill all processes with the name icecast
> ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r
> kill -9
> #Start my icecast instances
>
> /usr/bin/icecast -c /etc/icecast.xml -b &
> /usr/bin/icecast -c /etc/icecast1.xml -b &...
2017 May 29
0
Proper way to start multiple icecast services through bash script?
...e create the
>>> steps to start the 4 icecast instances via bash. I have tried no &
>>> and && as well. Feeling really stupid right now. Thank you in
>>> advance for your time and please spell out the answer without assuming
>>> my knowledge or lacktherof! 😉
>>>
>>>
>>> #Kill all processes with the name icecast
>>> ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r
>>> kill -9
>>> #Start my icecast instances
>>>
>>> /usr/bin/icecast -c /etc/icecast....