Re: Making rc.local work on F20.

2014-10-27 Thread R. G. Newbury
On Sat, 2014-10-25 at 21:25 -0400, Derrik Walker v2.0 wrote: : cd /etc echo '#!/bin/bash' > rc.d/rc.local ln -s rc.d/rc.local rc.local chmod 755 rc.d/rc.local As noted, previously you should use 'vi /etc/rc.d/rc.local' to add the '#!/bin/bash' line and any testing lines (like 'touch /var/tmp/

Re: Making rc.local work on F20.

2014-10-26 Thread Derrik Walker v2.0
On 10/26/2014 02:19 AM, Tim wrote: On Sat, 2014-10-25 at 21:25 -0400, Derrik Walker v2.0 wrote: First thing I did was: # cd/etc Typo, there, too. I think this is what you meant, getting rid of all the typos into one list, together, and inserting what you probably did do first: su - cd /et

Re: Making rc.local work on F20.

2014-10-25 Thread Tim
On Sat, 2014-10-25 at 21:25 -0400, Derrik Walker v2.0 wrote: > First thing I did was: > > # cd/etc Typo, there, too. I think this is what you meant, getting rid of all the typos into one list, together, and inserting what you probably did do first: su - cd /etc echo '#!/bin/bash' > rc.d/rc.lo

Re: Making rc.local work on F20.

2014-10-25 Thread Derrik Walker v2.0
On 10/25/2014 10:24 PM, Kevin Cummings wrote: On 10/25/2014 09:25 PM, Derrik Walker v2.0 wrote: First thing I did was: # cd/etc # echo '$!/bin/bash' > /rc.d/rc.local Warning, you should echo a line beginning with #!, not $! Second, you should echo it to rc.d/rc.local (note the missing / at th

Re: Making rc.local work on F20.

2014-10-25 Thread Kevin Cummings
On 10/25/2014 09:25 PM, Derrik Walker v2.0 wrote: > First thing I did was: > > # cd/etc > # echo '$!/bin/bash' > /rc.d/rc.local Warning, you should echo a line beginning with #!, not $! Second, you should echo it to rc.d/rc.local (note the missing / at the beginning of the path), otherwise you m