[SOLVED] iptables chain's bytes counting problem

Can somebody explain me what is wrong? I've got this code:
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F
iptables -X
iptables -N traffic-output
iptables -F traffic-output
iptables -N all-traffic
iptables -F all-traffic
iptables -N ssh-traffic
iptables -F ssh-traffic
iptables -N www-traffic
iptables -F www-traffic
iptables -N smb139-traffic
iptables -F smb139-traffic
iptables -N smb445-traffic
iptables -F smb445-traffic
iptables -A INPUT -j all-traffic
iptables -A OUTPUT -j all-traffic
iptables -A all-traffic -j traffic-output
iptables -A INPUT -p tcp --dport 22 -j ssh-traffic
iptables -A OUTPUT -p tcp --sport 22 -j ssh-traffic
iptables -A ssh-traffic -j traffic-output
iptables -A INPUT -p tcp --dport 80 -j www-traffic
iptables -A OUTPUT -p tcp --sport 80 -j www-traffic
iptables -A www-traffic -j traffic-output
iptables -A INPUT -p tcp --dport 139 -j smb139-traffic
iptables -A OUTPUT -p tcp --sport 139 -j smb139-traffic
iptables -A smb139-traffic -j traffic-output
iptables -A INPUT -p tcp --dport 445 -j smb445-traffic
iptables -A OUTPUT -p tcp --sport 445 -j smb445-traffic
iptables -A smb445-traffic -j traffic-output
On Debian with iptables 1.4.14 that code works - that means every chain counts data
On Arch with iptables 1.4.19.1 - doesnt work. Only chain "all-traffic" is counted
On Centos with iptables 1.4.7 the same problem as in Arch
Last edited by koralgolek (2013-09-03 09:57:47)

I dont know how does exactly this work but "traffic-output" is assistant I think. Without it I can't count traffic by
ALL=`${GREP_BIN} -A 2 "Chain all-traffic" ${LOGPATH}/tmpfile | ${TAIL_BIN} -n 1 | ${AWK_BIN} '{print $2}'`
echo -n "$ALL" > ${LOGPATH}/all-traffic
Chain INPUT (policy ACCEPT 22667586 packets, 14171167058 bytes)
pkts bytes target prot opt in out source destination
22667586 14171167058 all-traffic all -- * * 0.0.0.0/0 0.0.0.0/0
0 0 ssh-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22
6708132 6335579351 www-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:80
0 0 ftp-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:20
207290 184172880 radio-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:8000
0 0 gre-traffic 47 -- * * 0.0.0.0/0 0.0.0.0/0
861845 127458416 udp-traffic udp -- * * 0.0.0.0/0 0.0.0.0/0
Chain FORWARD (policy ACCEPT 9952226 packets, 1190096720 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 25693737 packets, 16639842951 bytes)
pkts bytes target prot opt in out source destination
0 0 ssh-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:22
5755417 903418420 www-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80
0 0 ftp-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:20
201706 10553522 radio-traffic tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:8000
0 0 gre-traffic 47 -- * * 0.0.0.0/0 0.0.0.0/0
488561 34544719 udp-traffic udp -- * * 0.0.0.0/0 0.0.0.0/0
Chain all-traffic (1 references)
pkts bytes target prot opt in out source destination
22667586 14171167058 traffic-output all -- * * 0.0.0.0/0 0.0.0.0/0
Chain ftp-traffic (2 references)
pkts bytes target prot opt in out source destination
0 0 traffic-output all -- * * 0.0.0.0/0 0.0.0.0/0
Chain gre-traffic (2 references)
pkts bytes target prot opt in out source destination
0 0 traffic-output all -- * * 0.0.0.0/0 0.0.0.0/0
Chain radio-traffic (2 references)
pkts bytes target prot opt in out source destination
408996 194726402 traffic-output all -- * * 0.0.0.0/0 0.0.0.0/0
Chain ssh-traffic (2 references)
pkts bytes target prot opt in out source destination
0 0 traffic-output all -- * * 0.0.0.0/0 0.0.0.0/0
Chain traffic-output (7 references)
pkts bytes target prot opt in out source destination
Chain udp-traffic (2 references)
pkts bytes target prot opt in out source destination
1350406 162003135 traffic-output all -- * * 0.0.0.0/0 0.0.0.0/0
Chain www-traffic (2 references)
pkts bytes target prot opt in out source destination
12463549 7238997771 traffic-output all -- * * 0.0.0.0/0 0.0.0.0/0
When I remove traffic-output then every chain at the bottom looks like the traffic-output in example above (there is empty line, without even 0)

