[SOLVED]wlanwep encryption is failing after system update(pacman -Syu)

After a system update with "pacman -Syu" my wlan encryption does not work anymore.
If I switch off encryption on my access point, I can communicate without any problems.
I have currently two wlans active, one with encryption, one without. I use the following iwconfig settings
iwconfig wlan0 essid my_open_wlan
iwconfig wlan0 essid my_wep_wlan key s:my_wep_password
In the first case I get the connection, in the second I cannot transmit over the network(Destination Host Unreachable).
lspci:
07:00.0 Network controller: Atheros Communications Inc. AR9287 Wireless Network Adapter (PCI-Express) (rev 01)
iwconfig:
wlan0 IEEE 802.11bgn ESSID:"wlan_2012"
Mode:Managed Frequency:2.437 GHz Access Point: 00:04:0E:57:4E:27
Bit Rate=1 Mb/s Tx-Power=13 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:off
Link Quality=39/70 Signal level=-71 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:44 Invalid misc:43 Missed beacon:0
ip addr:
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether ec:55:f9:1d:bf:41 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.11/24 brd 192.168.1.255 scope global wlan0
inet6 fe80::ee55:f9ff:fe1d:bf41/64 scope link
valid_lft forever preferred_lft forever
This is the output for the open wlan. If I try to connect to the encrypted wlan with "iwconfig wlan0 essid "my_encr_wlan" key s:my_wep_password", the iwconfig command gives me:
wlan0 IEEE 802.11bgn ESSID:"wlan_2007"
Mode:Managed Frequency:2.452 GHz Access Point: D8:5D:4C:FA:24:0D
Bit Rate=5.5 Mb/s Tx-Power=13 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:off
Link Quality=33/70 Signal level=-77 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:2 Invalid misc:1 Missed beacon:0
I have tried wpa_supplicant as well with the same result.
Can anybody give me hint?
Regards
Helmut
Last edited by helmut (2012-03-05 16:31:25)

Wep and ath9k has been buggy for me for a long time now - sometimes it works, sometimes it doesn't. Never got around it, adding "options ath9k nohwcrypt=1" into /etc/modprobe.d/ath9k.conf seemed to work for some time. You could give it a try. The network I have problems with is at the university, they use wep + vpn to connect. I can connect fine (like in your last iwconfig), but dhcpd times out.
If you have control over the network, you could just switch to wpa - safer anyway. Or search the forum for "atheros wep", it is a somewhat common problem I think.
P.S.: please use code tags when posting console output.
Last edited by hokasch (2012-02-18 14:48:24)

