GNU/Linux

Access

Blog History

Can’t find adsl-setup script in Fedora 8

I have just been trying to find the good old adsl-setup command in Fedora 8. No good! system-config-network was a no go either. No option to configure a pppoe connection. pppoe-setup looks like it has replaced adsl-setup. Problem solved move along. Nothing to see...

read more

Linux serial console

I had to test a console cable to see if it was indeed a console cable. The piece of equipment I was connecting to was outputting a garbled console leading me to wondering if I had a bad cable or a bad piece of equipment. Using the serial-console howto at...

read more

IPSec Compliant Gateway

I am currently investigating setting up a connection with the following features: Linux 2.6.x Base System IPSec Compliant Gateway NAT on the Gateway to hide internal addresses from the remote network http://www.sherman.ca/archives/2004/11/21/linux-26-ipsec-vpns/...

read more

The Linux find command

I'm putting this here so I can recall it for later The following snippet finds all files where the File's data was last modified more than 2 days ago and run the move command on each file to move them to the specified directory. find -mtime +2 -type f -print -exec mv...

read more