[Solved] Network doesn't work after hibernate?

Hello!  This is my first legit Linux install so excuse me if I'm a bit slow.  I installed Arch last night and everything went smoothly.  However, after I tested out hibernate on my machine, the network doesn't seem to work.  Just prior to the hibernate, I installed Pidgin and Skype but they worked alright, so I think that the hibernate caused a problem on eth0.
I have an Asus P8Z68-V Pro motherboard with an Intel 82579V Gigabit Ethernet Controller that's using the e1000e driver.  Running "dmesg | grep e1000e" says that it is up.
I'm not entirely clear here, but from reading, I think that I have several ways of connecting to the network, including network, dhcpcd, networkmanager, and wicd.  I am using wicd so I did the following (or at least I think I am only using wicd):
#rc.d stop network
#rc.d stop dhcpcd
#rc.d stop networkmanager
Similarly, I put a ! in front of network in rc.conf:
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
# startup and during the boot process. If set to 'no', the C locale is used.
# HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# Note: Using "localtime" is discouraged, using "" makes hwclock fall back
# to the value in /var/lib/hwclock/adjfile
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# Note: if unset, the value in /etc/localtime is used unchanged
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="en_US.UTF-8"
DAEMON_LOCALE="no"
HARDWARECLOCK="UTC"
TIMEZONE="America/New_York"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"
# HARDWARE
# MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
# Replace every !module by an entry as on the following line in a file in
# /etc/modprobe.d:
# blacklist module
# See "man modprobe.conf" for details.
MODULES=()
# Udev settle timeout (default to 30)
UDEV_TIMEOUT=30
# Scan for FakeRAID (dmraid) Volumes at startup
USEDMRAID="no"
# Scan for BTRFS volumes at startup
USEBTRFS="no"
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
# NETWORKING
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
HOSTNAME="Vicious"
# Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
# Wired network setup
# - interface: name of device (required)
# - address: IP address (leave blank for DHCP)
# - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
# - broadcast: broadcast address (ignored for DHCP) (optional)
# - gateway: default route (ignored for DHCP)
# Static IP example
# interface=eth0
# address=192.168.0.2
# netmask=255.255.255.0
# broadcast=192.168.0.255
# gateway=192.168.0.1
# DHCP example
# interface=eth0
# address=
# netmask=
# gateway=
interface=eth0
address=
netmask=
broadcast=
gateway=
# Setting this to "yes" will skip network shutdown.
# This is required if your root device is on NFS.
NETWORK_PERSIST="no"
# Enable these netcfg profiles at boot-up. These are useful if you happen to
# need more advanced network features than the simple network service
# supports, such as multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
# Network profiles are found in /etc/network.d
# This requires the netcfg package
#NETWORKS=(main)
# DAEMONS
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
# If something other takes care of your hardware clock (ntpd, dual-boot...)
# you should disable 'hwclock' here.
DAEMONS=(hwclock syslog-ng dbus !network netfs crond wicd)
Restarting eth0 through wicd-cli still did not work.  I also tried resuscitating the network via instructions on the configure network page before trying to focus solely on wicd.
I found a few similar problems on the forums by searching "wicd hibernate" and tried several solutions but they did not work.  Several problems seem to be that the network doesn't work after a suspend because I guess the stuff in RAM did not get saved?  But people were able to restart the network by running "/usr/lib/wicd/autoconnect.py" and I wasn't able to get this to work.  As a final effort, I added "resume" into mkinitcpio.conf and placed the machine into sleep again to see if it may magically reset something but of course this did not happen .
mkinitcpio.conf:
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES="piix ide_disk reiserfs"
MODULES=""
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run first, so it may be used to
# override the actual binaries used in a given hook.
# (Existing files are NOT overwritten if already added)
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=""
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
# Some users may wish to include modprobe.conf for custom module options
# like so:
# FILES="/etc/modprobe.d/modprobe.conf"
FILES=""
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No raid, lvm2, or encrypted root is needed.
# HOOKS="base"
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS="base udev autodetect pata scsi sata filesystems"
## This is identical to the above, except the old ide subsystem is
## used for IDE devices instead of the new pata subsystem.
# HOOKS="base udev autodetect ide scsi sata filesystems"
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS="base udev pata scsi sata usb filesystems"
## This setup assembles a pata mdadm array with an encrypted root FS.
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
# HOOKS="base udev pata mdadm encrypt filesystems"
## This setup loads an lvm2 volume group on a usb device.
# HOOKS="base udev usb lvm2 filesystems"
HOOKS="base udev autodetect pata scsi sata resume filesystems usbinput"
# COMPRESSION
# Use this to compress the initramfs image. With kernels earlier than
# 2.6.30, only gzip is supported, which is also the default. Newer kernels
# support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
# compression.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""
Not sure if my fstab.conf is useful but if this has something to do with settings getting "lost" in swap, here it is.  Linux is on an SSD and HDD (sda and sdc) and Windows 7 is on a HDD (sdb).
fstab.conf:
# /etc/fstab: static file system information
# <file system> <dir> <type> <options> <dump> <pass>
none /tmp tmpfs nodev,nosuid,noatime,size=2000M,mode=1777 0 0
/dev/sda1 / ext4 defaults,noatime,discard 0 1
/dev/sda2 /home ext4 defaults,noatime,discard 0 2
/dev/sdc1 /boot ext4 defaults 0 1
/dev/sdc2 /var ext4 defaults 0 0
/dev/sdc3 swap swap defaults 0 0
/dev/sdc4 /media/data ext4 defaults 0 0
shm /dev/shm tmpfs nodev,nosuid,size=10G 0 0
Is wicd causing these problems or did I configure something else improperly?  Would appreciate any help to get eth0 up again!
Last edited by TheBigCow7 (2011-09-13 17:57:20)

