Samba stopped working

I have a downstairs PC running Windows for the family, my Mum's laptop running Windows, and the PC in my bedroom running Arch. The Windows computers can access each other on the network, but they get an error about permissions when attempting to access the Arch computer - although at least it is visible. At the moment I'm not too concerned about this anyway because I probably just need to reconfigure the permissions on my Linux PC. What I am more concerned about is that I cannot access the Windows shares from Arch at all, even though I have made sure I am in the same workgroup. I see that the downstairs computer is visible in Konqueror Network Folders but when I click it I get the error: 'The file or folder smb://white-foxconn/ does not exist' (the downstairs PC). This is confusing because I can only assume that my Windows shares have the correct permissions since the laptop and downstairs Windows computers can access each others shared folders. Furthermore, it was working fine without me needing to mess with the smb.conf file because KDE generated one for me, but now it isn't working anymore. I am wondering if it is something to do with my router or dhcp. I have my dns configured ok in /etc/resolv.conf though.
I have set the hostname of the upstairs Linux PC to Asus in /etc/rc.conf and in /etc/hosts:
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain Asus
192.168.1.101 Asus
# End of file
Here is the KDE generated smb.conf file that used to work:
[global]
# workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
workgroup = Workgroup
netbios name = Upstairs PC
# server string is the equivalent of the NT Description field
server string = Samba Server
# Security mode. Defines in which mode Samba will operate. Possible
# values are share, user, server, domain and ads. Most people will want
# user level security. See the Samba-HOWTO-Collection for details.
security = user
# This option is important for security. It allows you to restrict
# connections to machines which are on your local network. The
# following example restricts access to two C class networks and
# the "loopback" interface. For more examples of the syntax see
# the smb.conf man page
; hosts allow = 192.168.1. 192.168.2. 127.
# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
load printers = yes
# you may wish to override the location of the printcap file
; printcap name = /etc/printcap
# on SystemV system setting printcap name to lpstat should allow
# you to automatically obtain a printer list from the SystemV spool
# system
; printcap name = lpstat
# It should not be necessary to specify the print system type unless
# it is non-standard. Currently supported print systems include:
# bsd, cups, sysv, plp, lprng, aix, hpux, qnx
; printing = cups
# Uncomment this if you want a guest account, you must add this to /etc/passwd
# otherwise the user "nobody" is used
; guest account = pcguest
# this tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/log.%m
# Put a capping on the size of the log files (in Kb).
max log size = 50
# Use password server option only with security = server
# The argument list may include:
# password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
# or to auto-locate the domain controller/s
# password server = *
; password server = <NT-Server-Name>
# Use the realm option only with security = ads
# Specifies the Active Directory realm the host is part of
; realm = MY_REALM
# Backend to store user information in. New installations should
# use either tdbsam or ldapsam. smbpasswd is available for backwards
# compatibility. tdbsam requires no further configuration.
; passdb backend = tdbsam
# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting.
# Note: Consider carefully the location in the configuration file of
# this line. The included file is read at that point.
; include = /usr/local/samba/lib/smb.conf.%m
# Configure Samba to use multiple interfaces
# If you have multiple network interfaces then you must list them
# here. See the man page for details.
; interfaces = 192.168.12.2/24 192.168.13.2/24
# Browser Control Options:
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
; local master = no
# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
; os level = 33
# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
; domain master = yes
# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
; preferred master = yes
# Enable this if you want Samba to be a domain logon server for
# Windows95 workstations.
; domain logons = yes
# if you enable domain logons then you may want a per-machine or
# per user logon script
# run a specific logon batch file per workstation (machine)
; logon script = %m.bat
# run a specific logon batch file per username
; logon script = %U.bat
# Where to store roving profiles (only for Win95 and WinNT)
# %L substitutes for this servers netbios name, %U is username
# You must uncomment the [Profiles] share below
; logon path = \\%L\Profiles\%U
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
; wins support = yes
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one WINS Server on the network. The default is NO.
; wins proxy = yes
# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups. The default is NO.
dns proxy = no
# These scripts are used on a domain controller or stand-alone
# machine to add or delete corresponding unix accounts
; add user script = /usr/sbin/useradd %u
; add group script = /usr/sbin/groupadd %g
; add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u
; delete user script = /usr/sbin/userdel %u
; delete user from group script = /usr/sbin/deluser %u %g
; delete group script = /usr/sbin/groupdel %g
include = /etc/samba/usershare.conf
restrict anonymous = no
domain master = no
preferred master = no
max protocol = NT
acl compatibility = winnt
ldap ssl = No
server signing = Auto
map to guest = Bad User
guest ok = yes
#============================ Share Definitions ==============================
[homes]
comment = Home Directories
read only = no
case sensitive = no
strict locking = no
msdfs proxy = no
path = /home/joe
# Un-comment the following and create the netlogon directory for Domain Logons
; [netlogon]
; comment = Network Logon Service
; path = /usr/local/samba/lib/netlogon
; guest ok = yes
; writable = no
; share modes = no
# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;[Profiles]
; path = /usr/local/samba/profiles
; browseable = no
; guest ok = yes
# NOTE: If you have a BSD-style print system there is no need to
# specifically define each individual printer
[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
# Set public = yes to allow user 'guest account' to print
guest ok = no
printable = yes
[Games and stuff]
path = /mnt/os
read only = no
case sensitive = no
strict locking = no
msdfs proxy = no
comment = TV, games, movies, holiday photos, Aaron's DJ Stuff, etc
Last edited by shadeheim (2007-09-25 21:31:15)

I had the same problem and solved it by moving /etc/samba/smb.conf.default to /etc/samba/smb.conf and re-adding my old config bit by bit. I couldn't track down exactly what was causing the issue but I was able to get samba to start again.

Similar Messages

  • Samba stopped working again after most recent security update

    This is not the first time that Samba has stopped working for me after applying an update to Mac OS X.
    I installed an update that 'Software Update' offered to me a day or two ago, and it has caused Samba to stop working again. I can't access the disks on my Powermac from any of my PCs (WinXP and Vista) again.
    I tried turning the firewall off. I tried turning SMB file sharing off and turning it back on. I tried disabling and enabling each of the users for SMB access. Still doesn't work.
    Under 'Sharing', I have 'File Sharing' enabled. Under its 'Options', I have 'Share files and folders using AFP' and 'Share files and folders using SMB' both enabled. I have my account enabled under 'Share files and folders using SMB'. I also tried disabling it and enabling it. Under Network setup, I have location 'Home' selected, because of previous problems with Samba not working if 'Automatic' was selected.
    Ideas?
    Thanks,
    Chris Shaker

    Hi, I think I need to update my profile because my computer definitely says it has 10.4.11
    I managed to solve the stickies and TextEdit issues by removing Butler in the end.

  • Windows sharing (smb) stopped working

    Hello,
    At work we have a huge network of windows computers. I access most of them on a daily basis, and there's one I'm connected to all the time, both to the filesystem and the windows printer.
    All other computers work fine but this one in particular is giving me a headache. YEsterday, all of a sudden and with no configuration change on either my mac or the windows machine, samba stopped working.
    When I'm asked my username and password, no matter what I type, I get a "unauthorised access". It didn't use to matter what I typed in there .. as long as the username field wasn't empty, the windows machine would accept it. Now it doesn't.
    As I said, I can access other computers just fine.
    Any ideas how to fix this?

    This is so strange.
    I created a user account on the Windows machine and I could access it through my mac.
    10 minutes later I tried again and again the same error. Even though the user account and password are correct.

  • My Samba server stopped working and I have no idea why.

    I set up a samba server once I got arch installed and it was working like a boss for about a month. Then one day (i think the machine may have rebooted) it just stopped working. I can't access my samba share from any of my other machines (all running Windows 7). I hadn't changed anything so I don't know what the culprit is. I did some update and looked at the smb.conf file but everything seems to be in order. I also tried to connect with smbclient from the machine itself and I get an NT_STATUS_CONNECTION_REFUSED error.
    What's going on?
    Here is my smb.conf
    # This is the main Samba configuration file. You should read the
    # smb.conf(5) manual page in order to understand the options listed
    # here. Samba has a huge number of configurable options (perhaps too
    # many!) most of which are not shown in this example
    # For a step to step guide on installing, configuring and using samba,
    # read the Samba-HOWTO-Collection. This may be obtained from:
    # http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf
    # Many working examples of smb.conf files can be found in the
    # Samba-Guide which is generated daily and can be downloaded from:
    # http://www.samba.org/samba/docs/Samba-Guide.pdf
    # Any line which starts with a ; (semi-colon) or a # (hash)
    # is a comment and is ignored. In this example we will use a #
    # for commentry and a ; for parts of the config file that you
    # may wish to enable
    # NOTE: Whenever you modify this file you should run the command "testparm"
    # to check that you have not made any basic syntactic errors.
    #======================= Global Settings =====================================
    [global]
    # workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
    workgroup = WORKGROUP
    # server string is the equivalent of the NT Description field
    server string = Vault Samba Server
    # Security mode. Defines in which mode Samba will operate. Possible
    # values are share, user, server, domain and ads. Most people will want
    # user level security. See the Samba-HOWTO-Collection for details.
    security = share
    # This option is important for security. It allows you to restrict
    # connections to machines which are on your local network. The
    # following example restricts access to two C class networks and
    # the "loopback" interface. For more examples of the syntax see
    # the smb.conf man page
    ; hosts allow = 192.168.1. 192.168.2. 127.
    # If you want to automatically load your printer list rather
    # than setting them up individually then you'll need this
    ; load printers = yes
    # you may wish to override the location of the printcap file
    ; printcap name = /etc/printcap
    # on SystemV system setting printcap name to lpstat should allow
    # you to automatically obtain a printer list from the SystemV spool
    # system
    ; printcap name = lpstat
    # It should not be necessary to specify the print system type unless
    # it is non-standard. Currently supported print systems include:
    # bsd, cups, sysv, plp, lprng, aix, hpux, qnx
    ; printing = cups
    # Uncomment this if you want a guest account, you must add this to /etc/passwd
    # otherwise the user "nobody" is used
    ; guest account = pcguest
    # this tells Samba to use a separate log file for each machine
    # that connects
    log file = /var/log/samba/%m.log
    # Put a capping on the size of the log files (in Kb).
    max log size = 50
    # Use password server option only with security = server
    # The argument list may include:
    # password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
    # or to auto-locate the domain controller/s
    # password server = *
    ; password server = <NT-Server-Name>
    # Use the realm option only with security = ads
    # Specifies the Active Directory realm the host is part of
    ; realm = MY_REALM
    # Backend to store user information in. New installations should
    # use either tdbsam or ldapsam. smbpasswd is available for backwards
    # compatibility. tdbsam requires no further configuration.
    ; passdb backend = tdbsam
    # Using the following line enables you to customise your configuration
    # on a per machine basis. The %m gets replaced with the netbios name
    # of the machine that is connecting.
    # Note: Consider carefully the location in the configuration file of
    # this line. The included file is read at that point.
    ; include = /usr/local/samba/lib/smb.conf.%m
    # Configure Samba to use multiple interfaces
    # If you have multiple network interfaces then you must list them
    # here. See the man page for details.
    interfaces = 192.168.1.109
    # Browser Control Options:
    # set local master to no if you don't want Samba to become a master
    # browser on your network. Otherwise the normal election rules apply
    ; local master = no
    # OS Level determines the precedence of this server in master browser
    # elections. The default value should be reasonable
    ; os level = 33
    # Domain Master specifies Samba to be the Domain Master Browser. This
    # allows Samba to collate browse lists between subnets. Don't use this
    # if you already have a Windows NT domain controller doing this job
    ; domain master = yes
    # Preferred Master causes Samba to force a local browser election on startup
    # and gives it a slightly higher chance of winning the election
    ; preferred master = yes
    # Enable this if you want Samba to be a domain logon server for
    # Windows95 workstations.
    ; domain logons = yes
    # if you enable domain logons then you may want a per-machine or
    # per user logon script
    # run a specific logon batch file per workstation (machine)
    ; logon script = %m.bat
    # run a specific logon batch file per username
    ; logon script = %U.bat
    # Where to store roving profiles (only for Win95 and WinNT)
    # %L substitutes for this servers netbios name, %U is username
    # You must uncomment the [Profiles] share below
    ; logon path = \\%L\Profiles\%U
    # Windows Internet Name Serving Support Section:
    # WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
    ; wins support = yes
    # WINS Server - Tells the NMBD components of Samba to be a WINS Client
    # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
    ; wins server = w.x.y.z
    # WINS Proxy - Tells Samba to answer name resolution queries on
    # behalf of a non WINS capable client, for this to work there must be
    # at least one WINS Server on the network. The default is NO.
    ; wins proxy = yes
    # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
    # via DNS nslookups. The default is NO.
    dns proxy = no
    # These scripts are used on a domain controller or stand-alone
    # machine to add or delete corresponding unix accounts
    ; add user script = /usr/sbin/useradd %u
    ; add group script = /usr/sbin/groupadd %g
    ; add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u
    ; delete user script = /usr/sbin/userdel %u
    ; delete user from group script = /usr/sbin/deluser %u %g
    ; delete group script = /usr/sbin/groupdel %g
    #============================ Share Definitions ==============================
    [homes]
    comment = Home Directories
    browseable = no
    writable = yes
    # Un-comment the following and create the netlogon directory for Domain Logons
    ; [netlogon]
    ; comment = Network Logon Service
    ; path = /usr/local/samba/lib/netlogon
    ; guest ok = yes
    ; writable = no
    ; share modes = no
    # Un-comment the following to provide a specific roving profile share
    # the default is to use the user's home directory
    ;[Profiles]
    ; path = /usr/local/samba/profiles
    ; browseable = no
    ; guest ok = yes
    # NOTE: If you have a BSD-style print system there is no need to
    # specifically define each individual printer
    ;[printers]
    ; comment = All Printers
    ; path = /var/spool/samba
    ; browseable = no
    ;# Set public = yes to allow user 'guest account' to print
    ; guest ok = no
    ; writable = no
    ; printable = yes
    [proraid]
    comment = ProRaid Share
    path = /proraid
    public = yes
    available = yes
    brosable = yes
    read only = no
    writable = yes
    # This one is useful for people to share files
    ;[tmp]
    ; comment = Temporary file space
    ; path = /tmp
    ; read only = no
    ; public = yes
    # A publicly accessible directory, but read only, except for people in
    # the "staff" group
    ;[public]
    ; comment = Public Stuff
    ; path = /home/samba
    ; public = yes
    ; writable = no
    ; printable = no
    ; write list = @staff
    # Other examples.
    # A private printer, usable only by fred. Spool data will be placed in fred's
    # home directory. Note that fred must have write access to the spool directory,
    # wherever it is.
    ;[fredsprn]
    ; comment = Fred's Printer
    ; valid users = fred
    ; path = /homes/fred
    ; printer = freds_printer
    ; public = no
    ; writable = no
    ; printable = yes
    # A private directory, usable only by fred. Note that fred requires write
    # access to the directory.
    ;[fredsdir]
    ; comment = Fred's Service
    ; path = /usr/somewhere/private
    ; valid users = fred
    ; public = no
    ; writable = yes
    ; printable = no
    # a service which has a different directory for each machine that connects
    # this allows you to tailor configurations to incoming machines. You could
    # also use the %U option to tailor it by user name.
    # The %m gets replaced with the machine name that is connecting.
    ;[pchome]
    ; comment = PC Directories
    ; path = /usr/pc/%m
    ; public = no
    ; writable = yes
    # A publicly accessible directory, read/write to all users. Note that all files
    # created in the directory by users will be owned by the default user, so
    # any user with access can delete any other user's files. Obviously this
    # directory must be writable by the default user. Another user could of course
    # be specified, in which case all files would be owned by that user instead.
    ;[public]
    ; path = /usr/somewhere/else/public
    ; public = yes
    ; only guest = yes
    ; writable = yes
    ; printable = no
    # The following two entries demonstrate how to share a directory so that two
    # users can place files there that will be owned by the specific users. In this
    # setup, the directory should be writable by both users and should have the
    # sticky bit set on it to prevent abuse. Obviously this could be extended to
    # as many users as required.
    ;[myshare]
    ; comment = Mary's and Fred's stuff
    ; path = /usr/somewhere/shared
    ; valid users = mary fred
    ; public = no
    ; writable = yes
    ; printable = no
    ; create mask = 0765

    Hi,
    My thought is to check the current IP of the server, as your smb.conf has the line interfaces = 192.168.1.109 which means samba will only listen on that interface for requests. If the IP of the server has changed, that would explain why samba isn't working.

  • [SOLVED] Aria2 stopped working

    Aria2 stopped working for me since around a week ago. This is what I'm getting now:
    $ aria2c --log=- http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    2010-01-28 20:14:59.488885 INFO - <<--- --- --- ---
    2010-01-28 20:14:59.488981 INFO - --- --- --- ---
    2010-01-28 20:14:59.488994 INFO - --- --- --- --->>
    2010-01-28 20:14:59.489005 INFO - aria2 1.8.1 i686-pc-linux-gnu
    2010-01-28 20:14:59.489019 INFO - Logging started.
    2010-01-28 20:14:59.590385 INFO - 142 certificate(s) were imported.
    2010-01-28 20:14:59.590488 DEBUG - 1 RequestGroup(s) added.
    2010-01-28 20:14:59.590534 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:14:59.590651 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:14:59.591935 INFO - CUID#6 - Resolving hostname arm.konnichi.com
    2010-01-28 20:14:59.592188 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:00.591901 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:02.591814 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:04.591790 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:05.591820 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:07.591647 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:09.591635 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:10.591817 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:11.591842 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:13.591817 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:14.591825 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:16.591649 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:18.591641 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:20.591640 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:21.591643 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:22.591819 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:23.591850 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:25.591877 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:26.591887 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:27.591972 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:29.591946 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:15:29.591998 DEBUG - ServerStat: set status ERROR for arm.konnichi.com (http)
    2010-01-28 20:15:29.592146 INFO - CUID#6 - Restarting the download. URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Exception: [AbstractCommand.cc:207] URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    -> [AbstractCommand.cc:184] Timeout.
    2010-01-28 20:15:29.592186 DEBUG - CUID#6 - Pooling request URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    2010-01-28 20:15:29.592294 DEBUG - Failed to delete socket event:No such file or directory
    2010-01-28 20:15:29.592358 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:15:29.592396 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:15:29.593511 INFO - CUID#6 - Resolving hostname arm.konnichi.com
    2010-01-28 20:15:29.593682 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:30.593880 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:31.593904 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:33.593651 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:35.593635 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:37.593643 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:39.593635 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:40.593892 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:42.593884 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:44.593817 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:46.593814 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:47.593819 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:49.593812 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:50.593816 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:52.593613 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:53.594073 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:55.593819 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:56.593849 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:15:58.593637 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    *** Download Progress Summary as of Thu Jan 28 20:16:00 2010 ***
    =============================================================================================================================================
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]
    FILE: http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:00.598143 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:16:00.598171 DEBUG - ServerStat: set status ERROR for arm.konnichi.com (http)
    2010-01-28 20:16:00.598218 INFO - CUID#6 - Restarting the download. URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Exception: [AbstractCommand.cc:207] URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    -> [AbstractCommand.cc:184] Timeout.
    2010-01-28 20:16:00.598251 DEBUG - CUID#6 - Pooling request URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    2010-01-28 20:16:00.598283 DEBUG - Failed to delete socket event:No such file or directory
    2010-01-28 20:16:00.598344 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:16:00.598380 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:16:00.599488 INFO - CUID#6 - Resolving hostname arm.konnichi.com
    2010-01-28 20:16:00.599665 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:01.599643 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:02.599816 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:03.599851 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:05.599816 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:07.599890 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:08.600094 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:10.599891 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:12.599891 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:14.599800 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:15.599986 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:17.599614 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:18.599896 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:20.599813 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:22.599810 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:24.599888 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:26.599791 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:27.600060 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:29.599890 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:30.600069 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:16:30.600128 DEBUG - ServerStat: set status ERROR for arm.konnichi.com (http)
    2010-01-28 20:16:30.600181 INFO - CUID#6 - Restarting the download. URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Exception: [AbstractCommand.cc:207] URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    -> [AbstractCommand.cc:184] Timeout.
    2010-01-28 20:16:30.600217 DEBUG - CUID#6 - Pooling request URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    2010-01-28 20:16:30.600253 DEBUG - Failed to delete socket event:No such file or directory
    2010-01-28 20:16:30.600316 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:16:30.600353 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:16:30.601510 INFO - CUID#6 - Resolving hostname arm.konnichi.com
    2010-01-28 20:16:30.601692 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:31.601892 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:33.601888 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:34.601896 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:36.601631 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:37.601647 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:39.601613 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:40.601886 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:41.601890 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:43.601809 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:44.601897 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:46.601814 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:47.601817 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:49.601812 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:51.601639 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:52.601814 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:54.601643 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:55.601817 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:57.601636 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:16:59.601816 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    *** Download Progress Summary as of Thu Jan 28 20:17:01 2010 ***
    =============================================================================================================================================
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]
    FILE: http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:01.601714 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:17:01.601742 DEBUG - ServerStat: set status ERROR for arm.konnichi.com (http)
    2010-01-28 20:17:01.601794 INFO - CUID#6 - Restarting the download. URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Exception: [AbstractCommand.cc:207] URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    -> [AbstractCommand.cc:184] Timeout.
    2010-01-28 20:17:01.601831 DEBUG - CUID#6 - Pooling request URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    2010-01-28 20:17:01.601866 DEBUG - Failed to delete socket event:No such file or directory
    2010-01-28 20:17:01.601934 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:17:01.601976 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:17:01.603168 INFO - CUID#6 - Resolving hostname arm.konnichi.com
    2010-01-28 20:17:01.603346 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:02.602614 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:03.602898 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:05.602639 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:07.602635 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:08.602707 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:09.602845 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:11.602817 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:13.602642 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:14.602817 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:16.602639 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:17.602815 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:19.602883 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:21.602909 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:23.602893 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:25.602877 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:26.602886 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:28.602877 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:30.602857 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    [#1 SIZE:0B/0B CN:1 SPD:0Bs]2010-01-28 20:17:31.602875 DEBUG - CUID#6 - socket: read:0, write:0, hup:0, err:0
    2010-01-28 20:17:31.602922 DEBUG - ServerStat: set status ERROR for arm.konnichi.com (http)
    2010-01-28 20:17:31.602976 INFO - CUID#6 - Restarting the download. URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Exception: [AbstractCommand.cc:207] URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    -> [AbstractCommand.cc:184] Timeout.
    2010-01-28 20:17:31.603014 DEBUG - ServerStat: set status ERROR for arm.konnichi.com (http)
    2010-01-28 20:17:31.603034 DEBUG - CUID#6 - Aborting download
    2010-01-28 20:17:31.603051 INFO - CUID#6 - 5 times attempted, but no success. Download aborted.
    2010-01-28 20:17:31.603067 ERROR - CUID#6 - Download aborted. URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Exception: [AbstractCommand.cc:184] Timeout.
    2010-01-28 20:17:31.603092 ERROR - CUID#6 - Download aborted. URI=http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Exception: [AbstractCommand.cc:184] Timeout.
    2010-01-28 20:17:31.603125 DEBUG - CUID#6 - Not trying next request. No reserved/pooled request is remaining and total length is still unknown.
    2010-01-28 20:17:31.603155 DEBUG - Failed to delete socket event:No such file or directory
    2010-01-28 20:17:31.603229 DEBUG - 1 RequestGroup(s) deleted.
    Download Results:
    gid|stat|avg speed |path/URI
    ===+====+===========+===========================================================
    1| ERR| n/a|http://arm.konnichi.com/extra/os/i686/aria2-1.6.2-1-i686.pkg.tar.gz
    Status Legend:
    (ERR):error occurred.
    aria2 will resume download if the transfer is restarted.
    If there are any errors, then see the log file. See '-l' option in help/man page for details.
    I am able to download that file through the browser. I downgraded to 1.6.2, and still got the same problem. I'm not really sure if this has anything to do with Arch; maybe some experienced eyes will catch something in my pacman.log:
    [2010-01-20 16:29] synchronizing package lists
    [2010-01-20 16:39] starting full system upgrade
    [2010-01-20 16:39] upgraded acct (6.3.2-2 -> 6.5.1-1)
    [2010-01-20 16:39] upgraded asciidoc (8.5.2-1 -> 8.5.3-1)
    [2010-01-20 16:39] upgraded dhclient (3.1.2p1-3 -> 4.1.0.p1-2)
    [2010-01-20 16:39] upgraded gtk-rezlooks-engine (0.6-8 -> 0.6-9)
    [2010-01-20 16:39] upgraded iproute2 (2.6.29-3 -> 2.6.31-1)
    [2010-01-20 16:39] upgraded lxpanel (0.5.3-1 -> 0.5.4.1-1)
    [2010-01-20 16:39] upgraded perl-libwww (5.833-3 -> 5.834-1)
    [2010-01-20 16:39] Warning
    [2010-01-20 16:39] Most of the modules in perl-xyne-arch have been rewritten for version 1.0. This
    [2010-01-20 16:39] has led to changes in several packages which provide frontends to these modules,
    [2010-01-20 16:39] most importantly powerpill, pkgd, rebase and reflector.
    [2010-01-20 16:39]
    [2010-01-20 16:39] Please check the help messages and man pages of these packages for option and
    [2010-01-20 16:39] configuration changes.
    [2010-01-20 16:39] upgraded perl-xyne-arch (1.0.40-1 -> 1.0.42-1)
    [2010-01-20 16:39] upgraded psmisc (22.8-1 -> 22.10-1)
    [2010-01-20 16:39] upgraded python-urwid (0.9.8.4-1 -> 0.9.9-1)
    [2010-01-20 16:39] upgraded rasqal (0.9.16-1 -> 0.9.17-1)
    [2010-01-20 16:39] upgraded redland (1.0.9-4 -> 1.0.10-1)
    [2010-01-20 16:39] upgraded smbclient (3.4.4-1.1 -> 3.4.5-1.1)
    [2010-01-20 16:39] upgraded samba (3.4.4-1.1 -> 3.4.5-1.1)
    [2010-01-20 16:39] upgraded smartmontools (5.38-2 -> 5.39-1)
    [2010-01-20 16:39] upgraded wicd (1.6.2.2-3 -> 1.7.0-1)
    [2010-01-20 16:39] upgraded zlib (1.2.3.4-3 -> 1.2.3.4-4)
    [2010-01-20 16:39] starting full system upgrade
    [2010-01-20 16:50] upgraded smplayer-svn (3220-1 -> 3409-1)
    [2010-01-20 16:55] upgraded stardict-edict (2.4.2-1 -> 2.4.2-2)
    [2010-01-21 08:31] upgraded wicd (1.7.0-1 -> 1.6.2.2-3)
    [2010-01-21 08:36] upgraded wicd (1.6.2.2-3 -> 1.7.0-1)
    [2010-01-21 08:41] upgraded wicd (1.7.0-1 -> 1.6.2.2-3)
    [2010-01-21 08:43] starting full system upgrade
    [2010-01-21 08:44] starting full system upgrade
    [2010-01-21 08:44] synchronizing package lists
    [2010-01-21 09:21] synchronizing package lists
    [2010-01-21 13:16] starting full system upgrade
    [2010-01-21 13:18] starting full system upgrade
    [2010-01-21 13:19] upgraded perl-xyne-common (1.0.6-1 -> 1.0.7-1)
    [2010-01-21 13:19] Warning
    [2010-01-21 13:19] Most of the modules in perl-xyne-arch have been rewritten for version 1.0. This
    [2010-01-21 13:19] has led to changes in several packages which provide frontends to these modules,
    [2010-01-21 13:19] most importantly powerpill, pkgd, rebase and reflector.
    [2010-01-21 13:19]
    [2010-01-21 13:19] Please check the help messages and man pages of these packages for option and
    [2010-01-21 13:19] configuration changes.
    [2010-01-21 13:19] upgraded perl-xyne-arch (1.0.42-1 -> 1.0.44-1)
    [2010-01-21 13:19] synchronizing package lists
    [2010-01-21 13:25] installed bauerbill (0.1.1-1)
    [2010-01-21 13:36] starting full system upgrade
    [2010-01-21 13:36] starting full system upgrade
    [2010-01-21 13:36] starting full system upgrade
    [2010-01-21 14:39] upgraded coreutils (8.2-1 -> 8.4-1)
    [2010-01-21 14:39] >>> texlive: updating the filename database...
    [2010-01-21 14:39] >>> texlive: updating the fontmap files with updmap...
    [2010-01-21 14:39] done.
    [2010-01-21 14:41] recreating all formats... done.
    [2010-01-21 14:41] (logs are under /usr/share/texmf-var/web2c/<engine>/<formatname>.log)
    [2010-01-21 14:41] upgraded texlive-core (2009.16665-1 -> 2009.16776-1)
    [2010-01-21 14:45] removed bauerbill (0.1.1-1)
    [2010-01-21 14:45] removed powerpill (17.0-3)
    [2010-01-21 14:45] removed aria2 (1.8.0-1)
    [2010-01-21 14:45] removed c-ares (1.7.0-2)
    [2010-01-21 14:46] installed c-ares (1.7.0-2)
    [2010-01-21 14:46] installed aria2 (1.8.0-1)
    [2010-01-21 14:46] installed powerpill (17.0-3)
    [2010-01-21 14:47] installed bauerbill (0.1.1-1)
    [2010-01-21 14:47] synchronizing package lists
    [2010-01-21 14:48] starting full system upgrade
    [2010-01-21 14:51] starting full system upgrade
    [2010-01-21 16:28] removed bauerbill (0.1.1-1)
    [2010-01-21 16:28] removed powerpill (17.0-3)
    [2010-01-21 16:28] removed aria2 (1.8.0-1)
    [2010-01-21 16:28] removed c-ares (1.7.0-2)
    [2010-01-21 16:30] installed c-ares (1.7.0-2)
    [2010-01-21 16:30] installed aria2 (1.8.0-1)
    [2010-01-21 16:30] installed powerpill (17.0-3)
    [2010-01-21 18:24] synchronizing package lists
    [2010-01-21 18:25] starting full system upgrade
    [2010-01-21 19:25] removed firefox (3.5.7-1)
    [2010-01-21 19:26] installed firefox-pgo (3.5.7-1)
    [2010-01-21 19:58] =================================
    [2010-01-21 19:58] Please change the owner of the /opt/android-sdk folder and its subdirectories
    [2010-01-21 19:58] This is needed to install some of the files that will be downloaded by the android tool
    [2010-01-21 19:58] ie: chown -R myuser:users /opt/android-sdk
    [2010-01-21 19:58] =================================
    [2010-01-21 19:58] installed android-sdk (r04-3)
    [2010-01-22 07:36] synchronizing package lists
    [2010-01-22 07:47] removed reflector (5.0-2)
    [2010-01-22 07:47] removed rebase (4.0-1)
    [2010-01-22 07:47] warning: /etc/powerpill.conf saved as /etc/powerpill.conf.pacsave
    [2010-01-22 07:47] removed powerpill (17.0-3)
    [2010-01-22 07:47] removed perl-xyne-arch (1.0.44-1)
    [2010-01-22 07:47] removed perl-crypt-ssleay (0.57-2)
    [2010-01-22 07:47] removed aria2 (1.8.0-1)
    [2010-01-22 07:47] removed perl-xyne-common (1.0.7-1)
    [2010-01-22 07:47] removed c-ares (1.7.0-2)
    [2010-01-22 07:50] installed c-ares (1.7.0-2)
    [2010-01-22 07:50] installed aria2 (1.8.0-1)
    [2010-01-22 07:50] installed perl-xyne-common (1.0.7-1)
    [2010-01-22 07:50] installed perl-xyne-arch (1.0.44-1)
    [2010-01-22 07:50] installed powerpill (17.0-3)
    [2010-01-22 07:53] removed powerpill (17.0-3)
    [2010-01-22 07:53] removed perl-xyne-arch (1.0.44-1)
    [2010-01-22 07:53] removed perl-xyne-common (1.0.7-1)
    [2010-01-22 07:53] removed aria2 (1.8.0-1)
    [2010-01-22 07:53] removed c-ares (1.7.0-2)
    [2010-01-22 07:53] installed c-ares (1.7.0-2)
    [2010-01-22 07:53] installed aria2 (1.8.0-1)
    [2010-01-22 07:53] installed perl-xyne-common (1.0.7-1)
    [2010-01-22 07:53] installed perl-xyne-arch (1.0.44-1)
    [2010-01-22 07:53] installed powerpill (17.0-3)
    [2010-01-22 08:21] installed perl-crypt-ssleay (0.57-2)
    [2010-01-22 08:21] installed reflector (5.0-2)
    [2010-01-22 09:25] installed vidalia (0.1.15-1)
    [2010-01-24 07:30] synchronizing package lists
    [2010-01-24 07:35] starting full system upgrade
    [2010-01-24 12:10] starting full system upgrade
    [2010-01-24 12:32] starting full system upgrade
    [2010-01-24 12:32] starting full system upgrade
    [2010-01-24 12:32] starting full system upgrade
    [2010-01-24 12:46] upgraded apvlv (0.0.9-1 -> 0.0.9.2-1)
    [2010-01-24 12:46] upgraded dosfstools (3.0.6-1 -> 3.0.8-1)
    [2010-01-24 12:46] upgraded git (1.6.6-1 -> 1.6.6.1-1)
    [2010-01-24 12:46] upgraded kernel26-firmware (2.6.32.3-1 -> 2.6.32.4-1)
    [2010-01-24 12:46] >>> Updating module dependencies. Please wait ...
    [2010-01-24 12:46] >>> MKINITCPIO SETUP
    [2010-01-24 12:46] >>> ----------------
    [2010-01-24 12:46] >>> If you use LVM2, Encrypted root or software RAID,
    [2010-01-24 12:46] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2010-01-24 12:46] >>> More information about mkinitcpio setup can be found here:
    [2010-01-24 12:46] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2010-01-24 12:46]
    [2010-01-24 12:46] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2010-01-24 12:46] ==> Building image "default"
    [2010-01-24 12:46] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2010-01-24 12:46] :: Begin build
    [2010-01-24 12:46] :: Parsing hook [base]
    [2010-01-24 12:46] :: Parsing hook [udev]
    [2010-01-24 12:46] :: Parsing hook [autodetect]
    [2010-01-24 12:46] :: Parsing hook [sata]
    [2010-01-24 12:46] :: Parsing hook [keymap]
    [2010-01-24 12:46] :: Parsing hook [uresume]
    [2010-01-24 12:46] :: Parsing hook [filesystems]
    [2010-01-24 12:46] :: Generating module dependencies
    [2010-01-24 12:46] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2010-01-24 12:46] ==> SUCCESS
    [2010-01-24 12:46] ==> Building image "fallback"
    [2010-01-24 12:46] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2010-01-24 12:46] :: Begin build
    [2010-01-24 12:46] :: Parsing hook [base]
    [2010-01-24 12:47] :: Parsing hook [udev]
    [2010-01-24 12:47] :: Parsing hook [sata]
    [2010-01-24 12:47] :: Parsing hook [keymap]
    [2010-01-24 12:47] :: Parsing hook [uresume]
    [2010-01-24 12:47] :: Parsing hook [filesystems]
    [2010-01-24 12:47] :: Generating module dependencies
    [2010-01-24 12:47] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2010-01-24 12:47] ==> SUCCESS
    [2010-01-24 12:47] upgraded kernel26 (2.6.32.3-1 -> 2.6.32.4-1)
    [2010-01-24 12:47] upgraded kernel26-headers (2.6.32.3-1 -> 2.6.32.4-1)
    [2010-01-24 12:47] upgraded mhwaveedit (1.4.16-1 -> 1.4.17-1)
    [2010-01-24 12:47] upgraded perl-gnome2-wnck (0.15-2.1 -> 0.16-1)
    [2010-01-24 12:47] upgraded perl-sub-uplevel (0.21_01-1 -> 0.22-1)
    [2010-01-24 12:47] upgraded perl-test-exception (0.27-1 -> 0.29-1)
    [2010-01-24 12:47] upgraded perl-xyne-common (1.0.7-1 -> 1.0.8-1)
    [2010-01-24 12:47] upgraded perl-xyne-arch (1.0.44-1 -> 1.0.49-1)
    [2010-01-24 12:47] upgraded roxterm (1.17.1-1 -> 1.17.1-2)
    [2010-01-24 12:47] warning: directory permissions differ on var/lib/tor/
    filesystem: 700 package: 755
    [2010-01-24 12:47] upgraded tor (0.2.1.21-1 -> 0.2.1.22-1)
    [2010-01-24 12:47] upgraded tzdata (2009t-1 -> 2010a-1)
    [2010-01-24 12:47] upgraded whois (4.7.36-1 -> 5.0.0-1)
    [2010-01-24 12:47] upgraded wine (1.1.36-1 -> 1.1.37-1)
    [2010-01-25 08:40] synchronizing package lists
    [2010-01-25 08:41] starting full system upgrade
    [2010-01-25 09:13] ATTENTION DB PACKAGE:
    [2010-01-25 09:13] Please consider to run db_upgrade on Berkeley DB databases with a major db version number update.
    [2010-01-25 09:13] upgraded db (4.8.24-1 -> 4.8.26-1)
    [2010-01-25 09:13] upgraded dirmngr (1.0.2-2 -> 1.0.3-1)
    [2010-01-25 09:13] upgraded gzip (1.3.13-1 -> 1.4-1)
    [2010-01-25 09:13] upgraded kernel26-firmware (2.6.32.4-1 -> 2.6.32.5-1)
    [2010-01-25 09:13] >>> Updating module dependencies. Please wait ...
    [2010-01-25 09:13] >>> MKINITCPIO SETUP
    [2010-01-25 09:13] >>> ----------------
    [2010-01-25 09:13] >>> If you use LVM2, Encrypted root or software RAID,
    [2010-01-25 09:13] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2010-01-25 09:13] >>> More information about mkinitcpio setup can be found here:
    [2010-01-25 09:13] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2010-01-25 09:13]
    [2010-01-25 09:13] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2010-01-25 09:13] ==> Building image "default"
    [2010-01-25 09:13] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2010-01-25 09:13] :: Begin build
    [2010-01-25 09:13] :: Parsing hook [base]
    [2010-01-25 09:13] :: Parsing hook [udev]
    [2010-01-25 09:13] :: Parsing hook [autodetect]
    [2010-01-25 09:13] :: Parsing hook [sata]
    [2010-01-25 09:13] :: Parsing hook [keymap]
    [2010-01-25 09:13] :: Parsing hook [uresume]
    [2010-01-25 09:13] :: Parsing hook [filesystems]
    [2010-01-25 09:14] :: Generating module dependencies
    [2010-01-25 09:14] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2010-01-25 09:14] ==> SUCCESS
    [2010-01-25 09:14] ==> Building image "fallback"
    [2010-01-25 09:14] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2010-01-25 09:14] :: Begin build
    [2010-01-25 09:14] :: Parsing hook [base]
    [2010-01-25 09:14] :: Parsing hook [udev]
    [2010-01-25 09:14] :: Parsing hook [sata]
    [2010-01-25 09:14] :: Parsing hook [keymap]
    [2010-01-25 09:14] :: Parsing hook [uresume]
    [2010-01-25 09:14] :: Parsing hook [filesystems]
    [2010-01-25 09:14] :: Generating module dependencies
    [2010-01-25 09:14] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2010-01-25 09:14] ==> SUCCESS
    [2010-01-25 09:14] upgraded kernel26 (2.6.32.4-1 -> 2.6.32.5-1)
    [2010-01-25 09:14] upgraded kernel26-headers (2.6.32.4-1 -> 2.6.32.5-1)
    [2010-01-25 09:14] upgraded pciutils (3.1.4-1 -> 3.1.5-1)
    [2010-01-25 09:14] upgraded powerpill (17.0-3 -> 17.0-4)
    [2010-01-25 09:14] upgraded util-linux-ng (2.16.2-1 -> 2.17-1)
    [2010-01-25 09:14] upgraded xz-utils (4.999.9beta-1 -> 4.999.9beta-2)
    [2010-01-27 08:02] synchronizing package lists
    [2010-01-27 08:03] starting full system upgrade
    [2010-01-27 08:16] warning: /etc/abs.conf installed as /etc/abs.conf.pacnew
    [2010-01-27 08:16] upgraded abs (2.3.3-1 -> 2.3.4.1-1)
    [2010-01-27 08:16] upgraded aria2 (1.8.0-1 -> 1.8.1-1)
    [2010-01-27 08:16] upgraded bluez (4.59-1 -> 4.60-1)
    [2010-01-27 08:16] upgraded python (2.6.4-1 -> 2.6.4-2)
    [2010-01-27 08:16] upgraded bzr (2.0.1-1 -> 2.0.4-1)
    [2010-01-27 08:16] warning: /etc/logrotate.d/crond installed as /etc/logrotate.d/crond.pacnew
    [2010-01-27 08:16] upgraded dcron (3.2-4 -> 4.4-1)
    [2010-01-27 08:16] upgraded file (5.03-2 -> 5.04-1)
    [2010-01-27 08:16] upgraded gparted (0.5.0-1 -> 0.5.1-1)
    [2010-01-27 08:16] upgraded mkinitcpio (0.5.28-1 -> 0.5.30-1)
    [2010-01-27 08:16] upgraded moc (2.4.4-3 -> 2.5.0_alpha4-1)
    [2010-01-27 08:16] upgraded perl-xyne-arch (1.0.49-1 -> 1.0.52-1)
    [2010-01-27 08:16] upgraded ruby (1.9.1_p376-1 -> 1.9.1_p378-1)
    [2010-01-27 08:17] upgraded telepathy-glib (0.9.2-1 -> 0.10.0-1)
    [2010-01-27 08:54] starting full system upgrade
    [2010-01-27 09:31] upgraded arora-git (20090531-1 -> 20100127-1)
    [2010-01-28 16:50] synchronizing package lists
    [2010-01-28 16:58] starting full system upgrade
    [2010-01-28 16:59] starting full system upgrade
    [2010-01-28 18:25] starting full system upgrade
    [2010-01-28 19:21] upgraded kernel26-firmware (2.6.32.5-1 -> 2.6.32.6-1)
    [2010-01-28 19:21] >>> Updating module dependencies. Please wait ...
    [2010-01-28 19:21] >>> MKINITCPIO SETUP
    [2010-01-28 19:21] >>> ----------------
    [2010-01-28 19:21] >>> If you use LVM2, Encrypted root or software RAID,
    [2010-01-28 19:21] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2010-01-28 19:21] >>> More information about mkinitcpio setup can be found here:
    [2010-01-28 19:21] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2010-01-28 19:21]
    [2010-01-28 19:21] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2010-01-28 19:21] ==> Building image "default"
    [2010-01-28 19:21] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2010-01-28 19:21] :: Begin build
    [2010-01-28 19:21] :: Parsing hook [base]
    [2010-01-28 19:21] :: Parsing hook [udev]
    [2010-01-28 19:21] :: Parsing hook [autodetect]
    [2010-01-28 19:21] :: Parsing hook [sata]
    [2010-01-28 19:21] :: Parsing hook [keymap]
    [2010-01-28 19:21] :: Parsing hook [uresume]
    [2010-01-28 19:21] :: Parsing hook [filesystems]
    [2010-01-28 19:21] :: Generating module dependencies
    [2010-01-28 19:21] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2010-01-28 19:21] ==> SUCCESS
    [2010-01-28 19:21] ==> Building image "fallback"
    [2010-01-28 19:21] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2010-01-28 19:21] :: Begin build
    [2010-01-28 19:21] :: Parsing hook [base]
    [2010-01-28 19:21] :: Parsing hook [udev]
    [2010-01-28 19:21] :: Parsing hook [sata]
    [2010-01-28 19:21] :: Parsing hook [keymap]
    [2010-01-28 19:21] :: Parsing hook [uresume]
    [2010-01-28 19:21] :: Parsing hook [filesystems]
    [2010-01-28 19:21] :: Generating module dependencies
    [2010-01-28 19:21] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2010-01-28 19:21] ==> SUCCESS
    [2010-01-28 19:21] upgraded kernel26 (2.6.32.5-1 -> 2.6.32.6-1)
    [2010-01-28 19:21] upgraded kernel26-headers (2.6.32.5-1 -> 2.6.32.6-1)
    [2010-01-28 19:21] upgraded zlib (1.2.3.4-4 -> 1.2.3.7-1)
    [2010-01-28 19:21] upgraded libxml2 (2.7.6-1 -> 2.7.6-2)
    [2010-01-28 19:21] upgraded lsof (4.82-1 -> 4.83-1)
    [2010-01-28 19:51] starting full system upgrade
    [2010-01-28 19:53] upgraded aria2 (1.8.1-1 -> 1.6.3-1)
    [2010-01-28 19:58] upgraded autoconf-compat (2.13-5 -> 2.13-6)
    [2010-01-28 20:03] upgraded aria2 (1.6.3-1 -> 1.6.2-1)
    Last edited by allbluedream (2010-01-31 02:08:29)

    Asked on the Aria2 forum: pending the "--async-dns=false" option and it worked.

  • Itunes wont open and gives me a message saying "Itunes has stopped working".  What can I do to fix this?

    I use windows vista and I have upgraded my itunes.  Now when I open it, it gives me a message saying "itunes has stopped working"  and then gives me a message saying it will notify me for a solution.  What can I do to fix this so it can open and not give me any more problems???

    First you can try;
    Try restarting PC and run itunes again!
    If error again than perform clean instal of itunes (uninstal first and than instal again)!

  • Each time I try to synch photos from my Windows 7 PC to my iPad2, iTunes stops working, and the error report says Problem Event Name:     APPCRASH   Application Name:     iTunes.exe   Application Version:     10.3.1.55   Application Timestamp:     4deec35

    Each time I try to synch photos from my Windows7 PC to my iPad2, iTunes stops working and the error message is:
    Problem Event Name:                          APPCRASH
      Application Name:                             iTunes.exe
      Application Version:                           10.3.1.55
      Application Timestamp:                    4deec351
      Fault Module Name:                          ntdll.dll
      Fault Module Version:                        6.1.7601.17514
      Fault Module Timestamp:                 4ce7ba58
      Exception Code:                                  c0000005
      Exception Offset:                                0002e3fb
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             1033
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    I reloaded iTunes 10 (64 bit) successfully, but the problem remains the same.
    Any suggestions?

    I looked in the folder from which I want to synch photos, but there is no such thing as an "ipod photo cache" in that folder, or sub-folders, as suggested in the link which you were nice enough to provide.
    I have also tried removing photos from my iPad2 Photos App, and "iTunes has stopped working" shows up  again as soon as I click on the "Synch photos from" button.

  • Since I installed a printer software Satellite L300 has stopped working

    Hello there!
    I'm new here so not really sure if I'm posting in the right place. Mods, please feel free to move to the relevant section, thank you.
    OK I have a Toshiba Satellite L300 Laptop and ever since I installed a printer software on Wednesday night, my laptop has suddenly stopped working!
    Ever since Thursday night, I have been trying to get it working but I'm faced with this message:
    when i load it up it goes to Windows error recovery:
    'windows has failed to start.a recent hardware or software change might be the cause
    if windows files have been damaged or configured incorrectly,startup repair can help diagnose and fix the problem.if power was interrupted during startup,choose start windows normally'
    then it gives two options: Launch startup repair (recomended)
    start windows normally
    ==========
    -so i click launch startup repair (reccomended)
    -then a scren loads up called 'system recovery options'.. it says: select an operating system to repair and click next.only windows vista operating systems are listed and can be repaired
    if you do not see your operating system listed, click load drivers to load drivers for your hard disks'.....
    but nothing comes up so i click load drivers and it just gives me loads of random folders...and i haven't a clue which ones to load
    ========
    5 years ago Report Abuse
    Additional Details
    so i just click 'next'
    ========
    then i have 5 options:
    -startup repair
    -system restore
    -windows complete pc restore
    -windows memory diagnostic tool
    -command prompt
    ==========
    startup repair says it cannot manually fix any problems
    -system restore just says your computer is in a limited state and performing this action cannot be changed...but there is no option to do so
    -windows comple pc restore says i need to insert a backup disk which I dont have
    windows memory diagnostics tool says that windows is preventing this
    ============
    but on the system resotre it tells me to type something like: rstrui.exe /OFFLINE:C:\Windows
    but i don't know where...i typed it in the command prompt but don't understand how to use it
    =========
    i also tried to click start windows normally but it won't work

    If the problem is installed software, start notebook in safe mode and try to start system restore from there.
    Please let me know which options are available. Can you roll back OS few days back?
    Are some restore points listed there?

  • Mozalloc.dll A firefox plug in container has stopped working. I can't get firefox to work for more than 2 mins. before crashing. How do I make this stop?

    AdapterDeviceID: 0x9712
    AdapterDriverVersion: 8.861.1.2000
    AdapterSubsysID: 164c103c
    AdapterVendorID: 0x1002
    Add-ons: %7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:33.1.1
    AvailablePageFile: 13967405056
    AvailablePhysicalMemory: 6222434304
    AvailableVirtualMemory: 3783245824
    BIOS_Manufacturer: Hewlett-Packard
    BlockedDllList:
    BreakpadReserveAddress: 46661632
    BreakpadReserveSize: 41943040
    BuildID: 20141113143407
    CrashTime: 1417153956
    EMCheckCompatibility: true
    EventLoopNestingLevel: 1
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1416895140
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x9712, AdapterSubsysID: 164c103c, AdapterDriverVersion: 8.861.1.2000
    D2D? D2D+ DWrite? DWrite+ D3D11 Layers? D3D11 Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 175
    StartupTime: 1417153798
    SystemMemoryUsePercentage: 25
    Theme: classic/1.0
    Throttleable: 1
    TotalPageFile: 16630353920
    TotalPhysicalMemory: 8316153856
    TotalVirtualMemory: 4294836224
    URL: https://support.mozilla.org/en-US/questions/new/desktop/fix-problems/form?search=mozalloc.dll&step=aaq-question
    Vendor: Mozilla
    Version: 33.1.1
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    useragent_locale: en-US
    This report also contains technical information about the state of the application when it crashed.
    AND:
    A plugin container for firefox has stopped working.
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: plugin-container.exe
    Application Version: 33.1.1.5430
    Application Timestamp: 54656826
    Fault Module Name: mozalloc.dll
    Fault Module Version: 33.1.1.5430
    Fault Module Timestamp: 54654321
    Exception Code: 80000003
    Exception Offset: 00001425
    OS Version: 6.1.7600.2.0.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

    Try creating a new Profile by following the steps from [[Managing Profiles]] [[Troubleshooting extensions and themes]] and also [[The Adobe Flash plugin has crashed]]

  • HT1689 I can reach the iTunes Store from my iPod Touch, but it will not open on my PC running Windows 7.  Message shows that iTunes has stopped working.  This happens every time.  I have updated iTunes Software.  Will not solve the problem.  What is wrong

    I have uninstalled iTunes several times and reinstalled it on my PC running Window 7 with all updated loaded.  When I click on the iTunes Store Box, Nothing happens except for a message that reads:
              iTunes has stopped working.
    The following items give me a choice, but no answer comes up.  The computer will shut down the website.
              "Check online for a solution and close the program"
              "Close the program."
    There is an item below the box that is selectable for View problem details.  When clicked a long list of items show up.  I have listed some of the problems as written, but I do not understand them.  I know the iTunes Store has been available on earlier versions of of iTunes but is not on this version.  How can we go back and download an earlier version of iTunes?
         Here are some of the Problem Details:
         "Problem signature:  APPCRASH
         Application Name:     iTunes.exe
         Application Version:  11.0.1.12
         Application Timestamp:  50c8fc7e"

    I had this exact same problem.  I found this fix and it worked for me. 
    Step 1:
    Browse to C:\Program Files (x86)\Common Files\Apple\Apple Application Support and copy the filen named QTMovieWin.dll. 
    Step 2:
    Browse and past that file into C:\Program Files (x86)\iTunes.
    Hope this helps you.  I wish I could remember where I saw this originally so I could thank them.
    Good Luck.
    Anthony

  • Can't get itunes.  I get the following message when I click on either the shortcut or the program.  It says ITunes has stopped working and I can either check on line for a solution and close the program or just close the program.

    When I click on the itunes shortcut or the program  I get the following message:
    ITunes has stopped working.  My two options are:  Windows can check on line for a solution to the problem or close the program. 
    It seems that my entire library is not there.  If I sync my ipod will it add it back into my library on the computer? 
    I've even tried installing again and nothing works.  Tried the "repair" and it says that ITunes is loaded but I stil get the above error when I try to open the program.
    Thanks

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • Extensions like Ghostery, WOT or AdBlock stop working after two or three times. Restarting the webpage in a new tab the extensions will work again for several times and then stop again. Has anybody an explanation or a workaround for this bug in Safari 5?

    Extensions like Ghostery, WOT or AdBlock stop working after two or three times. Restarting the webpage in a new tab the extensions will work again for several times and then stop again. Has anybody an explanation or a workaround for this bug in Safari 5?

    Remove the extensions, redownload Safari, reload the extensions.
    http://www.apple.com/safari/download/
    And if you really want a better experience, use Firefox, tons more choices and possibilities there.
    Firefox's "NoScript" will block the Trojan going around on websites. Best web security you can get.
    https://addons.mozilla.org/en-US/firefox/addon/noscript/
    Ghostery, Ad Block Plus and thousands of add-ons more have originated on Firefox.

  • ITunes 10.3.1 has stopped working in Windows 7 64bit

    I just upgraded to Windows 7 64 bit and I downloaded iTunes 10.3.1 for Windows 7 64 bit.  My Quicktime player is working fine but everytime i tried to open iTunes, it gives me an error message that says iTunes has stopped working.  I need help trying to fix this, I already tried uninstalling, re-installing, and mostly every suggestion in the Apple support forum and it still does not work. 
    This is the information I have on the Problem Details:
    Problem Event Name: BEX
    Application Name: iTunes.exe
    Application Version: 10.3.1.55
    Application Timestamp: 4deec351
    Fault Module Name: StackHash_0a9e
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception Offset: 00000000
    Exception Code: c0000005
    Exception Data: 00000008
    OS Version: 6.1.7600.2.0.0.256.48
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

    Try copying the QTMovieWin.dll in the  c:\program files (x86)\common files\apple\apple application support folder to the c:\program files (x86)\iTunes folder. I had same problem and it's fixed this bug.

  • ITunes 10.6 and Windows 7 - iTunes stops working!!!

    Installed iTunes 10.6 and now I get the iTunes has stopped working message when I attempt to add folders or sync my devices.  I have uninstalled and re-installed to no avail.  I have tried safe mode but it still will not sync.  This only started after the update to 10.6.  Everything was fine until then.  I went to the Apple store and they were NO help at all, referring me to the iTunes support page on the internet.  DUH!!  Did that already!  Please, if anyone has solved this issue, tell me how.  I tried installing the old version of iTunes, but then it wouldn't open because the library was created by a newer version...so frustrating!    Please help!

    Mac prints. PC does not. Bonjour Printer Wizard found the printer, so there's some communication between the two (although the printer never came on, but I assume the AX knows what it’s plugged into).
    One odd thing is that, after installing the printer driver (downloaded from Brother), Bonjour Printer Wizard listed Brother as a printer manufacturer three times, only one of which shows the HL-2040.
    The las time I tried printing from Windows the printer turned on, but did not print.

Maybe you are looking for

  • How do I open a protected CCT file and convert it to mp3?

    In Windows XP I am using a trial version of Adobe Director to try to extract .cct music files from the free game Quantum Legacy and eventually convert them to mp3s, but the files are "protected and cannot be opened" I read this link and I made the .e

  • Web gallery error help

    Hello all: I have a friend running PSCS3. on a macbook pro laptop. When he goes to builkd a web gallery and chooses the images, he creates a folder on the desktop and names it (not the same name as the source folder). When h clicks ok he gets an erro

  • Seeking Mechatronics Engineering Intern, Santa Clara, CA

    Mechatronics Engineering Intern   Email resumes to [email protected] LuxVue Technology is a start up company located in Santa Clara, CA, which opened in September 2011. We seek an intern who is actively enrolled as a full-time student pursuing an Under

  • 404 error;Cannot access servlet resource

    When I package my servlet class and html page into a war and deploy it in Sun Application server, it deploys alright but the servlet functionality in the deployed war does not work. I am given an error message. 404.......... and then it displays the

  • Reg: Userid and password

    Dear all Recently i did certification on SAP-SD. how can I get the password/userid to login into sap service marketplace ? Could u please help me! Regards Raj