You are not logged in.
After having problems with my network in general, fixed by disabling ipv6, I now can't get things like the checkmail conky script to work, if I try, it hangs on something such as the following:
Connecting to fpdownload.macromedia.com|1.0.0.0|:80...
Connecting to mail.google.com|1.0.0.0|:443...
and never connects.
Last edited by Reasons (2008-01-06 22:16:54)
Offline
maybe conky relies on IPv6? I am betting money it does.
I could be wrong though.
Last edited by jacko (2008-01-06 07:06:35)
Offline
It didn't work when it was enabled. It's not conky, just the scripts I use to check my gmail and those shouldn't need anything like ipv6, just a working connection.
Offline
Is that "1.0.0.0" there supposed to be an IP adress? Show all your network-related configs, from rc.conf, resolv.conf, /etc/hosts...
I hate sigs. This one only exists to remind myself to get an avatar.
Offline
This problem is not related to package building. Please change the the topic.
Offline
Is that "1.0.0.0" there supposed to be an IP adress? Show all your network-related configs, from rc.conf, resolv.conf, /etc/hosts...
rc.conf
#
# /etc/rc.conf - Main Configuration for Arch Linux
#
#
# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
#
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime"
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
#
LOCALE="en_US.utf8"
HARDWARECLOCK="localtime"
TIMEZONE="Canada/Pacific"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"
#
# -----------------------------------------------------------------------
# HARDWARE
# -----------------------------------------------------------------------
#
# Scan hardware and load required modules at bootup
MOD_AUTOLOAD="yes"
# Module Blacklist - modules in this list will never be loaded by udev
MOD_BLACKLIST=()
#
# Modules to load at boot-up (in this order)
# - prefix a module with a ! to blacklist it
#
MODULES=(sky2 iwl4965 snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-intel soundcore acpi-cpufreq cpufreq_conservative)
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
#
# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
HOSTNAME="reasons"
#
# 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
#
# Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
#
lo="lo 127.0.0.1"
eth0="dhcp"
wlan0="dhcp"
#eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
INTERFACES=(lo eth0 wlan0)
#
# 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.0.1"
ROUTES=(!gateway)
#
# Enable these network profiles at boot-up. These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
#
# Network profiles are found in /etc/network-profiles
#
#NET_PROFILES=(main)
#
# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
#
DAEMONS=(syslog-ng cron dbus netfs !network !dhcdbd wicd crond @alsa @acpid @hal @fam @mpd @acpid @cpufreq gdm)
# End of fileresolv.conf
search domain.actdsltmp
nameserver 192.168.0.1
nameserver 205.171.3.65/etc/hosts
#
# /etc/hosts: static lookup table for host names
#
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost reasons
# End of fileEDIT - while building ALSA today I reinstalled gettext as well as patch (though I doubt that'd matter) and it seems to have fixed it.
Last edited by Reasons (2008-01-06 16:52:41)
Offline