Ok, I think I've made some progress!  Hibernate definitely affects my network connection.  Could this be a kernel 3.0 problem?
I noticed that ifconfig showed eth0 without an inet addr, just an inet6 addr for the longest time.  e1000e seemed to be loading up ok.  I'm not certain here, but I think that meant the dhcp settings didn't stick, or something along those lines.
Trying to use dhcpcd like the instructions here did not work.  By some chance, one attempt did work and while it did, I downloaded and installed dhclient.  After that one successful attempt, renewing the DHCP lease via dhcpcd did not work again.
Luckily though, I found that running "dhclient eth0" worked.  My DHCP settings seemed to have somehow gotten messed up after my initial, problematic hibernate to the point where none would stick, even after a reboot.  Manually typing in "dhclient eth0" would get eth0 working, so I decided to add it to the bottom of /etc/rc.local, like in the example on the networking page.
Now, eth0 works after a boot.  However, after the daemons load up during the boot process, my computer takes a long time to get to the login prompt (this is relatively speaking, since I am on a SSD and the boot process used to be blazing fast before).  I'm pretty sure it's because I added "dhclient eth0" to /etc/rc.local.
I should say that even with these changes, after a hibernate, my eth0 still does not work and if it weren't for the edit to /etc/rc.local, eth0's inet settings would still not stick after a reboot (that is to say, the hibernate does do something to my network settings). 
Is this the correct/most efficient way to fix my DHCP problem?  Can I fix my "eth0 after hibernate" issue?  Also, can I make my DHCP settings boot up without changes to /etc/rc.local so that I can get a fast boot again (still not sure how it was able to work before without my edit)?

