rc.local in Ubuntu
I am running Breezy Ubuntu and I don't have an rc.local on the system. I don't know if this is a concious decision or an oversite. Here are the steps I used to create one.
1. create /etc/init.d/rc.local
#!/bin/sh
#rc.local
echo 1024 > /proc/sys/dev/rtc/max-user-freq
2. run the following command:
# update-rc.d rc.local start 99 2 3 4 5 .
Hattip to Ubuntu Blog
for the starting point.
I am running Breezy Ubuntu and I don't have an rc.local on the system. I don't know if this is a concious decision or an oversite. Here are the steps I used to create one.
1. create /etc/init.d/rc.local
#!/bin/sh
#rc.local
echo 1024 > /proc/sys/dev/rtc/max-user-freq
2. run the following command:
# update-rc.d rc.local start 99 2 3 4 5 .
Hattip to Ubuntu Blog
for the starting point.