How I made Slako 6.3 connect To Internet at boot

How to do things, solutions, recipes, tutorials
Post Reply
Message
Author
User avatar
zandoval
Posts: 33
Joined: Tue 10 May 2005, 15:41
Location: USA Bastrop Texas

How I made Slako 6.3 connect To Internet at boot

#1 Post by zandoval »

Slako 6.3 would not automatically connect to the Internet at boot with frugal install even though connections settings were saved for next session.

This connection is a simple Cat5 wired connection via eth0 Auto DHCP. I am not sure if this would work with other type connections.

After a few times of saving my settings via Puppy's Network Wizard and finding that there was no automatic connection I rebooted and typed dhcpcd into a terminal and bang... I was connected.

So I just droped the command into a script in the start menu.

File> Startup> Rc> New> Script> (make up a name)> Create

On the file Rc> Open As Text> under the line #!/bin/sh type in "dhcpcd"> Save

Code: Select all

#!/bin/sh
dhcpcd
Maybe someone can tell me why this works and if there are other configurations for other connections.
No Matter Where Your At... There You Are...

User avatar
Pete
Posts: 660
Joined: Sun 02 Mar 2014, 18:36

#2 Post by Pete »

For lots of info on dhcpcd, see here:

https://wiki.archlinux.org/index.php/dhcpcd

There is also ifplugd for laptops.
On Slacko (6.3) it's in /sbin/ifplugd

http://linux.die.net/man/8/ifplugd

Post Reply