Similar Messages

  • Bytes Pending Problem still Prevails;

              Sorry to say that my byte pending problem is still around.
              There are
              no applications exceptions.
              no runtime exceptions.
              I also made sure that the deployment discriptor declares the TX boundry as NEVER
              The problem that I see at the moment is that once NotificationMDB goes out of commision
              (meaning bytes pending starts increasing) even if I reddeploy the jar file. Message
              on reaching the notification topic do not fire the MDB's
              Could somebody explain possible reasons for this behavior.
              Also I have another process that subscibes to the same topic. but that only takes
              effect when i am communicating with my system sysnchronously.
              Here is the deployment discriptor for
              NotificationMDB-ejb-jar.xml
              <ejb-jar>
              <enterprise-beans>
              <message-driven>
              <ejb-name>NotificationMDB</ejb-name>
              <ejb-class>mypackage.NotificationMDB</ejb-class>
              <transaction-type>Container</transaction-type>
              <message-driven-destination>
              <destination-type>javax.jms.Topic</destination-type>
              </message-driven-destination>
              </message-driven>
              </enterprise-beans>
              <assembly-descriptor>
                   <container-transaction>
                        <method>
                             <ejb-name>NotificationMDB</ejb-name>
                             <method-name>*</method-name>
                        </method>
                   <trans-attribute>Never</trans-attribute>
                   </container-transaction>
              </assembly-descriptor>
              </ejb-jar>
              and
              NotificationMDB-weblogic-ejb-jar.xml
              <weblogic-ejb-jar>
              <weblogic-enterprise-bean>
              <ejb-name>NotificationMDB</ejb-name>
              <message-driven-descriptor>
              <pool>
              <max-beans-in-free-pool>200</max-beans-in-free-pool>
              <initial-beans-in-free-pool>200</initial-beans-in-free-pool>
              </pool>
              <destination-jndi-name>mysystem.jms.notificationTopic</destination-jndi-name>
              <connection-factory-jndi-name>mysystem.jms.notificationFactory</connection-factory-jndi-name>
              </message-driven-descriptor>
              <jndi-name>mysystem.jms.NotificationMDB</jndi-name>
              </weblogic-enterprise-bean>
              </weblogic-ejb-jar>
              

              Hi christian.
              you were right switching to sp2 solved the bytes pending problem on my topic
              thanks for your help
              Christian Buchegger <[email protected]> wrote:
              >Hi,
              >
              >
              >what version of WLS are you using ? Please check if this could be issue
              >061783 as documented at:
              >http://e-docs.bea.com/wls/docs61/notes/bugfixes2.html#1143510
              >and which is fixed with WLS6.1SP2. Otherwise consider to open as case with
              >BEA Support.
              >
              >
              >Regards,
              >Christian Buchegger
              >Developer Relations Engineer
              >BEA Support
              >
              >
              >Mekaiel Hussain schrieb:
              >
              >> Sorry to say that my byte pending problem is still around.
              >>
              >> There are
              >> no applications exceptions.
              >> no runtime exceptions.
              >> I also made sure that the deployment discriptor declares the TX boundry
              >as NEVER
              >>
              >> The problem that I see at the moment is that once NotificationMDB goes
              >out of commision
              >> (meaning bytes pending starts increasing) even if I reddeploy the jar
              >file. Message
              >> on reaching the notification topic do not fire the MDB's
              >>
              >> Could somebody explain possible reasons for this behavior.
              >>
              >> Also I have another process that subscibes to the same topic. but that
              >only takes
              >> effect when i am communicating with my system sysnchronously.
              >>
              >> Here is the deployment discriptor for
              >>
              >> NotificationMDB-ejb-jar.xml
              >>
              >> <ejb-jar>
              >> <enterprise-beans>
              >> <message-driven>
              >> <ejb-name>NotificationMDB</ejb-name>
              >> <ejb-class>mypackage.NotificationMDB</ejb-class>
              >> <transaction-type>Container</transaction-type>
              >> <message-driven-destination>
              >> <destination-type>javax.jms.Topic</destination-type>
              >> </message-driven-destination>
              >> </message-driven>
              >> </enterprise-beans>
              >>
              >> <assembly-descriptor>
              >> <container-transaction>
              >> <method>
              >> <ejb-name>NotificationMDB</ejb-name>
              >> <method-name>*</method-name>
              >> </method>
              >> <trans-attribute>Never</trans-attribute>
              >> </container-transaction>
              >> </assembly-descriptor>
              >>
              >>
              >> </ejb-jar>
              >>
              >> and
              >>
              >> NotificationMDB-weblogic-ejb-jar.xml
              >>
              >> <weblogic-ejb-jar>
              >> <weblogic-enterprise-bean>
              >> <ejb-name>NotificationMDB</ejb-name>
              >> <message-driven-descriptor>
              >> <pool>
              >> <max-beans-in-free-pool>200</max-beans-in-free-pool>
              >> <initial-beans-in-free-pool>200</initial-beans-in-free-pool>
              >> </pool>
              >> <destination-jndi-name>mysystem.jms.notificationTopic</destination-jndi-name>
              >> <connection-factory-jndi-name>mysystem.jms.notificationFactory</connection-factory-jndi-name>
              >> </message-driven-descriptor>
              >> <jndi-name>mysystem.jms.NotificationMDB</jndi-name>
              >> </weblogic-enterprise-bean>
              >> </weblogic-ejb-jar>
              >
              

  • LabVIEW VISA Read Byte Count Limitation​s

    I have written a program that acquires and analyzes data from the Tektronix TDS3032B oscilloscope. The scope can transfer either 500 or 10,000 points. However, it seems the VISA Read function (I am using LabView 6.0.2) is unable of reading enough bytes to receive the entire data string. I am almost certain that this is not a timeout issue because I can set the timeout extremely high and still get the same behavior. What would be the best way to fix this problem?

    I assume that you receive a timeout error when trying to read a big string (many points). Did you try one reading with a low byte count, less than the length of the expected string? ... or fast consecutive readings ?
    If you are able to receive parts from the expected string, the problem looks to be buffer related. Thus, you can try to use "VISA Advanced > Interface Specific > Set I/O Buffer Size" to set enough room for a large string.
    Hope this helps

  • Byte count difference between Unix and Windows

    Hi,
    I use sun.net.ftp.FtpClient to transfer files from a windows machine to a unix server.
    The transfer works fine.
    However, due to a problem I had a few days ago with the file not completing it's transfer but no side (not my FtpClient object nor the UNIX Ftp server) has thrown an exception or reported an error, I need to verify the transfer is complete.
    from the byte count I see that on my machine, the file size is 120743 bytes, and on the server side it's 121047 bytes.
    The file has 14172 records, when the last one is an empty line.
    There is a 304 bytes difference between the 2 reports.
    I downloaded the file I transferred there manually and compared the 2 and they match.
    How can I know from my program if the transfer is complete?
    Thanks,
    Omer.

    The file size isn't 304 byte, that's the difference between the 2 files.
    I use FtpClient.binary() to set the mode to binary prior to sending the file.
    The file has 14172 records which should add up to a total difference of 14172 bytes (maybe 1 or 2 more if there is a difference in the EOF), but not 304.
    here's the code:
    putClient=new FtpClient(host, port); //initialize the client object
    putClient.login(user, password);
    putClient.binary(); //set transfer mode to binary
    putClient.cd(remotePath); //change directory to the target one
    FileInputStream fileIn=new FileInputStream(sourcePath + File.separator + sourceFileName);
    long fileSize=fileIn.getChannel().size(); //get the size of the file
    TelnetOutputStream telnetOut=putClient.put(remoteFileName);//acquire an input stream from the server
    byte[] byteBuff=new byte[8192]; //8 kb buffer
    int readSuccesfull=0;
    while((readSuccesfull=fileIn.read(byteBuff))!=-1){ // now transfer the file
    telnetOut.write(byteBuff, 0, readSuccesfull);
    totalByetsSent+=readSuccesfull;
    fileIn.close();//release the file stream resource
    TelnetInputStream inStream = putClient.list(); // acquire a stream for verifying the file was received
    /* now I read the lines of the list() command and parse the lines for the size and date and I get that the file that I sent has a size of 121047, and the line that represents it is this:
    -rwxrwxrwx   1 owner    group          121047 Jan 10 17:49 ivory.txt
    However, the size from my machine's report is 120743 which I get from the fileSize variable*/According to what has been said here, and to my intuition, the size on UNIX should be smaller than the size on Windows, but yet, it's not the case.
    This would add up fine if the file that I downloaded from the server wouldn't match the file that I sent, but they do.
    I'm pretty much a noob at developing and even more a noob at Java, so there is a very good chance that I do something wrong here, could be with the use of the FileChannel.size() method usage.
    Thanks.

  • How to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    how to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    Because it was not possible to apply a gradient to a stroke in CS5. When you open the file in CS5, it is reduced to something that can be rendered in CS5.

  • Help me for solve this Question this is my problem

    help me for solve this Question this is my problem
    i installed EBS 11i fresh not vision
    i did cart of account and did set of book
    then assigned it with profile option gl set of books name
    and when enter to make ajournal appeare this messege
    [http://www9.0zz0.com/2009/10/06/03/232202588.jpg]
    [http://www9.0zz0.com/2009/10/06/03/634050066.jpg]

    Hi,
    Not sure why are you getting this kind of error (which is pointing to a URL with Jpg file) while creating a journal.
    Could you please bounce your server once and try..
    Please let us know if the error/warning stopping you to enter a journal in GL??
    We don't think profile option is a show stopper here.... We assume that you have assigned Sets of Books, MO: Operating unit & HR USer Profile option at Responsibility level correctly....
    Regards,
    S.P DASH

  • VISA byte count

    In a vi, I am using VISA write to check the byte count at port (I send 32 to VISA write).
    When I was in LV 6.1 I did not have any issue. I am now working on LV 7.0 and sometimes I did have 10 bytes at port instead of 8 expected. This is a RS232 connection.
    Since I am doing a loop to check that it is 8 bytes, it is then failing.

    Hello Quimper,
    If you use the same program without any modification, you should receive the same response.
    Just be careful because the VIs like "Serial Port Write" and "Serial Port Read" do not exist any more in LabVIEW 7.
    That's why, I suggest you to use VISA functions.
    Regards,
    Sanaa T
    National Instruments
    Sanaa T.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> http://www.nidays.fr/images/081110_ban_nidays09_468X60.gif

  • Solution: Play count problem

    As many others I had the play count problem with my iPod Shuffle which suddenly stopped working.
    The solution sounds boring but seems to work: the iPod seems to be pretty inflexible, but you have to follow a precise routine to keep it working after you have reset it:
    1) click 'eject' before tacking the iPod of the charger
    2) switch on
    3) start
    4) listen
    5) stop
    6) switch off
    7) insert in charger in 'switched off' mode
    Since I don't shortcut any of these steps, I don't have the count problem anymore.

    Unfortunately, this did not work for me. I tried chatting with Apple support about the issue and they suggested I call support. They had me re-install iTunes, but that did not correct the problem. Since my wife's Shuffle was updating the Play Count and Last Played correctly on her computer, I thought I would try on her computer. However, she has a older version of iTunes and it would not sync with my Shuffle. I then connected my Shuffle to my Son's laptop since he has the latest version of iTunes. iTunes required me to Erase and Sync on his computer. I did this, loaded up a few short songs, played them, and then sync'd back to his computer. It worked! I then sync'd my Shuffle with my computer (Erase and Sync, etc.) and it worked there as well!
    I'm not sure what part of that process actually corrected the problem, but thought I would post this in case it helps someone else.

  • [svn:fx-trunk] 14462: Quick fix to ensure total byte counts are accurate for -size-report.

    Revision: 14462
    Revision: 14462
    Author:   [email protected]
    Date:     2010-02-26 14:11:20 -0800 (Fri, 26 Feb 2010)
    Log Message:
    Quick fix to ensure total byte counts are accurate for -size-report.
    QE notes: None
    Doc notes: None
    Bugs: SDK-25600
    Reviewer: Paul
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25600
    Modified Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SizeReport.java

    If this is textual input (as in a CSV file), you wouldn't use a DataInputStream or DataOutputStream. Use FileReader and FileWriter objects instead.
    Actually, unless this is a homework assignment that tells you to write it yourself, you should just use a library that can parse and format CSV files and just use that.
    My battle plan is to count the number of rows and commas. I would then use these counts in my subsequent loops. Why? What is the purpose of those counts?
    Personally, I'd suggest that you start by writing a method that does the changes you need on a single line of input. (The changes you describe sound like they can all happen on a per-line basis.) Write lots of unit tests to try out various inputs and that you get the correct outputs, given the changes you say you need on a given line.
    When you're done with that and have it working perfectly, then you can write the code to read a file, loop through it, call the method that fixes a single line, and then output that line.

  • Byte count for audio file stream

    I am using the following to determine the byte count of an audio file stream (for an iphone app):
    UInt32 bCount;
    UInt32 bSize = sizeof(bCount);
    err = AudioFileStreamGetProperty(inAudioFileStream, kAudioFileStreamProperty_AudioDataByteCount, &bSize, &bCount);
    if (err) { PRINTERROR("get kAudioFileStreamProperty_AudioDataByteCount"); } else {
    NSLog(@"************************%d", bCount);
    Unfortunately, most of the audio files I am accessing do not have this data available. Is there an alternate way I can determine this... I've tried NSFileManager, but I think that is just for the local file system, not mp3's out on the web... so it returns null...
    My intention is to implement a progressview, so I need the file length.

    check out
    https://devforums.apple.com/message/52205#52205

  • How do I solve this distinct count problem?

    Hello experts,
      So, I have an OBI report (table view).  I needed to get the percentage difference btn 2 columns, I did. Then I had to summarize difference in 4 buckets (0-15, 16-30, 31-50, >50%); I did (case statement). NOW,  I need to summarize(distinct count) the above buckets based on Store numbers for each day.
    Basically, if the difference is btn(0-5%) and I have 5 stores then I need to see 5 stores separately. The problem I am having when I do the distinct count instead of having separate counts for each bucket I am getting the total.  I see the buckets summarized, but the store column is showing the total number of all(we have about 700 stores) instead of breaking down the count for each bucket.  In the stores column I am using the distinct count function, I don't know if the problem is here or the case statement for buckets. I don't know either OBIEE is able to do what I trying to do, since I have yet to do this kind of function.  I have gotten few leads on my first post,  so far none of them have worked.
    As always, your insights are highly appreciated,

    Instead of using Distinct Count in Aggregation Rule,Try using in Column Formula.
    Let me know if u need any help on this.
    Thanks,

  • {SOLVED} iptables No chain/target/match by that name.

    I have two laptop (exactly same kernel and everything) and this command :
    iptables -A INPUT -p tcp -m tcp --dport 15678 -j ACCEPT
    Fail on one machine and run on another one without problem.
    iptables 1.4.18-1
    linux 3.9.2-1
    this is my /etc/iptables/iptables.rules (on both laptops) :
    # Generated by iptables-save v1.4.10 on Sun Mar 27 14:58:52 2011
    *filter
    :INPUT ACCEPT [2074481:2388158591]
    :FORWARD ACCEPT [0:0]
    :OUTPUT ACCEPT [1936543:146051200]
    COMMIT
    # Completed on Sun Mar 27 14:58:52 2011
    # Generated by iptables-save v1.4.10 on Sun Mar 27 14:58:52 2011
    *nat
    :PREROUTING ACCEPT [4440:528768]
    :INPUT ACCEPT [2752:365640]
    :OUTPUT ACCEPT [14858:1257918]
    :POSTROUTING ACCEPT [14861:1258098]
    -A PREROUTING -d 10.10.34.34/32 -p tcp -j DNAT --to-destination 127.0.0.1
    -A OUTPUT -d 10.10.34.34/32 -p tcp -j DNAT --to-destination 127.0.0.1
    COMMIT
    # Completed on Sun Mar 27 14:58:52 2011
    # Generated by iptables-save v1.4.10 on Sun Mar 27 14:58:52 2011
    *mangle
    :PREROUTING ACCEPT [2076169:2388321719]
    :INPUT ACCEPT [2074481:2388158591]
    :FORWARD ACCEPT [0:0]
    :OUTPUT ACCEPT [1936543:146051200]
    :POSTROUTING ACCEPT [1942627:147067228]
    COMMIT
    # Completed on Sun Mar 27 14:58:52 2011
    ( as you may know, in my country Iran, they block internet, so I use this rules to block their ip, 10.10.34.34 is that IP) 
    ps - The iptables command is from pacserve. I want to setup pacserve, but in one machine I get this error.
    Last edited by fzerorubigd (2013-05-22 06:19:39)

    Thank you ) It was the problem.

  • [SOLVED]After yesterday's upgrade screen problem

    So, yesterday i have upgraded to the newest kernel and udev. Now, the problem is that (i have XFCE) when laptop goes into "switch off screen" mode (in xfce4-power-manager) i cannot recall the screen back to normal (it remains black). I have to suspend it and wake it up in order the screen is visible/normal again (haven't tried to just kill X).
    /var/log/messages:
    Nov 10 14:42:27 localhost -- MARK --
    Nov 10 15:21:01 localhost -- MARK --
    Nov 10 15:41:01 localhost -- MARK --
    Nov 10 16:12:08 localhost saso: ACPI group/action undefined: hotkey / ATK0100:00
    Nov 10 16:12:08 localhost saso: ACPI group/action undefined: video/switchmode / VMOD
    Nov 10 16:12:10 localhost saso: ACPI group/action undefined: hotkey / ATK0100:00
    Nov 10 16:12:10 localhost saso: ACPI group/action undefined: video/switchmode / VMOD
    Nov 10 16:12:16 localhost acpid: client 1616[0:100] has disconnected
    Nov 10 16:12:23 localhost acpid: client connected from 1616[0:100]
    Nov 10 16:12:23 localhost acpid: 1 client rule loaded
    Nov 10 16:12:27 localhost kernel: [44163.481659] EXT4-fs (sda1): re-mounted. Opts: commit=0
    Nov 10 16:12:27 localhost kernel: [44163.489933] EXT4-fs (sda2): re-mounted. Opts: commit=0
    Nov 10 16:12:27 localhost kernel: [44163.499653] EXT4-fs (sda3): re-mounted. Opts: commit=0
    Nov 10 16:12:28 localhost dhcpcd[5940]: sending signal 1 to pid 5326
    Nov 10 16:12:28 localhost dhcpcd[5940]: waiting for pid 5326 to exit
    Nov 10 16:12:28 localhost dhcpcd[5326]: received SIGHUP, releasing
    Nov 10 16:12:28 localhost dhcpcd[5326]: wlan0: releasing lease of 192.168.1.3
    Nov 10 16:12:28 localhost dhcpcd[5326]: wlan0: removing interface
    Nov 10 16:12:28 localhost kernel: [44164.828910] cfg80211: Calling CRDA to update world regulatory domain
    Nov 10 16:12:28 localhost kernel: [44164.913810] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:28 localhost kernel: [44164.994702] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Nov 10 16:12:28 localhost kernel: [44165.101603] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:28 localhost kernel: [44165.162838] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Nov 10 16:12:41 localhost kernel: [44165.504492] PM: Syncing filesystems ... done.
    Nov 10 16:12:41 localhost kernel: [44165.510675] Freezing user space processes ... (elapsed 0.01 seconds) done.
    Nov 10 16:12:41 localhost kernel: [44165.522325] Freezing remaining freezable tasks ... (elapsed 1.09 seconds) done.
    Nov 10 16:12:41 localhost kernel: [44166.615763] Suspending console(s) (use no_console_suspend to debug)
    Nov 10 16:12:41 localhost kernel: [44166.616477] sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Nov 10 16:12:41 localhost kernel: [44166.629860] sd 0:0:0:0: [sda] Stopping disk
    Nov 10 16:12:41 localhost kernel: [44166.642540] ATL1E 0000:03:00.0: PCI INT A disabled
    Nov 10 16:12:41 localhost kernel: [44166.732640] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
    Nov 10 16:12:41 localhost kernel: [44167.018971] PM: suspend of devices complete after 402.827 msecs
    Nov 10 16:12:41 localhost kernel: [44167.059129] PM: late suspend of devices complete after 40.150 msecs
    Nov 10 16:12:41 localhost kernel: [44167.059309] ACPI: Preparing to enter system sleep state S3
    Nov 10 16:12:41 localhost kernel: [44167.257307] PM: Saving platform NVS memory
    Nov 10 16:12:41 localhost kernel: [44167.257797] Disabling non-boot CPUs ...
    Nov 10 16:12:41 localhost kernel: [44167.259218] CPU 1 is now offline
    Nov 10 16:12:41 localhost kernel: [44167.259707] Extended CMOS year: 2000
    Nov 10 16:12:41 localhost kernel: [44167.259707] ACPI: Low-level resume complete
    Nov 10 16:12:41 localhost kernel: [44167.259707] PM: Restoring platform NVS memory
    Nov 10 16:12:41 localhost kernel: [44167.259707] Extended CMOS year: 2000
    Nov 10 16:12:41 localhost kernel: [44167.259707] Enabling non-boot CPUs ...
    Nov 10 16:12:41 localhost kernel: [44167.266546] Booting Node 0 Processor 1 APIC 0x1
    Nov 10 16:12:41 localhost kernel: [44167.259183] Initializing CPU#1
    Nov 10 16:12:41 localhost kernel: [44167.259183] Calibrating delay loop (skipped) already calibrated this CPU
    Nov 10 16:12:41 localhost kernel: [44167.277996] NMI watchdog enabled, takes one hw-pmu counter.
    Nov 10 16:12:41 localhost kernel: [44167.278933] Switched to NOHz mode on CPU #1
    Nov 10 16:12:41 localhost kernel: [44167.282318] CPU1 is up
    Nov 10 16:12:42 localhost kernel: [44167.283293] ACPI: Waking up from system sleep state S3
    Nov 10 16:12:42 localhost kernel: [44168.297514] PM: early resume of devices complete after 1.403 msecs
    Nov 10 16:12:42 localhost kernel: [44168.297649] usb usb3: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.297719] usb usb4: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.297793] usb usb5: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.299179] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Nov 10 16:12:42 localhost kernel: [44168.299334] usb usb6: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.299374] usb usb7: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.299413] usb usb8: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.305605] ATL1E 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Nov 10 16:12:42 localhost kernel: [44168.355074] Extended CMOS year: 2000
    Nov 10 16:12:42 localhost kernel: [44168.362432] sd 0:0:0:0: [sda] Starting disk
    Nov 10 16:12:42 localhost kernel: [44168.632301] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Nov 10 16:12:42 localhost kernel: [44168.655037] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44168.685480] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44168.698272] ata2.00: configured for UDMA/100
    Nov 10 16:12:42 localhost kernel: [44168.815660] usb 6-2: reset low speed USB device number 3 using uhci_hcd
    Nov 10 16:12:42 localhost kernel: [44170.172346] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Nov 10 16:12:42 localhost kernel: [44170.174103] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.174434] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.178450] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.178782] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.180642] ata1.00: configured for UDMA/133
    Nov 10 16:12:42 localhost kernel: [44170.224518] PM: resume of devices complete after 1926.927 msecs
    Nov 10 16:12:42 localhost kernel: [44170.224850] Restarting tasks ... done.
    Nov 10 16:12:42 localhost kernel: [44170.238561] video LNXVIDEO:00: Restoring backlight state
    Nov 10 16:12:45 localhost kernel: [44173.423488] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:45 localhost laptop-mode: Laptop mode
    Nov 10 16:12:45 localhost laptop-mode: enabled, not active
    Nov 10 16:12:46 localhost kernel: [44174.630668] CE: hpet increased min_delta_ns to 30169 nsec
    Nov 10 16:12:46 localhost kernel: [44174.885331] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:46 localhost kernel: [44174.928328] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Nov 10 16:12:46 localhost kernel: [44175.030767] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:47 localhost kernel: [44175.496506] EXT4-fs (sda1): re-mounted. Opts: commit=0
    Nov 10 16:12:47 localhost kernel: [44175.704900] EXT4-fs (sda2): re-mounted. Opts: commit=0
    Nov 10 16:12:47 localhost kernel: [44175.708047] EXT4-fs (sda3): re-mounted. Opts: commit=0
    Nov 10 16:12:47 localhost acpid: client 1616[0:100] has disconnected
    Nov 10 16:12:47 localhost saso: ACPI group/action undefined: processor / LNXCPU:00
    Nov 10 16:12:47 localhost acpid: client connected from 1616[0:100]
    Nov 10 16:12:47 localhost acpid: 1 client rule loaded
    Nov 10 16:12:47 localhost saso: ACPI group/action undefined: processor / LNXCPU:01
    Nov 10 16:12:47 localhost laptop-mode: Laptop mode
    Nov 10 16:12:47 localhost laptop-mode: enabled,
    Nov 10 16:12:47 localhost laptop-mode: not active [unchanged]
    Nov 10 16:12:47 localhost saso: ACPI action undefined: PNP0C0A:00
    Nov 10 16:12:47 localhost laptop-mode: Laptop mode
    Nov 10 16:12:47 localhost laptop-mode: enabled,
    Nov 10 16:12:47 localhost laptop-mode: not active [unchanged]
    Nov 10 16:12:49 localhost kernel: [44177.453758] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    Nov 10 16:12:49 localhost dhcpcd[6755]: version 5.2.12 starting
    Nov 10 16:12:50 localhost dhcpcd[6755]: wlan0: broadcasting for a lease
    Nov 10 16:12:50 localhost dhcpcd[6755]: wlan0: offered 192.168.1.3 from 192.168.1.1
    Nov 10 16:12:50 localhost dhcpcd[6755]: wlan0: acknowledged 192.168.1.3 from 192.168.1.1
    Nov 10 16:12:50 localhost dhcpcd[6755]: wlan0: checking for 192.168.1.3
    Nov 10 16:12:55 localhost dhcpcd[6755]: wlan0: leased 192.168.1.3 for 86400 seconds
    Nov 10 16:12:55 localhost dhcpcd[6755]: forked to background, child pid 6778
    /var/log/kernel.log:
    Nov 10 13:29:37 localhost kernel: [34393.536524] oosplash.bin[28937]: segfault at 4d0 ip b779fa1b sp bf9ffbe0 error 4 in libX11.so.6.3.0[b776c000+132000]
    Nov 10 16:12:27 localhost kernel: [44163.481659] EXT4-fs (sda1): re-mounted. Opts: commit=0
    Nov 10 16:12:27 localhost kernel: [44163.489933] EXT4-fs (sda2): re-mounted. Opts: commit=0
    Nov 10 16:12:27 localhost kernel: [44163.499653] EXT4-fs (sda3): re-mounted. Opts: commit=0
    Nov 10 16:12:28 localhost kernel: [44164.769066] wlan0: deauthenticating from 00:1d:60:19:9c:51 by local choice (reason=3)
    Nov 10 16:12:28 localhost kernel: [44164.828910] cfg80211: Calling CRDA to update world regulatory domain
    Nov 10 16:12:28 localhost kernel: [44164.913810] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:28 localhost kernel: [44164.994333] ATL1E 0000:03:00.0: irq 46 for MSI/MSI-X
    Nov 10 16:12:28 localhost kernel: [44164.994702] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Nov 10 16:12:28 localhost kernel: [44165.101603] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:28 localhost kernel: [44165.162190] ATL1E 0000:03:00.0: irq 46 for MSI/MSI-X
    Nov 10 16:12:28 localhost kernel: [44165.162838] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Nov 10 16:12:41 localhost kernel: [44165.504492] PM: Syncing filesystems ... done.
    Nov 10 16:12:41 localhost kernel: [44165.510538] PM: Preparing system for mem sleep
    Nov 10 16:12:41 localhost kernel: [44165.510675] Freezing user space processes ... (elapsed 0.01 seconds) done.
    Nov 10 16:12:41 localhost kernel: [44165.522325] Freezing remaining freezable tasks ... (elapsed 1.09 seconds) done.
    Nov 10 16:12:41 localhost kernel: [44166.615714] PM: Entering mem sleep
    Nov 10 16:12:41 localhost kernel: [44166.615763] Suspending console(s) (use no_console_suspend to debug)
    Nov 10 16:12:41 localhost kernel: [44166.616477] sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Nov 10 16:12:41 localhost kernel: [44166.629860] sd 0:0:0:0: [sda] Stopping disk
    Nov 10 16:12:41 localhost kernel: [44166.642540] ATL1E 0000:03:00.0: PCI INT A disabled
    Nov 10 16:12:41 localhost kernel: [44166.732640] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
    Nov 10 16:12:41 localhost kernel: [44167.018971] PM: suspend of devices complete after 402.827 msecs
    Nov 10 16:12:41 localhost kernel: [44167.059129] PM: late suspend of devices complete after 40.150 msecs
    Nov 10 16:12:41 localhost kernel: [44167.059309] ACPI: Preparing to enter system sleep state S3
    Nov 10 16:12:41 localhost kernel: [44167.257307] PM: Saving platform NVS memory
    Nov 10 16:12:41 localhost kernel: [44167.257797] Disabling non-boot CPUs ...
    Nov 10 16:12:41 localhost kernel: [44167.259218] CPU 1 is now offline
    Nov 10 16:12:41 localhost kernel: [44167.259707] Extended CMOS year: 2000
    Nov 10 16:12:41 localhost kernel: [44167.259707] ACPI: Low-level resume complete
    Nov 10 16:12:41 localhost kernel: [44167.259707] PM: Restoring platform NVS memory
    Nov 10 16:12:41 localhost kernel: [44167.259707] CPU0: Thermal monitoring handled by SMI
    Nov 10 16:12:41 localhost kernel: [44167.259707] Extended CMOS year: 2000
    Nov 10 16:12:41 localhost kernel: [44167.259707] Enabling non-boot CPUs ...
    Nov 10 16:12:41 localhost kernel: [44167.266546] Booting Node 0 Processor 1 APIC 0x1
    Nov 10 16:12:41 localhost kernel: [44167.266548] smpboot cpu 1: start_ip = 93000
    Nov 10 16:12:41 localhost kernel: [44167.259183] Initializing CPU#1
    Nov 10 16:12:41 localhost kernel: [44167.259183] Calibrating delay loop (skipped) already calibrated this CPU
    Nov 10 16:12:41 localhost kernel: [44167.259183] CPU1: Thermal monitoring handled by SMI
    Nov 10 16:12:41 localhost kernel: [44167.277996] NMI watchdog enabled, takes one hw-pmu counter.
    Nov 10 16:12:41 localhost kernel: [44167.278933] Switched to NOHz mode on CPU #1
    Nov 10 16:12:41 localhost kernel: [44167.282318] CPU1 is up
    Nov 10 16:12:42 localhost kernel: [44167.283293] ACPI: Waking up from system sleep state S3
    Nov 10 16:12:42 localhost kernel: [44168.296199] i915 0000:00:02.0: restoring config space at offset 0x8 (was 0x1, writing 0xdc01)
    Nov 10 16:12:42 localhost kernel: [44168.296208] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
    Nov 10 16:12:42 localhost kernel: [44168.296456] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Nov 10 16:12:42 localhost kernel: [44168.296464] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002)
    Nov 10 16:12:42 localhost kernel: [44168.296500] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x20100, writing 0x2010a)
    Nov 10 16:12:42 localhost kernel: [44168.296517] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0)
    Nov 10 16:12:42 localhost kernel: [44168.296528] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    Nov 10 16:12:42 localhost kernel: [44168.296536] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100504)
    Nov 10 16:12:42 localhost kernel: [44168.296592] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x20200, writing 0x20205)
    Nov 10 16:12:42 localhost kernel: [44168.296609] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0)
    Nov 10 16:12:42 localhost kernel: [44168.296620] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    Nov 10 16:12:42 localhost kernel: [44168.296628] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100106, writing 0x100506)
    Nov 10 16:12:42 localhost kernel: [44168.296684] pcieport 0000:00:1c.5: restoring config space at offset 0xf (was 0x20200, writing 0x20205)
    Nov 10 16:12:42 localhost kernel: [44168.296698] pcieport 0000:00:1c.5: restoring config space at offset 0x9 (was 0x1fff1, writing 0x7df17de1)
    Nov 10 16:12:42 localhost kernel: [44168.296712] pcieport 0000:00:1c.5: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    Nov 10 16:12:42 localhost kernel: [44168.296720] pcieport 0000:00:1c.5: restoring config space at offset 0x1 (was 0x100107, writing 0x100507)
    Nov 10 16:12:42 localhost kernel: [44168.297063] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
    Nov 10 16:12:42 localhost kernel: [44168.297137] ath9k 0000:02:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x105)
    Nov 10 16:12:42 localhost kernel: [44168.297165] ath9k 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xfeaf0004)
    Nov 10 16:12:42 localhost kernel: [44168.297172] ath9k 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Nov 10 16:12:42 localhost kernel: [44168.297182] ath9k 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
    Nov 10 16:12:42 localhost kernel: [44168.297234] ATL1E 0000:03:00.0: restoring config space at offset 0xf (was 0x100, writing 0x105)
    Nov 10 16:12:42 localhost kernel: [44168.297265] ATL1E 0000:03:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Nov 10 16:12:42 localhost kernel: [44168.297274] ATL1E 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    Nov 10 16:12:42 localhost kernel: [44168.297514] PM: early resume of devices complete after 1.403 msecs
    Nov 10 16:12:42 localhost kernel: [44168.297614] i915 0000:00:02.0: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.297619] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.297649] usb usb3: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.297692] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.297719] usb usb4: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.297766] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.297793] usb usb5: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.297807] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.299179] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Nov 10 16:12:42 localhost kernel: [44168.299187] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.299238] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
    Nov 10 16:12:42 localhost kernel: [44168.299307] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.299334] usb usb6: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.299347] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.299374] usb usb7: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.299387] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.299413] usb usb8: root hub lost power or was reset
    Nov 10 16:12:42 localhost kernel: [44168.299428] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.299473] pci 0000:00:1e.0: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.299489] ahci 0000:00:1f.2: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.305605] ATL1E 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Nov 10 16:12:42 localhost kernel: [44168.305613] ATL1E 0000:03:00.0: setting latency timer to 64
    Nov 10 16:12:42 localhost kernel: [44168.305680] ATL1E 0000:03:00.0: irq 46 for MSI/MSI-X
    Nov 10 16:12:42 localhost kernel: [44168.355074] Extended CMOS year: 2000
    Nov 10 16:12:42 localhost kernel: [44168.362432] sd 0:0:0:0: [sda] Starting disk
    Nov 10 16:12:42 localhost kernel: [44168.632301] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Nov 10 16:12:42 localhost kernel: [44168.655032] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    Nov 10 16:12:42 localhost kernel: [44168.655037] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44168.685475] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    Nov 10 16:12:42 localhost kernel: [44168.685480] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44168.698272] ata2.00: configured for UDMA/100
    Nov 10 16:12:42 localhost kernel: [44168.815660] usb 6-2: reset low speed USB device number 3 using uhci_hcd
    Nov 10 16:12:42 localhost kernel: [44170.172346] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Nov 10 16:12:42 localhost kernel: [44170.174103] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.174430] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    Nov 10 16:12:42 localhost kernel: [44170.174434] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.178450] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.178777] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    Nov 10 16:12:42 localhost kernel: [44170.178782] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Nov 10 16:12:42 localhost kernel: [44170.180642] ata1.00: configured for UDMA/133
    Nov 10 16:12:42 localhost kernel: [44170.224518] PM: resume of devices complete after 1926.927 msecs
    Nov 10 16:12:42 localhost kernel: [44170.224848] PM: Finishing wakeup.
    Nov 10 16:12:42 localhost kernel: [44170.224850] Restarting tasks ... done.
    Nov 10 16:12:42 localhost kernel: [44170.238561] video LNXVIDEO:00: Restoring backlight state
    Nov 10 16:12:45 localhost kernel: [44173.423488] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:46 localhost kernel: [44174.630668] CE: hpet increased min_delta_ns to 30169 nsec
    Nov 10 16:12:46 localhost kernel: [44174.885331] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:46 localhost kernel: [44174.927923] ATL1E 0000:03:00.0: irq 46 for MSI/MSI-X
    Nov 10 16:12:46 localhost kernel: [44174.928328] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Nov 10 16:12:46 localhost kernel: [44175.030767] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 10 16:12:47 localhost kernel: [44175.496506] EXT4-fs (sda1): re-mounted. Opts: commit=0
    Nov 10 16:12:47 localhost kernel: [44175.704900] EXT4-fs (sda2): re-mounted. Opts: commit=0
    Nov 10 16:12:47 localhost kernel: [44175.708047] EXT4-fs (sda3): re-mounted. Opts: commit=0
    Nov 10 16:12:49 localhost kernel: [44177.448823] wlan0: authenticate with 00:1d:60:19:9c:51 (try 1)
    Nov 10 16:12:49 localhost kernel: [44177.450829] wlan0: authenticated
    Nov 10 16:12:49 localhost kernel: [44177.450861] wlan0: associate with 00:1d:60:19:9c:51 (try 1)
    Nov 10 16:12:49 localhost kernel: [44177.453381] wlan0: RX AssocResp from 00:1d:60:19:9c:51 (capab=0x411 status=0 aid=2)
    Nov 10 16:12:49 localhost kernel: [44177.453385] wlan0: associated
    Nov 10 16:12:49 localhost kernel: [44177.453758] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    Nov 10 16:12:59 localhost kernel: [44188.252291] wlan0: no IPv6 routers present
    Upgraded packages:
    [2011-11-09 12:04] upgraded linux (3.0.7-1 -> 3.1-4)
    [2011-11-09 12:04] upgraded linux-headers (3.0.7-1 -> 3.1-4)
    [2011-11-09 12:04] upgraded lirc-utils (1:0.9.0-6 -> 1:0.9.0-8)
    [2011-11-09 12:04] upgraded mpfr (3.1.0.p1-1 -> 3.1.0.p3-1)
    [2011-11-09 12:04] upgraded net-tools (1.60.20110819cvs-1 -> 1.60.20110819cvs-3)
    [2011-11-09 12:04] upgraded pixman (0.22.2-1 -> 0.24.0-1)
    [2011-11-09 12:04] upgraded udev (174-1 -> 175-1)
    [2011-11-09 12:04] upgraded wine (1.3.32-1 -> 1.3.32-2)
    /var/log/Xorg.0.log:
    http://dl.dropbox.com/u/38176672/Xorg.0.log
    /var/log/dmesg.log:
    http://dl.dropbox.com/u/38176672/dmesg.log
    Last edited by Shark (2011-12-01 12:49:45)

    hi,
    I have the same problem(intel Corporation Mobile 915GM). And I found the following can solve the half of the problem
    Section "Device"
        Identifier    "Device0"
        Driver        "vesa" # <---replacing intel by vesa
    EndSection
    But after "kill X", the screen of the framebuffer becomes quite horrible as showed in the pic.

  • [Solved] Wired connection ok but wireless problem on Intel 5100

    Here is how i solved the problem :
    1 - get back to the wiki doing everything in order
    2 - added dbus in attition to hal in the deamon line in rc.conf
    3 - put wicd at the end of the deamon line
    4 - then configured wicd for my wireless network at boot : no more dbus error, and connection perfectly ok
    Thx very much for the superb wiki, certainly my fault if i messed up but i still have to learn
    Hi
    I've got a problem with the wireless connection on my toshiba R10
    my wired connection is working flawlessly but i can't use my wifi card. I'm using arch 2009.8 i686
    Here is what i've done following the wiki :
    1 : installed ifplugd for the RJ45 connection + added the deamon on my rc.conf
    2 : installed wireless-tools
    3 : installed the driver intel 5100
    # pacman -S iwlwifi-5000-ucode
    set up my mod_autolog yes
    here is my ifconfig -a
    [me@arch ~]$ ifconfig -a
    eth0 Link encap:Ethernet HWaddr 00:1C:7E:83:EB:B4
    inet addr:192.168.1.5 Bcast:192.168.1.255 Mask:255.255.255.0
    inet6 addr: fe80::21c:7eff:fe83:ebb4/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:603 errors:0 dropped:0 overruns:0 frame:0
    TX packets:610 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:100
    RX bytes:329491 (321.7 Kb) TX bytes:84091 (82.1 Kb)
    Memory:ffcc0000-ffce0000
    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:66 errors:0 dropped:0 overruns:0 frame:0
    TX packets:66 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:4400 (4.2 Kb) TX bytes:4400 (4.2 Kb)
    wlan0 Link encap:Ethernet HWaddr 00:22:FB:04:1A:72
    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)
    wmaster0 Link encap:UNSPEC HWaddr 00-22-FB-04-1A-72-00-00-00-00-00-00-00-00-00-00
    UP RUNNING MTU:0 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)
    I have a dbus error : « Could not connect to wicd's D-Bus interface. Check the wicd log for error messages. »
    so i modified my configuration file following this topic on the french forum http://forums.archlinux.fr/topic3967.html (same error message)
    here is my rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="fr_FR.utf8"
    HARDWARECLOCK="localtime"
    USEDIRECTISA="no"
    TIMEZONE="Europe/Paris"
    KEYMAP="fr-pc"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=()
    # 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="arch"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp" )
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now 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
    DAEMONS=(syslog-ng hal network ifplugd netfs slim crond alsa fam)
    i tried to start wicd manually but it stay busy infinitely :
    here is my /etc/wicd/manager-setting.conf
    GNU nano 2.0.9 Fichier : /etc/wicd/manager-settings.conf
    [Settings]
    wireless_interface = wlan0
    pref_width = 450
    window_width = 530
    prefer_wired = False
    flush_tool = 0
    use_global_dns = False
    global_dns_dom = None
    always_show_wired_interface = True
    sudo_app = 0
    global_dns_1 = None
    global_dns_2 = None
    global_dns_3 = None
    backend = external
    link_detect_tool = 0
    dhcp_client = 0
    window_height = 529
    wired_connect_mode = 1
    debug_mode = 0
    sudo_app = 0
    global_dns_1 = None
    global_dns_2 = None
    global_dns_3 = None
    backend = external
    link_detect_tool = 0
    dhcp_client = 0
    window_height = 529
    wired_connect_mode = 1
    debug_mode = 0
    pref_height = 450
    wired_interface = eth0
    signal_display_type = 1
    global_search_dom = None
    auto_reconnect = True
    wpa_driver = wext
    and what i get ont the graphical interface : no wireless network found
    here is my "ps aux | grep dbus"
    [root@arch ~]# ps aux | grep dbus
    dbus 1373 0.0 0.0 2252 940 ? Ss 14:27 0:00 /usr/bin/dbus-daemon --system
    me 1703 0.0 0.0 3156 696 ? S 14:27 0:00 /usr/bin/dbus-launch --sh-syntax --exit-with-session
    me 1704 0.0 0.0 2264 972 ? Ss 14:27 0:00 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    root 2794 0.0 0.0 3892 872 pts/1 S+ 15:11 0:00 grep dbus
    in the preference settings of wicd, it's correct : eth0 as wired connection and wlan0 as wireless
    here is my "iwlist wlan0"
    [root@arch ~]# iwlist wlan0 scanning
    wlan0 No scan results
    i've tried a lspci -vv :
    [me@arch ~]$ lspci -vv
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    Subsystem: Toshiba America Info Systems Device 0001
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
    Latency: 0
    Capabilities: <access denied>
    Kernel driver in use: agpgart-intel
    Kernel modules: intel-agp
    00:03.0 Communication controller: Intel Corporation Mobile 4 Series Chipset MEI Controller (rev 07)
    Subsystem: Toshiba America Info Systems Device 0001
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 16
    Region 0: Memory at ffcff000 (64-bit, non-prefetchable) [size=16]
    Capabilities: <access denied>
    Kernel driver in use: heci
    Kernel modules: heci
    00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03)
    Subsystem: Toshiba America Info Systems Device 0001
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 28
    Region 0: Memory at ffcc0000 (32-bit, non-prefetchable) [size=128K]
    Region 1: Memory at ffcfe000 (32-bit, non-prefetchable) [size=4K]
    Region 2: I/O ports at cf80 [size=32]
    Capabilities: <access denied>
    Kernel driver in use: e1000e
    Kernel modules: e1000e
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    Subsystem: Toshiba America Info Systems Device 0001
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Capabilities: <access denied>
    Kernel modules: iTCO_wdt
    01:00.0 Network controller: Intel Corporation Wireless WiFi Link 5100
    Subsystem: Intel Corporation Device 1301
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 32 bytes
    Interrupt: pin A routed to IRQ 29
    Region 0: Memory at ff900000 (64-bit, non-prefetchable) [size=8K]
    Capabilities: <access denied>
    Kernel driver in use: iwlagn
    Kernel modules: iwlagn
    I suspect that something is wrong between iwlagn and iwlwifi-5000 which can cause this problem.
    I have to say that I'm quite lost here, i hope someone will have an idea
    thank you very much
    Last edited by Janarto (2009-08-30 02:46:18)

    Stab in the dark...the hal daemon should start dbus, but sometimes I've been encouraged to add the dbus DAEMON explicitly (before hal).
    I don't really understand dbus too intimately, but I've come across situations where although dbus is running, I can't talk to it because the DBUS_SESSION_BUS_{ADDRESS,PID,WINDOWID} variables weren't visible in the environment I was working in. For instance, if dbus is started by xinitrc, and then some system-level daemon tries to talk to dbus, usually it fails for me, and I have to use some workaround.
    Now I would expect wicd to be set up so that the ordinary user doesn't encounter any problems of this sort. On the other hand, the error you're getting does say that it's dbus communication which is failing. Perhaps you could try shutting down hald and dbus, open a terminal, su -, /etc/rc.d/dbus start, and then try from that command line to tell wicd to connect?

  • Cannot open htlm file firefox opens new tab and keeps asking to open or save file ran malware bytes no problems found

    When trying to open an html file firefox keeps opening the open file dialog in a new tab. I have run malware byte with no success.
    The file never opens.
    Finally refreshed Firefox problem resolved...

    I am happy to hear that you solved it I will lock the thread.

Maybe you are looking for

  • MBP-mid 2009-T-style MagSafe charger faulty?

    Ok... I've read through several of the 'issues' folks are having with their MBPs and charging. My mother has a brand new MBP--bought this month--September 2010, and it came with the newer L-style MagSafe charger. My husband and I, each have a one yea

  • Installing ITUNES on XP:   problem

    God I hate windows. That being said, trying to download ITUNES on a friends XP machine got me an error I have never encountered. I want them to get ITUNES so that they can see and interact with my .mac website; I download the executable OK- when I in

  • Error Messages  not shown correctly

    Hello People, I do not know if I have posted this topic in the correct forum. We have developed an application for a client. Everything was working perfectly when we deployed it on the server at the client... However recently, they upgraded their dat

  • HT2292 Can't re-instalI Tunes. Receive a MSVCR80.dll error message. How do I correct?

    Cannot reinstall latest version of ITunes. Receive a MSVCR80.dll error message. How do I correct this?

  • Business Rule Deployment Date & Time

    Hi All, Can we know if a business rule is deployed or not, including the time and date for deployment?? This must be available in RDBMS i think. Like i tried a query which selects all the Business Rules and display created , modified and moved date a