Backtrack IP resets every few minutes

Amedee Van Gasse amedee-ubuntu at amedee.be
Fri Jun 29 21:27:57 UTC 2012


On 29/06/2012 17:11, TopBot . wrote:
>
>
>
>
>
> For now I'm running this code to make atleast the internet browsing 
> experience better but the connection resets have loads of other 
> setbacks which are all irritating:
>
> #!/bin/bash
> while true
> do
>  /root/Desktop/IPrest.sh
>  sleep 60
> done

If you're going to run it every 60 seconds then a cron job would be better.
Drop to a console and type

crontab -e
(sudo crontab -e if it needs to run as root)

Add the following line:

* * * * * /root/Desktop/IPrest.sh


Also, are you running as root? I hope that you're not running a GUI as root?
I'm asking because of the /root/Desktop/ directory.




More information about the ubuntu-users mailing list