Similar Messages

  • Tecra A9 - Network doesn't work after wake up from sleep/hibernate mode

    I have TECRA A9 and it work fine but I found that when the laptop go to sleep/hibernate mode and after return to work on the laptop the network not working.
    It keep the light on but there is no network and to solve it I need to restart the laptop.
    Any help please.
    Regards.

    This is a known issue so have a look on this website:
    http://aps2.toshiba-tro.de/kb0/TSB8902FC0000R01.htm
    Update the BIOS and then it will work.

  • [solved]wacom doesn't work after upgrade to xorg 1.6 and kernel 2.6.29

    hello..
    i have already posted about that in testing-forums, but since xorg 1.6 and kernel 2.6.29 have moved to extra, though i'd create a seperate topic about that.
    after i have upgraded to xorg 1.6 and kernel 2.6.29 my wacom device (as built-in, not usb) on my thinkpad x41t stopped working.
    before upgrade i have used xorg with hotplugging enabled. everything worked fine.
    after wacom stopeed working i removed everything regarding input devices from xorg.conf -> no change
    put an fdi-file for wacom -> no change
    installed linuxwacom-dev -> no change
    i don't really know, if it's a kernel or an xorg issue. loading wacom drivers manually still doesn't solve the problem. no warnings or errors about wacom in xorg-log or messages.log
    how could i check, wether my system recognizes the device properly at all? it doesn't show up in lspci or in lsusb.
    any help would be great.
    Last edited by lynucs (2009-04-14 18:57:17)

    well, upgraded again to xorg-server 1.6, disabled hotplugging, installed linuxwacom-dev from aur and the wacom works as allways. (had to edit xmodmap one more time, since kbd returns other keycodes than evdev does :-| ). no matter, done is done.
    but intel driver returns broken graphics if i rotate screen with xrandr.
    i guess there is no way around this execpt switching to the ultra-slow legacy driver?
    just for comparison - glxgears fps:
    intel: ~900fps
    intel-legacy: ~280fps
    Last edited by lynucs (2009-04-14 18:56:48)

  • [SOLVED] Network won't work after install

    Hi
    I've installed arch on a lot of different computers without any trouble. But now I'm trying to install it on a intel mini-ITX board with an atom processor and integrated network. When setting up the network during the install it downloads and installs the packages perfectly fine, but when the installation is finished and I reboot into my new system the network wont work.
    If I try to ping my gateway at 192.168.1.1 it just says that the network is unreachable.
    The ifconfig shows the following for eth0:
    Link encap:Ethernet  HWAddr 00:27:0E:05:AC:47
    BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 overruns:0 frame:0
    TX packets:0 errors:0 overruns:0 frame:0
    collisions:0 TX bytes:0 (0.0 b)
    Interrupt:28 Base address:0xe000
    Any ideas what could be wrong?
    Thanks
    //Lasse
    Last edited by Lazze (2010-02-10 14:57:30)

    Sorry I've been away for a couple of days, but it's solved now it was something in the hosts file which weren't correct.
    Thanks for the reply though!

  • [SOLVED] Network Manager not working after disabling GDM daemon

    Morning All,
      1st post so go easy on me.
    I have recently setup Arch on a Samsung Q320 notebook, using GNOME DE and enabling gdm. Everything is working fine installed network manager no probs it connects to wireless network each time I login, really impressed with the distro. However I have been playing around with it a bit and when a disable the 'gdm' daemon by prefixing it with '!' in /etc/rc.conf, then reboot then login in with username & pw,  and 'startx'  GNOME DE starts fine however network manager fails to start, it is still located in the preferences menu I can open it and see the networks I have created previously however cannot join any of them. Can shed any light on the situation.
    Cheers
    Chris
    Last edited by phatrat (2010-03-12 21:24:49)

    just add in ~/.xinitrc
    exec ck-launch-session gnome-session

  • Satellite A110-228 LAN does not work after hibernate

    Well, subject says it all, really. The LAN (wired) network does not work after hibernate.
    It seems it cannot find the DHCP server, so after a while it gets a 169.* address.
    After a reboot, the network functions as usual (gets a IP address from the DHCP server)
    Tried the usual things, disconnecting the cable, disabling the LAN device, battery or AC adapter, the behavior is reproducible.
    The wireless network will be restored after a hibernate.
    It needs a little help though (right click on the icon and "recover" or whatever it is called in English)
    Any suggestions?
    Wilm Boerhout

    Hi guys
    In the Toshiba HW setup which is placed in the control panel the options Wake-up on LAN and Built-in LAN should be enabled.
    I think the options are disabled by default.
    Furthermore the default setting for Wake on Settings is OS controlled. To use the Wake-up on LAN function under power off mode, in the device driver for the network card under the menu point Wake On Settings the Value Wake on Magic & Directed must be set.
    Please check this how to enable WOL (first time use):
    1. Go to [Start] -> [Control Panel] -> [Toshiba HWSetup] -> [LAN] tab
    2. Enable Wake-up on LAN
    3. Click [Apply]. System will request to reboot.
    4. After the reboot go to [Start] -> [Control Panel] -> select [System]
    5. On system properties dialog box select [Hardware] tab -> click [Device manager]
    6. On Device manager dialog box select [Networking adapters] -> double click [Intel(R) PRO/100 VE Network Connection]
    7. Go to [Advanced] tab -> select [Wake On Settings] property -> Select [Wake on Magic & Directed]
    8. Press [OK] to close the dialog box.

  • [SOLVED] network randomly doesn't work after reboot (e100)

    Hi
    Lately I have some weird issues with network. I shutdown computer during night, so basicly I reboot it at least once per day and every now and then without any pattern network doesn't work at all and so far only solution I have found is to reboot (again).
    Before anything else I'm sure it's not hardware problem, since other OS on same computer don't have any issues, neither is router since other devices in network from laptops to mobile phones work flawless.
    Relevant info and what I have found so far (not everything is copy/pasted so there may be some typos):
    $less rc.conf (network part)
    eth1="eth1 192.168.1.242 netmask 255.255.255.0 broadcast 192.168.1.255
    INTERFACES=(eth1)
    gateway="default gw 192.168.1.1"
    ROUTES=(gateway)
    $ifconfig
    eth1 Link encap:Ethernet HWaddr 00:D0:B7:5A:7A:A9
    inet addr:192.168.1.242 Bcast:192.168.1.255 Mask:255.255.255.0
    UP BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:380 errors:0 dropped:0 overruns:0 frame:0
    TX packets:380 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:36154 (35.3 Kb) TX bytes:36154 (35.3 Kb)
    $route
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    192.168.1.0 * 255.255.255.0 U 0 0 0 eth1
    default 192.168.1.1 0.0.0.0 UG 0 0 0 eth1
    $ping 192.168.1.1
    PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data
    From 192.168.1.242 icmp_seq=2 Destination Host Unreachable
    So basicly network is dead, can't even ping router, cable connection is detected tho (lights are on). I have tried to restart newtork with /etc/rc.d/network stop/start, nothing. Only clue is dmesg.
    $dmesg
    Linux version 2.6.30-ARCH (root@T-POWA-LX) (gcc version 4.4.1 (GCC) ) #1 SMP PREEMPT Fri Jul 31 07:30:28 CEST 2009
    e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    e100 0000:03:07.0: PCI INT A -> Link[APC2] -> GSI 17 (level, low) -> IRQ 17
    e100 0000:03:07.0: PME# disabled
    e100: eth1: e100_probe: addr 0xfdfff000, irq 17, MAC addr 00:d0:b7:5a:7a:a9
    e100 0000:03:07.0: firmware: requesting e100/d101m_ucode.bin
    ADDRCONF(NETDEV_UP): eth1: link is not ready
    modrope -r e100 and then reloading it doesn't help either, but reboot does (once I had to reboot twice tho).
    Anyone with more clue and ideas then me, it's getting really annoying, it also kill whole KDE plasma-desktop for couple of minutes before plasmoids find out network is really down and I'm not really fan of morning "gamble". I can't pinpoint some hard date/update when this started to happening because like I said it's random but last couple of months should be quite accurate. Thanks in advance.
    EDIT: dmesg when network works:
    tilen@pikmin ~]$ dmesg | grep e100
    pci 0000:03:07.0: Firmware left e100 interrupts enabled; disabling
    e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    e100 0000:03:07.0: PCI INT A -> Link[APC2] -> GSI 17 (level, low) -> IRQ 17
    e100 0000:03:07.0: PME# disabled
    e100: eth0: e100_probe: addr 0xfdfff000, irq 17, MAC addr 00:d0:b7:5a:7a:a9
    Last edited by NoOrdinary (2009-09-05 09:47:20)

    I don't have anything special set at router but I doubt rc.conf play any role. I will try to set it up with dhcp (but I think I have tried that already) if there is any change.
    This morning I had to reboot twice, so new kernel didn't help. Fowler, what network card are you using, also e100 (well or some intel)? I dunno, should this be handed to the kernel team? If it will piss me enough one morning I'll just go and buy a new network card, just wanna be sure that will really solve the problem.
    UPDATE: OK, this is just silly. I remebered I have acctualy onboard LAN so I edited rc.conf and dived into the dust under my desk to move cable and there I found out it was acctual onboard in use all the time Now this dosen't make much sense to me anymore, when I can't get net up all the stuff in dmesg is e100 related. Anyway, I connected network to e100 and rebooted, suprise, same story. Dmesg reported again link was not ready. I edited rc.conf to
    INTERFACES=(eth0 !eth1)
    in case this has anything to do with proper timing at assigning whatever needs to be assigned to network cards at boot so I'm sure just 1 card with all info provided get's kicked in at boot. First reboot after that works, it dosen't prove anything yet but at leat it's some kind of progress in recognising proper cause.
    UPDATE 2: Nah, still happens. Googling for "no link during initialization" show a lot of familiar problems, almost all on nforce motherboards and mine is nforce too. I just don't get it why this mess seperate PCI network card. In any case it's extremely annoying.
    Last edited by NoOrdinary (2009-09-02 11:46:27)

  • M3800 Developer Edition: wifi doesn't work after sleep

    I have an M3800 Developer Edition (2015 model). Ubuntu is factory-installed 14.04, with hardware enablement stack installed. Recently (past 1-2 weeks) wifi doesn't work after sleep (lid closed or open doesn't matter), and only rebooting gets in back. Tried rmmod and modprobe with no success. Has anyone else seen this, and/or are you aware of any open bug(s) for this?
    Relevant ouput:
    lsmod when problem exists:
    iwlmvm                217725  0
    mac80211              652718  1 iwlmvm
    iwlwifi               179412  1 iwlmvm
    cfg80211              494362  3 iwlwifi,mac80211,iwlmvm
    rfkill list when problem exists:
    1: phy0: Wireless LAN
            Soft blocked: no
            Hard blocked: no
    3: hci0: Bluetooth
            Soft blocked: no
            Hard blocked: no
    rmmod the above, then modprobe iwlwifi. Does not fix problem, only rebooting does:
    May  4 08:23:14 jonathan-m3800 kernel: [69089.189614] cfg80211: Calling CRDA to update world regulatory domain
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192181] cfg80211: World regulatory domain updated:
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192184] cfg80211:  DFS Master region: unset
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192185] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192187] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192188] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192189] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192190] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
    May  4 08:23:14 jonathan-m3800 kernel: [69089.192191] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
    May  4 08:23:14 jonathan-m3800 kernel: [69089.204141] Intel(R) Wireless WiFi driver for Linux, in-tree:
    May  4 08:23:14 jonathan-m3800 kernel: [69089.204143] Copyright(c) 2003- 2014 Intel Corporation
    May  4 08:23:14 jonathan-m3800 kernel: [69089.204414] iwlwifi 0000:06:00.0: irq 48 for MSI/MSI-X
    May  4 08:23:14 jonathan-m3800 kernel: [69089.204904] iwlwifi 0000:06:00.0: loaded firmware version 25.228.9.0 op_mode iwlmvm
    May  4 08:23:14 jonathan-m3800 kernel: [69089.207709] iwlwifi 0000:06:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
    May  4 08:23:14 jonathan-m3800 kernel: [69089.207790] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
    May  4 08:23:14 jonathan-m3800 kernel: [69089.208150] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
    May  4 08:23:14 jonathan-m3800 kernel: [69089.392408] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
    May  4 08:23:14 jonathan-m3800 NetworkManager[901]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/wlan0, iface: wlan0)
    May  4 08:23:14 jonathan-m3800 NetworkManager[901]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
    May  4 08:23:14 jonathan-m3800 NetworkManager[901]: <info> (wlan0): using nl80211 for WiFi device control
    May  4 08:23:14 jonathan-m3800 NetworkManager[901]: <info> (wlan0): driver supports Access Point (AP) mode
    May  4 08:23:14 jonathan-m3800 NetworkManager[901]: <info> (wlan0): new 802.11 WiFi device (driver: 'iwlwifi' ifindex: 4)
    May  4 08:23:14 jonathan-m3800 NetworkManager[901]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/2
    May  4 08:23:14 jonathan-m3800 NetworkManager[901]: <info> rfkill5: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/ieee80211/phy0/rfkill5) (driver iwlwifi)
    May  4 08:23:16 jonathan-m3800 ModemManager[852]: <warn>  Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0': not supported by any plugin
    lspci:
    06:00.0 Network controller: Intel Corporation Wireless 7260 (rev 6b)
    After reboot:
    lsmod |grep -i iwl:
    iwlmvm                217725  0
    mac80211              652718  1 iwlmvm
    iwlwifi               179412  1 iwlmvm
    cfg80211              494362  3 iwlwifi,mac80211,iwlmvm
    rfkill list after reboot:
    0: nfc0: NFC
            Soft blocked: no
            Hard blocked: no
    1: phy0: Wireless LAN
            Soft blocked: no
            Hard blocked: no
    2: hci0: Bluetooth
            Soft blocked: no
            Hard blocked: no

    Wi-Fi still not reconnecting after sleep 
    http://forums.macrumors.com/showthread.php?t=1229591

  • I4 push mail doesn't work after update

    My I4 push mail doesn't work after iOS 5 update. I have a mobileme acct and the settings show mail set up for push. Any thoughts?

    Hello amishnik,
    Thank you for your question regarding email on your BlackBerry PlayBook tablet.
    Have you restarted the device and verified that the device is still connected to Wi-Fi? Are you able to browse the internet? If not, try this and let us know the results including any error messages.
    Cheers,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • ITunes doesn't work after upgrade to iOS 6

    iTunes doesn't work after upgrade to iOS 6. The white screen with gray tape above appears, and nothing more happens. Reinstalling/restoring iOS doesn't help. I have contacted support team in my country (Russia) by phone, but they could not solve the problem. Is there downgrade to iOS 5.1.1 available?

    What printer are you using?  Is it listed here:
    http://support.apple.com/kb/ht4356

  • TS4268 FaceTime doesn't work after upgrade to ISO 6.0.1, apple support team has sent an auto reply that doesn't help .... Any suggestion will be appreciated

    FaceTime doesn't work after upgrade to ISO 6.0.1, apple support team has sent an auto reply that doesn't help .... Any suggestion will be appreciated

    Hi AnaMusic,
    It was working perfectly before the upgrade to ISO 6.0.1, but now I can't log in using my apple ID ... I have tried all suggestion from Tom but nothing does work. I keep getting the message "FaceTime can't log in, check your network" is nothing wrong with my network everything else works fine, I can log in into FaceTime using my IPad 2 and my apple ID.
    I'm currently working in Korea, but I bought the IPad in Australia,
    Regards,
    Namur

  • IMac - Display doesn´t work after restart

    My iMac 21 Display doesn´t work after restart. If I turn it off and 1 hour later I want use it again the iMac shows the white screen with the mac logo and then the display goes off. I connected an external display to check if the iMac was ON and with the external display I can login and do everything but the iMac Display doesn´t work .
    If I turn it off and wait 3 or 4 hours  and then turn it back on the display works OK.
    This is very strange behavior I have spent hours and hours trying to fine the solution or a similar issue but nothing so I am looking help here at apple.com
    BTW When I bougth the iMac 21 there were some spots over the display so the display was replaced by the provider. The warranty has expired by now.

    To tell you the truth, I don't know if they have to repalce the LCD panel or what they do for a bad backlight. In this reality of block or assembly replacement it probably involves repalcing the panel and not the backlight component. Don't know what it would cost. You'd have to ask that of a service center.

  • Touch ID doesn't work after ios 7.1.1 update

    Touch id doesn't work after ios 7.1.1 update..
    Why????

    After IOS update, you first have to use passcode.
    Passcode is needed when
    After restarting your iPhone 5s
    When more than 48 hours have elapsed from the last time you unlocked your iPhone 5s
    To enter the Touch ID & Passcode setting

  • Mail server doesn't work after upgrading from SL to ML

    My Mail server doesn't work after upgrading from SL to ML
    Mail client connects with the Mail Server wich seems to run but then they can't receive any email...
    the problem seems to be related with dovecot ... in my smtp log i get this:
    relay=dovecot, delay=324, delays=324/0.02/0/0.01, dsn=4.3.0, status=deferred (temporary failure. Command output: pipe: fatal: pipe_command: execvp /usr/libexec/dovecot/deliver: Permission denied
    I have to say that in the usr/libexec there wasn't the dovecot directory so I just tried to create one but with no luck
    Any Ideas?
    Cheers
    Carlo
    This is my postconf -n info:
    server:Data admin$ postconf -n
    biff = no
    command_directory = /usr/sbin
    config_directory = /Library/Server/Mail/Config/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    data_directory = /Library/Server/Mail/Data/mta
    debug_peer_level = 2
    debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin xxgdb $daemon_directory/$process_name $process_id & sleep 5
    dovecot_destination_recipient_limit = 1
    enable_server_options = yes
    header_checks = pcre:/etc/postfix/custom_header_checks
    html_directory = /usr/share/doc/postfix/html
    imap_submit_cred_file = /Library/Server/Mail/Config/postfix/submit.cred
    inet_interfaces = all
    inet_protocols = ipv4
    mail_owner = _postfix
    mailbox_size_limit = 0
    mailbox_transport =
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    maps_rbl_domains =
    message_size_limit = 20971520
    mydestination = $myhostname, localhost.$mydomain, localhost
    mydomain = moremoremore.it
    mydomain_fallback = localhost
    myhostname = server.moremoremore.it
    mynetworks = 127.0.0.0/8,192.168.178.0/24
    newaliases_path = /usr/bin/newaliases
    queue_directory = /Library/Server/Mail/Data/spool
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    relayhost = mail.mclink.it
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtp_sasl_auth_enable = no
    smtp_sasl_password_maps =
    smtpd_client_restrictions = permit_mynetworks permit_sasl_authenticated reject_rbl_client zen.spamhaus.org permit
    smtpd_enforce_tls = no
    smtpd_helo_required = yes
    smtpd_helo_restrictions = reject_invalid_helo_hostname reject_non_fqdn_helo_hostname
    smtpd_pw_server_security_options = cram-md5,gssapi
    smtpd_recipient_restrictions = permit_sasl_authenticated permit_mynetworks reject_unauth_destination check_policy_service unix:private/policy permit
    smtpd_sasl_auth_enable = yes
    smtpd_tls_CAfile = /etc/certificates/server.moremoremore.it.A358901573EE7B9B4D489725407934780D24D5 36.chain.pem
    smtpd_tls_cert_file = /etc/certificates/server.moremoremore.it.A358901573EE7B9B4D489725407934780D24D5 36.cert.pem
    smtpd_tls_exclude_ciphers = SSLv2, aNULL, ADH, eNULL
    smtpd_tls_key_file = /etc/certificates/server.moremoremore.it.A358901573EE7B9B4D489725407934780D24D5 36.key.pem
    smtpd_use_pw_server = yes
    smtpd_use_tls = yes
    tls_random_source = dev:/dev/urandom
    unknown_local_recipient_reject_code = 550
    virtual_alias_maps =
    server:Data admin$

    if this could help:
    mail:setStateVersion = 1
    mail:readWriteSettingsVersion = 1
    mail:connectionCount = 11
    mail:servicePortsRestrictionInfo = _empty_array
    mail:protocolsArray:_array_index:0:status = "ON"
    mail:protocolsArray:_array_index:0:kind = "INCOMING"
    mail:protocolsArray:_array_index:0:protocol = "IMAP"
    mail:protocolsArray:_array_index:0:state = "RUNNING"
    mail:protocolsArray:_array_index:0:error = ""
    mail:protocolsArray:_array_index:1:status = "ON"
    mail:protocolsArray:_array_index:1:kind = "INCOMING"
    mail:protocolsArray:_array_index:1:protocol = "POP3"
    mail:protocolsArray:_array_index:1:state = "RUNNING"
    mail:protocolsArray:_array_index:1:error = ""
    mail:protocolsArray:_array_index:2:status = "ON"
    mail:protocolsArray:_array_index:2:kind = "INCOMING"
    mail:protocolsArray:_array_index:2:protocol = "SMTP"
    mail:protocolsArray:_array_index:2:state = "RUNNING"
    mail:protocolsArray:_array_index:2:error = ""
    mail:protocolsArray:_array_index:3:status = "ON"
    mail:protocolsArray:_array_index:3:kind = "OUTGOING"
    mail:protocolsArray:_array_index:3:protocol = "SMTP"
    mail:protocolsArray:_array_index:3:state = "RUNNING"
    mail:protocolsArray:_array_index:3:error = ""
    mail:protocolsArray:_array_index:4:status = "OFF"
    mail:protocolsArray:_array_index:4:kind = "INCOMING"
    mail:protocolsArray:_array_index:4:protocol = "Junk_mail_filter"
    mail:protocolsArray:_array_index:4:state = "STOPPED"
    mail:protocolsArray:_array_index:4:error = ""
    mail:protocolsArray:_array_index:5:status = "OFF"
    mail:protocolsArray:_array_index:5:kind = "INCOMING"
    mail:protocolsArray:_array_index:5:protocol = "Virus_scanner"
    mail:protocolsArray:_array_index:5:state = "STOPPED"
    mail:protocolsArray:_array_index:5:error = ""
    mail:startedTime = "2013-01-21 21:18:32 +0000"
    mail:logPaths:IMAP Log = "/Library/Logs/Mail/mailaccess.log"
    mail:logPaths:Server Log = "/Library/Logs/Mail/mailaccess.log"
    mail:logPaths:POP Log = "/Library/Logs/Mail/mailaccess.log"
    mail:logPaths:SMTP Log = "/var/log/mail.log"
    mail:logPaths:Migration Log = "/Library/Logs/MailMigration.log"
    mail:logPaths:Virus Log = "/Library/Logs/Mail/clamav.log"
    mail:logPaths:Amavisd Log = "/Library/Logs/Mail/amavis.log"
    mail:logPaths:Virus DB Log = "/Library/Logs/Mail/freshclam.log"
    mail:imapStartedTime = "2013-01-21 21:18:34 +0000"
    mail:servicePortsAreRestricted = "NO"
    mail:state = "RUNNING"
    mail:postfixStartedTime = "2013-01-21 21:18:32 +0000"

  • Why tethering with USB cable doesn't work after IOS6.0 update?

    why tethering with USB cable doesn't work after IOS 6.0 update?

    Try updating the carrier settings, if that doesn't do it try following along with this Apple doc -> iOS: Troubleshooting Personal Hotspot

Maybe you are looking for

  • Installing Yosemite on iMac 2013 hangs with status bar midway

    Trying to install Yosemite, but screen just displays a white screen with apple logo and the status bar is around 50 % been running for about 4.5 hrs, will leave overnight, but then what if no joy. I Thought that Apple was good over these types of thi

  • How to update my Apple IPad II to 7.1.1.

    How to update my Apple IPad from 4.0 to 7.1.1?

  • 2-Sided Booklet printing: any trick to tweak a Ricoh printer?

    We've just recently switched to the newest iMacs, and upgraded to Adobe CS4 at the same time. We have two Ricoh printers we use: an Afico MP7000 and an Afico MP C2500. We can print double-sided A3 booklets on the 7000. We cannot on the 2500. We're us

  • FLBP program gives an Error message

    Hi, I am using Lock box User Exit EXIT_RFEBLB20_001 and EXIT_RFEBLB20_002 to modify T_AVIP and create some entries in T_AVIR based on some conditions. Now when we run through Dev Client 800 which is for Testing it works fine. But when we run through

  • IPhoto to iPhoto transfer (direct)

    I have a G4 laptop and would like to transfer some picture folders from my G5 to it directly from iPhoto to iPhoto. I know I can do it through Finder etc. but would like to know if there is a more elegant method as described.The two machines are obvi