Redrazor39 said: Is the IP address the 192.xxx.x.xxx thing I typed into my address bar? Or is it the public IP address that's like 69.etc.?
The reason you need the network information is because during Arch install you have to edit the networking section of the rc.conf (main configuration file in Arch). The 192.xxx.xxx.xxx address is the address of your computer on the LAN side of your router. The 69.xxx.xxx.xxx address is the address of the actual router on the internet side. When you set up Arch, your networking section will look something like below, with the bold things being what you have to customize:
# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
#
**HOSTNAME="MyComputerName"**
# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
#
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
# - prefix an entry in INTERFACES with a ! to disable it
# - no hyphens in your interface names - Bash doesn't like it
#
# DHCP: Set your interface to "dhcp" (eth0="dhcp")
# Wireless: See network profiles below
#
[B]eth0="eth0 192.168.1.140 netmask 255.255.255.0 broadcast 192.168.1.255"
INTERFACES=(eth0)[/B]
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# - prefix an entry in ROUTES with a ! to disable it
#
**gateway="default gw 192.168.1.1"**
ROUTES=(gateway)
Note: the etho (ethernet) part that shows the particular address of 192.168.1.140 is for assigning a static IP address. If you just want to use dhcp and get a randomly assigned address at every boot, you can just use dhcp rather than the actual address.
It's actually pretty straightforward. Just follow the [[COLOR="Blue"]Arch Beginner's Guide[/COLOR]]("http://wiki.archlinux.org/index.php/Beginners_Guide") and you can't go far wrong.
Bob
P.S. I'm an Arch/Openbox convert who also came over from Ubuntu, and I couldn't be happier. Welcome aboard. :)