Similar Messages

  • [SOLVED] tp_smapi fails after system update (to 2.6.39)

    I am currently running Arch Linux on my ThinkPad X41.
    I am having troubles trying to get tp_smapi work on my system after the full system update that I did yesterday. I jumped from (12.2010) 2.6.36 to kernel 2.6.39. Since yesterday, tp_smapi was working perfectly, but after the update, it seems that the new kernel cannot recognize the tp_smapi module. I tried to remove and insert it again with modprobe tp_smapi, but I am getting: "FATAL: Module tp_smapi not found" every time.
    As I have build tp_smapi from AUR, I removed it with pacman -Rd tp_smapi and installed my package again. Even removed hdapsd and reinstalled it again after tp_smapi and I am getting the same - the module could not be found.
    I saw that there is a slightly newer tp_smapi in AUR, but currently I am not able to build the package, as I am getting some build() errors like: "gcc: error -pg and -fomit-frame-pointer are incompatible."
    This PKGBUILD seems a patch for 2.6.37 kernel and probably could not build directly under the new kernel. Anyway, I am still not able to bring the good old tp_smapi to working condition.
    Anyone with a working solution about this?
    edit: I have posted this in another thread, but hope this should be useful in a separate topic.
    Last edited by dir2cas (2011-07-14 08:35:18)

    Hey, SUCCESS out here...
    @whompus, thanks so much for the precious advices and clues.
    First, I looked into this thread (very useful as well): https://bbs.archlinux.org/viewtopic.php?id=80138
    Following it, I found out a new gcc CFLAG argument, primary used in newer gcc versions (after gcc v4.2)
    -march=native
    According to the information, given it should automatically detects the features your CPU supports and sets the options appropriately.
    Setting my /etc/makepkg.conf accordingly, and adding some other useful options, my tp_smapi package build succeded.
    My new /etc/makepkg.conf
    [dir2cas@X41 ~]> cat /etc/makepkg.conf
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/curl
    # ARCHITECTURE, COMPILE FLAGS
    #-- Exclusive: will only run on i686
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    # Default i686 architecture flags
    # CARCH="i686"
    # CHOST="i686-pc-linux-gnu"
    # CFLAGS="-march=i686 -mtune=generic -O2 -pipe"
    # CXXFLAGS="${CFLAGS}"
    # Athlon XP/Thunderbird XP/Duron Palomino/Duron architecture flags
    # CARCH="i686"
    # CHOST="i686-pc-linux-gnu"
    # CFLAGS="-march=athlon-xp -O2 -pipe -fomit-frame-pointer"
    # CXXFLAGS="${CFLAGS}"
    # Pentium M Dothan/Celeron M architecture flags
    CARCH="i686"
    CHOST="i686-pc-linux-gnu"
    #CFLAGS="-march=pentium-m -O2 -pipe -msse2 -fomit-frame-pointer"
    CFLAGS="-march=native -O2 -pipe -msse2 -mtune=native"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
    #-- Make Flags: change this for DistCC/SMP systems
    #MAKEFLAGS="-j2"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(fakeroot !distcc color !ccache)
    # A negated environment option will do the opposite of the comments below.
    #-- fakeroot: Allow building packages as a non-root user
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    BUILDENV=(fakeroot !distcc color !ccache)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries in STRIP_DIRS
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    OPTIONS=(strip docs libtool emptydirs zipman purge)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Directories to be searched for the strip option (if strip is specified)
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.gz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    tp_smapi package build
    [dir2cas@X41 abs]> tar xzvf tp_smapi.tar.gz
    tp_smapi/
    tp_smapi/fix_hdaps_orientation.patch
    tp_smapi/PKGBUILD
    tp_smapi/tp_smapi.install
    tp_smapi/fix_for_2.6.37.patch
    tp_smapi/tp_smapi.patch
    [dir2cas@X41 abs]>
    [dir2cas@X41 abs]>
    [dir2cas@X41 abs]>
    [dir2cas@X41 abs]> cd tp_smapi/
    [dir2cas@X41 tp_smapi]> ll
    total 32K
    drwxr-xr-x 2 dir2cas users 40 Apr 10 14:34 ./
    drwxr-xr-x 3 dir2cas users 4.0K Jul 14 00:52 ../
    -rw-r--r-- 1 dir2cas users 2.0K Apr 10 14:16 PKGBUILD
    -rw-r--r-- 1 dir2cas users 1.1K Jan 7 2011 fix_for_2.6.37.patch
    -rw-r--r-- 1 dir2cas users 535 Apr 10 14:16 fix_hdaps_orientation.patch
    -rw-r--r-- 1 dir2cas users 124 Apr 10 14:17 tp_smapi.install
    -rw-r--r-- 1 dir2cas users 678 Jan 1 1970 tp_smapi.patch
    [dir2cas@X41 tp_smapi]>
    [dir2cas@X41 tp_smapi]>
    [dir2cas@X41 tp_smapi]>
    [dir2cas@X41 tp_smapi]> makepkg -s
    ==> Making package: tp_smapi 0.40-5 (Thu Jul 14 00:52:29 EEST 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading tp_smapi-0.40.tgz...
    --2011-07-14 00:52:30-- http://downloads.sourceforge.net/sourceforge/tpctl/tp_smapi-0.40.tgz
    Resolving downloads.sourceforge.net... 216.34.181.59
    Connecting to downloads.sourceforge.net|216.34.181.59|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: http://downloads.sourceforge.net/project/tpctl/tp_smapi/0.40/tp_smapi-0.40.tgz [following]
    --2011-07-14 00:52:31-- http://downloads.sourceforge.net/project/tpctl/tp_smapi/0.40/tp_smapi-0.40.tgz
    Reusing existing connection to downloads.sourceforge.net:80.
    HTTP request sent, awaiting response... 302 Found
    Location: http://sunet.dl.sourceforge.net/project/tpctl/tp_smapi/0.40/tp_smapi-0.40.tgz [following]
    --2011-07-14 00:52:31-- http://sunet.dl.sourceforge.net/project/tpctl/tp_smapi/0.40/tp_smapi-0.40.tgz
    Resolving sunet.dl.sourceforge.net... 194.71.11.73
    Connecting to sunet.dl.sourceforge.net|194.71.11.73|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 39002 (38K) [application/x-gzip]
    Saving to: `tp_smapi-0.40.tgz.part'
    100%[===================================================================>] 39,002 201K/s in 0.2s
    2011-07-14 00:52:32 (201 KB/s) - `tp_smapi-0.40.tgz.part' saved [39002/39002]
    -> Found fix_for_2.6.37.patch
    -> Found fix_hdaps_orientation.patch
    -> Found tp_smapi.patch
    ==> Validating source files with md5sums...
    tp_smapi-0.40.tgz ... Passed
    fix_for_2.6.37.patch ... Passed
    fix_hdaps_orientation.patch ... Passed
    tp_smapi.patch ... Passed
    ==> Validating source files with sha256sums...
    tp_smapi-0.40.tgz ... Passed
    fix_for_2.6.37.patch ... Passed
    fix_hdaps_orientation.patch ... Passed
    tp_smapi.patch ... Passed
    ==> Extracting Sources...
    -> Extracting tp_smapi-0.40.tgz with bsdtar
    ==> Starting build()...
    patching file Makefile
    patching file thinkpad_ec.c
    patching file tp_smapi.c
    patching file hdaps.c
    make -C /lib/modules/2.6.39-ARCH/build M=/home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40 O=/lib/modules/2.6.39-ARCH/build modules
    make[1]: Entering directory `/usr/src/linux-2.6.39-ARCH'
    CC [M] /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/thinkpad_ec.o
    /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/thinkpad_ec.c: In function 'check_dmi_for_ec':
    /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/thinkpad_ec.c:468:1: warning: the frame size of 1328 bytes is larger than 1024 bytes [-Wframe-larger-than=]
    CC [M] /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/tp_smapi.o
    CC [M] /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/hdaps.o
    Building modules, stage 2.
    MODPOST 3 modules
    CC /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/hdaps.mod.o
    LD [M] /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/hdaps.ko
    CC /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/thinkpad_ec.mod.o
    LD [M] /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/thinkpad_ec.ko
    CC /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/tp_smapi.mod.o
    LD [M] /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/tp_smapi.ko
    make[1]: Leaving directory `/usr/src/linux-2.6.39-ARCH'
    ==> Entering fakeroot environment...
    ==> Starting package()...
    make: Entering directory `/usr/src/linux-2.6.39-ARCH'
    INSTALL /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/hdaps.ko
    INSTALL /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/thinkpad_ec.ko
    INSTALL /home/dir2cas/devel/abs/tp_smapi/src/tp_smapi-0.40/tp_smapi.ko
    DEPMOD 2.6.39-ARCH
    make: Leaving directory `/usr/src/linux-2.6.39-ARCH'
    ==> Tidying install...
    -> Purging other files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: tp_smapi 0.40-5 (Thu Jul 14 00:52:37 EEST 2011)
    [dir2cas@X41 tp_smapi]> ll
    total 100K
    drwxr-xr-x 4 dir2cas users 88 Jul 14 00:52 ./
    drwxr-xr-x 3 dir2cas users 4.0K Jul 14 00:52 ../
    -rw-r--r-- 1 dir2cas users 2.0K Apr 10 14:16 PKGBUILD
    -rw-r--r-- 1 dir2cas users 1.1K Jan 7 2011 fix_for_2.6.37.patch
    -rw-r--r-- 1 dir2cas users 535 Apr 10 14:16 fix_hdaps_orientation.patch
    drwxr-xr-x 3 dir2cas users 24 Jul 14 00:52 pkg/
    drwxr-xr-x 3 dir2cas users 40 Jul 14 00:52 src/
    -rw-r--r-- 1 dir2cas users 22K Jul 14 00:52 tp_smapi-0.40-5-i686.pkg.tar.gz
    -rw-r--r-- 1 dir2cas users 39K Dec 16 2008 tp_smapi-0.40.tgz
    -rw-r--r-- 1 dir2cas users 124 Jul 14 00:52 tp_smapi.install
    -rw-r--r-- 1 dir2cas users 678 Jan 1 1970 tp_smapi.patch
    Thanks alot!
    Last edited by dir2cas (2011-07-13 22:06:58)

  • [SOLVED] Exaile doesn't start after system update

    Hi,
    After last system update Exaile won't start I've searched forum and web and can't find solution for that.
    [lukasz@myhost ~]$ exaile
    Traceback (most recent call last):
    File "/usr/lib/exaile/exaile.py", line 32, in <module>
    import gobject
    ImportError: No module named gobject
    As You can see it says something about gobject.
    BTW. After update I also hav problems with catalyst from AUR, my Gnome wasn't starting so I had to replace it with opensource ATI drivers,
    another problem is that everytime I startup gnome it's uing very small fonts, and I have to manually change it to one I had before.
    Please help,
    Regards,
    Lukasz
    Last edited by skraburski (2009-05-31 11:18:25)

    Problem solved, had to reinstall pygobject. It looks like after last update many pacakges were corrupted and now Ia have to reinstall them, do You know any way to automatically reinstall all corrupted packages?
    Regards,
    Lukasz

  • Can't start gnome-session after system update.

    hi all
    I have done a whole system update .
    pacman -Syu
    and now I can't start the desktop environment.
    I tried to delete the xorg.conf and create new 1 and then copy it to /etc/X11
    X -configure
    but that didn't work.
    and when I am trying to create new xorg file I got an error message telling me that the number of screens detected is not matched , I am using a laptop .
    I checked ~/.xinitrc and /etc/rc.conf and everything is right.
    any suggestion??
    Last edited by YYaaSSeeRR (2012-11-19 08:11:06)

    ETNyx wrote:
    Hi,
    you did not give enough information but i had simillar problem cant start gdm look there https://bbs.archlinux.org/viewtopic.php?id=153240 anyway search trought your logs or post them to forum
    when I am trying to create new xorg file through this order
    X -configure
    I get an error message telling me that the number of created screens doesn't match the number of detected devices. "I am using a laptop BTW".
    and I can't log in, I just got the black screen and when launching startx I got the gnome shell session but after 2 seconds of that I got a failure in Gnome and have to log out.
    Last edited by YYaaSSeeRR (2012-11-20 07:25:55)

  • SOLVED Key board and mouse fail after last update

    Both my wireless keyboard and mouse failed after I updated yesterday. I'm using KNOPPIX to post they both work with knoppix so its not a hardware problem.
    KDE 4.1
    Logitech keyboard and mouse
    Last edited by normc (2008-11-08 00:05:37)

    Thanks a lot
    Just want to add that I had to edit grub at start up and add "single" at the end of the kernel line.
    The reason is that switching to runlevel 3 didn't work for me.

  • [HALF-SOLVED] Can't do "startx" after recent update

    Hello everyone!
    After i updated my system with "pacman -Syu" and rebooted my PC, i got message "FATAL: module "fbcon" not found!" and X failed to start by typing "startx" on the console as i always do.
    I have xf86-video-intel and xorg-server 1.7.5 installed. everything from standart repo.
    Also, It may be strange that Xorg.0.log ends with some messages about evdev.
    don't know what to do to solve this problem. help me please, someone who knows what is it caused by?
    Last edited by linuxgod (2010-02-23 17:50:07)

    If you would have searched at least this forum, you would have found: http://bbs.archlinux.org/viewtopic.php?id=79362
    Apparently the FATAL-warning can be ignored. Give us is the output of the logs:
    cat /var/log/xorg.0.log | grep EE
    cat /car/log/xorg.0.log | grep WW
    Then we can start making suggestions.

  • Lack of 3g after system update

    Hello :-)
    It's problem with Xperia E dual
    Few days ago I updated the system to the 4.1.1 version (compilation 11.3.A.1.39).
    Unfortunatelly after updating I've discovered that smartphone don't works with 3G. On the display I've only icon "E". Before updating there was typically "H". Of course now the transfer is slower than before and of course I'm not happy of that.
    I try to solve this problem - choose in menu list of available provider and... there are only 2G nets. Because I've functioning still in the same place of live and the problem has occured after the updating I'm sure that it's strictly connected.
    Is there any solution for that?
    Another problem is with trying to call. After system updating typically twice a day I have to restart smartphone because it's totally hanged. No one can connect with me and I can't call to anybody. Smartphone looks normally and doesn't give any siglan that something is wrong. But when I try to connect to somebody I direst the number and... there is no signal at all. After few seconds telephon return to main menu. There is also no record about this trial of connection in the list of done connections. It's very uncomfortable situation.
    Sure, there are also some adventages with the system updating but problems mentioned above are really annoing.
    Have you any solutions for it?
    Thanks in advance.
    Rafal
    Solved!
    Go to Solution.

    Hi, try repairing phone software with PC Companion or Update Service.
    http://www.sonymobile.com/gb/tools/pc-companion/
    http://www.sonymobile.com/gb/tools/update-service/
    Be aware that this will erase phone data completely, backup if necessary.
    Before proceeding with software repair, confirm with your Network Operator that there is nothing wrong with the network. Also, remove and reinsert SIM card and try again (have a close look at the contact surface, ensure that it is relatively clean).
    Don't forget to mark correct answer as Accepted Solution.
    If you find the post helpful, press Kudos.

  • How to turn off alarm after system update?

    I get alarm when restarting my T400 after system update. Can anyone give me suggestions to turn off this alarm?
    Thanks,

    I have no display > powercontrol in openbox, gnome or fluxbox, What are you talking about?

  • Nautilus will not Start after system update

    I just updated my system with "pacman -Syu" and it now will not open the nautilus file manager. Looking inside the journal it shows the following error:
    gnome-session[647]: Window manager warning: Log level 16: AT-SPI: Error in GetItems, sender=(null), error=Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    Here is a list of files that was just upgraded:
    [2014-08-31 15:27] [PACMAN] Running 'pacman -Syu flashplugin'
    [2014-08-31 15:27] [PACMAN] synchronizing package lists
    [2014-08-31 15:27] [PACMAN] starting full system upgrade
    [2014-08-31 15:28] [ALPM-SCRIPTLET]  >>
    [2014-08-31 15:28] [ALPM-SCRIPTLET]  >> If you have an NVIDIA card that supports libvdpau or Broadcom Crystal HD chips,
    [2014-08-31 15:28] [ALPM-SCRIPTLET]  >> uncomment EnableLinuxHWVideoDecode=1 from /etc/adobe/mms.cfg.
    [2014-08-31 15:28] [ALPM-SCRIPTLET]  >> If you run into problems, please contact nVidia or Broadcom along with your system config info / driver version.
    [2014-08-31 15:28] [ALPM-SCRIPTLET]  >>
    [2014-08-31 15:28] [PACMAN] installed flashplugin (11.2.202.400-1)
    [2014-08-31 15:28] [PACMAN] upgraded avahi (0.6.31-12 -> 0.6.31-13)
    [2014-08-31 15:28] [PACMAN] upgraded bash (4.3.022-1 -> 4.3.024-1)
    [2014-08-31 15:28] [PACMAN] upgraded bluez (5.22-1 -> 5.22-2)
    [2014-08-31 15:28] [PACMAN] upgraded poppler (0.26.3-1 -> 0.26.4-1)
    [2014-08-31 15:28] [PACMAN] upgraded cups-filters (1.0.57-1 -> 1.0.58-1)
    [2014-08-31 15:28] [PACMAN] upgraded libgcrypt (1.6.1-1 -> 1.6.2-1)
    [2014-08-31 15:28] [PACMAN] upgraded libsystemd (215-4 -> 216-1)
    [2014-08-31 15:28] [PACMAN] upgraded systemd (215-4 -> 216-1)
    [2014-08-31 15:28] [PACMAN] upgraded device-mapper (2.02.109-1 -> 2.02.109-2)
    [2014-08-31 15:28] [PACMAN] upgraded libtasn1 (4.0-1 -> 4.1-1)
    [2014-08-31 15:28] [PACMAN] upgraded gnutls (3.3.6-1 -> 3.3.7-1)
    [2014-08-31 15:28] [PACMAN] upgraded gstreamer (1.4.0-1 -> 1.4.1-1)
    [2014-08-31 15:28] [PACMAN] upgraded gst-plugins-base-libs (1.4.0-1 -> 1.4.1-1)
    [2014-08-31 15:28] [PACMAN] upgraded gst-libav (1.4.0-2 -> 1.4.1-1)
    [2014-08-31 15:28] [PACMAN] upgraded gst-plugins-bad (1.4.0-1 -> 1.4.1-1)
    [2014-08-31 15:28] [PACMAN] upgraded gst-plugins-base (1.4.0-1 -> 1.4.1-1)
    [2014-08-31 15:28] [PACMAN] installed zita-alsa-pcmi (0.2.0-1)
    [2014-08-31 15:28] [PACMAN] installed zita-resampler (1.3.0-2)
    [2014-08-31 15:28] [PACMAN] upgraded jack (0.124.1-1 -> 0.124.1-3)
    [2014-08-31 15:28] [PACMAN] upgraded gst-plugins-good (1.4.0-1 -> 1.4.1-1)
    [2014-08-31 15:28] [PACMAN] upgraded gtksourceview3 (3.12.2-1 -> 3.12.3-1)
    [2014-08-31 15:28] [PACMAN] upgraded imagemagick (6.8.9.6-1 -> 6.8.9.7-1)
    [2014-08-31 15:28] [PACMAN] upgraded libnl (3.2.24-1 -> 3.2.25-1)
    [2014-08-31 15:28] [PACMAN] upgraded libpcap (1.5.3-1 -> 1.6.1-1)
    [2014-08-31 15:28] [PACMAN] upgraded libtracker-sparql (1.0.2-1 -> 1.0.3-1)
    [2014-08-31 15:28] [PACMAN] upgraded libwacom (0.9-1 -> 0.10-1)
    [2014-08-31 15:28] [PACMAN] upgraded libxkbcommon (0.4.2-1 -> 0.4.3-1)
    [2014-08-31 15:28] [PACMAN] installed thin-provisioning-tools (0.3.2-1)
    [2014-08-31 15:28] [PACMAN] upgraded lvm2 (2.02.109-1 -> 2.02.109-2)
    [2014-08-31 15:28] [PACMAN] upgraded man-pages (3.70-1 -> 3.71-1)
    [2014-08-31 15:28] [PACMAN] upgraded ntp (4.2.7.p446-2 -> 4.2.7.p465-1)
    [2014-08-31 15:28] [ALPM] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2014-08-31 15:28] [PACMAN] upgraded pacman-mirrorlist (20140706-1 -> 20140823-1)
    [2014-08-31 15:28] [PACMAN] upgraded poppler-glib (0.26.3-1 -> 0.26.4-1)
    [2014-08-31 15:28] [PACMAN] upgraded spice-gtk3 (0.24-3 -> 0.24-4)
    [2014-08-31 15:28] [PACMAN] upgraded systemd-sysvcompat (215-4 -> 216-1)
    [2014-08-31 15:28] [PACMAN] upgraded tcl (8.6.1-1 -> 8.6.2-1)
    [2014-08-31 15:28] [PACMAN] upgraded telepathy-farstream (0.6.1-1 -> 0.6.2-1)
    [2014-08-31 15:28] [PACMAN] upgraded tracker (1.0.2-1 -> 1.0.3-1)
    [2014-08-31 15:28] [PACMAN] upgraded tzdata (2014e-1 -> 2014f-1)
    [2014-08-31 15:28] [PACMAN] upgraded webkitgtk (2.4.4-1 -> 2.4.5-1)
    [2014-08-31 15:28] [PACMAN] upgraded webkitgtk2 (2.4.4-1 -> 2.4.5-1)
    would any of these packages cause this? Thanks.
    Last edited by djmwj1 (2014-08-31 23:15:33)

    Please edit your post to use BBCode Code tags around program output.  That reference link is also below every post box on the forums.   Thanks.

  • [Solved] Audio dead after system update

    I was having a difficult time with network issues so I did a system update last night, and while it cured my network woes something broke my sound which was working fine before. I use MPD and Ario to play music and VLC to play video and both have no sound. I tried everything in the wiki to no avail, and searched the BBS for ideas (I always use startx).
    I did several lsmod, aplay -l, aplay -L, etc commands and everything looks just the same as before the update. I checked audio levels in alsamixer, and even tried to install pulseaudio on top of several reboots and adding myself to audio. The only thing else that might help is I hear a pop from my speakers every so often. I don't know what else to provide that could help. It's hard for me to figure out because everything looks normal, and the cards are even being initialized as far as I can tell.
    Last edited by zerologik (2013-03-05 04:56:29)

    lsmod |grep "snd"
    snd_hda_codec_hdmi 27561 1
    snd_hda_codec_realtek 61729 1
    snd_hda_intel 27668 11
    snd_hda_codec 100743 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    snd_hwdep 6429 1 snd_hda_codec
    snd_pcm 77827 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 7427 2 snd_pcm,snd_hda_intel
    snd_timer 18935 1 snd_pcm
    snd 60157 29 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 5443 1 snd
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: SB [HDA ATI SB], device 0: ALC888-VD Analog [ALC888-VD Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: SB [HDA ATI SB], device 1: ALC888-VD Digital [ALC888-VD Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    aplay -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default:CARD=SB
    HDA ATI SB, ALC888-VD Analog
    Default Audio Device
    sysdefault:CARD=SB
    HDA ATI SB, ALC888-VD Analog
    Default Audio Device
    front:CARD=SB,DEV=0
    HDA ATI SB, ALC888-VD Analog
    Front speakers
    surround40:CARD=SB,DEV=0
    HDA ATI SB, ALC888-VD Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=SB,DEV=0
    HDA ATI SB, ALC888-VD Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=SB,DEV=0
    HDA ATI SB, ALC888-VD Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=SB,DEV=0
    HDA ATI SB, ALC888-VD Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=SB,DEV=0
    HDA ATI SB, ALC888-VD Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    iec958:CARD=SB,DEV=0
    HDA ATI SB, ALC888-VD Digital
    IEC958 (S/PDIF) Digital Audio Output
    hdmi:CARD=NVidia,DEV=0
    HDA NVidia, HDMI 0
    HDMI Audio Output
    hdmi:CARD=NVidia,DEV=1
    HDA NVidia, HDMI 1
    HDMI Audio Output
    Everything looks normal to me, unless I'm missing some crucial detail somewhere.
    *EDIT: I went ahead and tried a few more things and reread the PulseAudio entry in the wiki and used pavucontrol as a last ditched effort and found that after the update it seems the soundcard became muted somehow even though I never had pulse installed before on this machine.
    I should have tried that first, sorry for anyone who wasted their time on this thread and a good lesson for fellow newbies is to always try control packages first before moving onto other means/making a thread. Marking this as solved.
    Last edited by zerologik (2013-03-05 04:56:06)

  • [SOLVED] pure-ftpd no longer works after system update

    Hi,
    I made a system update today and since pure-ftpd doesn't want to start it just display "[FAIL]" but I don't have any error message.
    Is it possible to see the the error log of pure-ftpd ?
    Do you have any idea of how getting it working again?
    Thanks
    Last edited by clems45 (2011-04-02 21:41:23)

    I tried to check the version of pure-ftpd: pure-ftpd -V and it replies:
    pure-ftpd: error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: No such file or directory
    but mysql client is installed properly! I tried to reinstall it but it changed nothing

  • [SOLVED] Audio not working after system update

    Hi all,
    About 4 days ago, I installed Arch Linux (full systemd) with LXDE on a Dell Inspiron Mini netbook. Everything seemed to be OK until today, when I did pacman -Syu and then installed the SLiM login manager. After rebooting there was no audio. I am not sure if this happened because of the upgrade or because of SLiM. I am pretty new to systemd, so I could be missing something very obvious. I have tried many things so far, with no success:
    1) I disabled SLiM and instead started X from the terminal at boot, and nothing happened.
    2) I have removed my username from the 'audio' group, added it again, removed it, etc... No change.
    3) I downgraded systemd, systemd-sysvcompat, and xine-lib (just in case) to their previous version and nothing happened.
    4) I seem to be detecting the sound card correctly. If I run "aplay -l" as my normal, non-root user I get the same output as the root user:
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    5) If I login with SLiM, my session seems to be setup correctly, as far as I can tell:
    $ loginctl show-session $XDG_SESSION_ID
    Id=1
    Timestamp=Mon, 2012-10-29 00:38:35 EDT
    TimestampMonotonic=14973592
    DefaultControlGroup=name=systemd:/user/vrg/1
    VTNr=7
    Display=:0.0
    Remote=no
    RemoteUser=root
    Service=slim
    Leader=274
    Audit=1
    Type=x11
    Class=user
    Active=yes
    State=active
    KillProcesses=no
    IdleHint=no
    IdleSinceHint=0
    IdleSinceHintMonotonic=0
    Name=vrg
    6) I reinstalled pulseaudio, pulseaudio-alsa, alsa-plugins, and alsa-oss... Nothing.
    7) I do not have the ~/.asoundrc file.
    Here is a full list of the packages I upgraded:
    [2012-10-28 11:19] Running 'pacman -Syy'
    [2012-10-28 11:19] synchronizing package lists
    [2012-10-28 11:19] Running 'pacman -Syu'
    [2012-10-28 11:19] synchronizing package lists
    [2012-10-28 11:19] starting full system upgrade
    [2012-10-28 11:20] upgraded linux-api-headers (3.5.5-1 -> 3.6.3-1)
    [2012-10-28 11:20] Generating locales...
    [2012-10-28 11:20] en_US.UTF-8... done
    [2012-10-28 11:20] Generation complete.
    [2012-10-28 11:21] upgraded glibc (2.16.0-4 -> 2.16.0-5)
    [2012-10-28 11:21] upgraded binutils (2.22-10 -> 2.23-1)
    [2012-10-28 11:21] upgraded bison (2.6.2-1 -> 2.6.4-1)
    [2012-10-28 11:21] upgraded coreutils (8.19-1 -> 8.20-1)
    [2012-10-28 11:21] upgraded systemd (194-4 -> 195-2)
    [2012-10-28 11:21] upgraded device-mapper (2.02.97-1 -> 2.02.98-1)
    [2012-10-28 11:21] upgraded cryptsetup (1.5.0-2 -> 1.5.1-1)
    [2012-10-28 11:21] installed nss-myhostname (0.3-3)
    [2012-10-28 11:21] warning: /etc/shadow installed as /etc/shadow.pacnew
    [2012-10-28 11:21] upgraded filesystem (2012.10-1 -> 2012.10-2)
    [2012-10-28 11:21] upgraded firefox (16.0.1-1 -> 16.0.2-1)
    [2012-10-28 11:21] upgraded gcc-libs (4.7.2-1 -> 4.7.2-2)
    [2012-10-28 11:21] upgraded gcc (4.7.2-1 -> 4.7.2-2)
    [2012-10-28 11:21] upgraded lirc-utils (1:0.9.0-32 -> 1:0.9.0-33)
    [2012-10-28 11:21] upgraded lvm2 (2.02.97-1 -> 2.02.98-1)
    [2012-10-28 11:21] upgraded mkinitcpio (0.10-1 -> 0.11.0-1)
    [2012-10-28 11:21] upgraded syslinux (4.05-7 -> 4.06-1)
    [2012-10-28 11:21] upgraded systemd-sysvcompat (194-4 -> 195-2)
    [2012-10-28 11:21] upgraded xine-lib (1.2.2-2 -> 1.2.2-3)
    More information:
    $ ls -l /dev/snd
    total 0
    drwxr-xr-x 2 root root 60 Oct 29 00:38 by-path
    crw-rw----+ 1 root root 116, 5 Oct 29 00:38 controlC0
    crw-rw----+ 1 root root 116, 4 Oct 29 00:38 hwC0D0
    crw-rw----+ 1 root root 116, 3 Oct 29 00:38 pcmC0D0c
    crw-rw----+ 1 root root 116, 2 Oct 29 01:53 pcmC0D0p
    crw------- 1 root root 116, 1 Oct 29 00:38 seq
    crw-rw----+ 1 root root 116, 33 Oct 29 00:38 timer
    $ lsmod | grep '^snd' | column -t
    snd_hda_codec_realtek 52245 1
    snd_hda_intel 22256 1
    snd_hda_codec 83677 2 snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep 4746 1 snd_hda_codec
    snd_pcm 61470 2 snd_hda_codec,snd_hda_intel
    snd_page_alloc 5869 2 snd_pcm,snd_hda_intel
    snd_timer 14902 1 snd_pcm
    snd 44874 8 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
    If I run 'fuser -v /dev/snd/*' I get nothing (blank) and if I run 'fuser -v /dev/dsp' I get file not found. I've also done 'amixer sset Master unmute' and 'speaker-test'. Everything seems OK, except that I can't hear anything!
    Any help or suggestions that could point me in the right direction would be greatly appreciated.
    Last edited by vrg (2012-10-29 07:25:36)

    Thanks Rasi. Incidentally, I just solved the issue a few minutes ago and was about to post the answer, but yes, you are right... the device was muted. It's embarrassing, but it did not seem obvious to me that the device was muted... All the sliders seemed OK, with nice, green values between 50 and 100. Also, the LXDE volume control was unmuted with a value between 50% and 100%, and I ran the 'amixer sset Master unmute' command several times. Clearly, this command does not do the job.
    What I was missing is nicely described in the PulseAudio troubleshooting:
    If one experiences no audio output via any means while using ALSA, attempt to unmute the sound card. To do this, launch alsamixer and make sure each column has a green 00 under it (this can be toggled by pressing 'm')
    I was not pressing 'm'... I know it's on the wiki, but this did not seem to be a PulseAudio issue, which was working perfectly yesterday and was not upgraded, so the PulseAudio troubleshooting was not the first place I looked for solutions. I wonder why the device got muted in the first place.
    Thanks again for the help!

  • [solved] Pulseaudio doesn't detect sound card after system update

    Before a recent system update I had pulseaudio working flawlessly, but after doing a recent system update with pacman -Syu,
    pulseaudio no longer sees my sound card and only displays the Dummy audio device.  Among the packages updated that I can
    remember off the top of my head are the Linux keneral, udev, kmod, instead of trying to roll back my system I figured I would try
    to fix the issue.  The only thing suggested in the Pulseaudio wiki is that a asound.conf directory is overriding the /etc/asound.conf
    file which is not the case on my system.
    Looking at the output from lsmod I can see where the kernel modules for the sound card is getting loaded
    snd_hda_intel 23375 0
    snd_hda_codec 89160 3 snd_hda_intel,snd_hda_codec_realtek,snd_hda_codec_hdmi
    snd_hwdep 6389 1 snd_hda_codec
    snd_pcm 74780 3 snd_hda_codec,snd_hda_intel,snd_hda_codec_hdmi
    snd_page_alloc 7153 2 snd_pcm,snd_hda_intel
    snd_timer 19544 1 snd_pcm
    and looking at the output from the ps command I can see that pulseaudio is getting started
    1190 ? S<l 0:00 /usr/bin/pulseaudio --start
    1195 ? S 0:00 \_ /usr/lib/pulse/gconf-helper
    but pacmd list still reports this
    0 card(s) available.
    0 sink input(s) available.
    0 source outputs(s) available.
    0 cache entrie(s) available.
    Here is the output of pacmd dump if it helps
    ### Configuration dump generated at Thu Feb 16 08:45:56 2012
    load-module module-device-restore
    load-module module-stream-restore
    load-module module-card-restore
    load-module module-augment-properties
    load-module module-udev-detect tsched=0
    load-module module-jackdbus-detect
    load-module module-bluetooth-discover
    load-module module-esound-protocol-unix
    load-module module-native-protocol-unix
    load-module module-gconf
    load-module module-default-device-restore
    load-module module-rescue-streams
    load-module module-null-sink sink_name=auto_null sink_properties='device.description="Dummy Output"'
    load-module module-always-sink
    load-module module-intended-roles
    load-module module-suspend-on-idle
    load-module module-console-kit
    load-module module-position-event-sounds
    load-module module-cork-music-on-phone
    load-module module-filter-heuristics
    load-module module-filter-apply
    load-module module-dbus-protocol
    load-module module-x11-publish display=:0.0
    load-module module-cli-protocol-unix
    set-sink-volume auto_null 0x10000
    set-sink-mute auto_null no
    suspend-sink auto_null yes
    set-source-volume auto_null.monitor 0x10000
    set-source-mute auto_null.monitor no
    suspend-source auto_null.monitor yes
    set-default-sink auto_null
    set-default-source auto_null.monitor
    ### EOF
    EDIT: I should also add that fuser -v /dev/snd/* returns nothing and fuser -v /dev/dsp returns "Specified filename /dev/dsp does not exist".
    Last edited by vendion (2012-03-02 23:26:28)

    Digging into this further aplay -L gives different output based off of whether or not I ran is as my normal user or with sudo/as root.
    As a user (which is how pulseaudio is also being ran):
    > aplay -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    as root it does see both my sound cards when I run it with sudo or as root:
    > sudo aplay -L
    Password:
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    sysdefault:CARD=SB
    HDA ATI SB, ALC887-VD Analog
    Default Audio Device
    front:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    Front speakers
    surround40:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    iec958:CARD=SB,DEV=0
    HDA ATI SB, ALC887-VD Digital
    IEC958 (S/PDIF) Digital Audio Output
    hdmi:CARD=HDMI,DEV=0
    HDA ATI HDMI, HDMI 0
    HDMI Audio Output
    This behavior is confusing to me, and if someone knows what is going on and how to fix it I really want to get sound with pulseaudio working and have sound again.

  • [SOLVED] fails after last update

    I updated my system this morning. Now, when I start the pc, I can't do almost anything.
    For example, I launch Chromium and after a while, it starts but it can't load any websites.
    I can't neither open a terminal nor Dolphin!
    In the other hand, Cairo dock, which is loaded with a bash scripts, loads as usual.
    But the weirdest thing is that when the computer is starting, once the KDE desktop is loaded, Kate seems to run automatically but if I try to see what it is, the computer hangs for a while and Kate closes.
    What can I do?
    Last edited by doblerone (2014-02-02 08:05:22)

    doblerone wrote:What did you update?
    I don't remember exactly all the packages (Skype, cmake and a few more).
    You should check pacman.log to be sure, before asking that question.
    doblerone wrote:Is the system fully up to date?
    I try to keep my system updated
    What does try mean? Its a simple question...is your system fully updated or not?
    doblerone wrote:What does "if I try to see what it is" mean?
    If I try to open why is Kate opening, Kate hangs and it closes.
    Huh ?? if you try to open "WHAT" why is Kate opening?
    doblerone wrote:When the computer hangs, can you switch to a different console? Can you log into that tty?
    When it hangs, I try to log into a tty (ALT+F2) but I can't do it.
    What does cant do it mean? what happens? errors? shit hits the fan? what ?
    doblerone wrote:How do you start KDE?
    KDE starts automatically.
    Gahh !! the question was how -- as in do you use a Desktop manager or do you start it with .xinitrc or some other method ?
    Jeez !! Please post legibly. You are making it awfully difficult for any of us to help you.
    P.S. -- If language is a barrier then you can also try posting in the Other Languages forum in your native language and someone might be able to help you there-- but you still need to define the problem clearly -- no matter what language.

  • ADSL / fglrx problems after system update [Solved]

    I'm hoping that somebody will be able to help me with this as I'm struggling to find the answer elsewhere in this forum. I recently installed Arch 0.7.2 base. I then got my internet connection sorted using my speedtouch modem as per the instructions on the Wiki. (using pppoa). I the installed xorg7, and gnome. I installed the ati-fglrx drivers from the instructions on the wiki. Up to this point, everything was working just fine.
    I then decided to update the system so I did a pacman -Syu and all seemed to go well. After rebooting the machine, it would not start x and from the debug messages on the screen it seemed to be saying that it was having a problem loading the fglrx module.
    I thought that I would try uninstalling the fglrx packages, then reinstalling and reconfiguring. I uninstalled them but then discovered that when I tried to download anything, my connection would be lost within a few seconds and wouldn't let me reconnect. The only way to reconnect was to reboot first. (I did find out that I had to do a modprobe ppp-generic first in order to connect since the update)
    I then deleted my xorg.conf, and created another using hwd -x and then managed to get back into gnome using the default drivers - but obviously with no 3d acceleration. (I have a radeon 9500pro by the way). I tried connecting again and this time tested the connection through firefox. I managed to open 1 webpage before losing my connection again.
    I'm sorry that I cannot post any logs just at the moment as I'm at work although I can later on. I'm just wondering for now if these problems seem familiar to anyone?

    I have exactly the same problem as atalman.
    My modem works fine, I can play eternal-lands/browse webpages for hours on end, but as soon as the modem is under any kind of heavy load, ie: ktorrent, amule, ebay (lots of images and open in new tabs) the connection dies..
    I try 
    killall pppd
    usually to find
    pppd: no process killed
    , so I then try
    pppd call speedtch
    which lets me know that the modem is already connected??
    So I have to unplug/replug the modem in, pppd call speedtch, then it connects again on a different 'channel'.
    dmesg shows no errors, I have enabled debug in the pppd settings which shows nothing, my firmwares are correct as Ive used the same on Slackware and Arch for ages. I originally thought the modem(rev 4) was dying so I swapped it over for my backup, an older manta/stingray  version, different (working) firmware but all the same problems.

Maybe you are looking for

  • Printer Queue - How can I hide print job title and username?

    Hi, Does anyone know if it is possible to hide print job title and username in the printerqueue? Because of our privacy agreement we would like to hide this information,  Workstation OS: Windows 7 x64  Printserver : MS 2008 R2 Thanks in advance Mark

  • How do I put a purchased ringtone on my contact?

    I have purchased ringtones for my contacts but my IPhone does not recognize the ringtones or give me the option to attach the new ringtone to a contact. Help would be appreciated or a refund.

  • Problem in accesing Image from KM Content

    Hello All, I am having problem in accessing/viewing Image (the one which is uploaded in KM Content) in Quick poll IView. It shows only image if the user has Content Administration role. It doesn't show if the user doesn't hv this role. I suspect the

  • All my office programs are crashing regularly, especially Outlook!!!

    MS Office programs, all of them, Outlook, Powerpoint, etc. all crashing. Started when I upgraded to Office 2013/365 Every other program is stable on the machine. Removed completely and reinstalled. Remove all display drivers completely and reinstalle

  • Start up and shut down is slow after erasing free space using disk utility?

    I went to Disk Utility, clicked Erase, and then "Erase Free Space." When I saw that it was going to take 1 hour and 30 minutes, I tried closing disk utility. It wouldn't let me exit, so instead I pressed "Skip." But when you hover over the "Skip" but