<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 11/29/2013 08:25 PM, Uriah Heep
      wrote:<br>
    </div>
    <blockquote
cite="mid:CACYKHXiA4tGp=jvT-uf2KgkYZq5YOORVNLiafEhx+BLbgEMJNg@mail.gmail.com"
      type="cite">
      <div dir="ltr">
        <div class="im">On Friday 29 November 2013 14:33:37 Dennis M
          wrote:<br>
          > Thans all for the help, i saw no extra drivers in
          additional drivers for the<br>
          > card. How can i see if she uses open or restricted
          drivers?<br>
          > I'm learning Linux every day...<br>
          <br>
        </div>
        All drivers are listed by<br>
        $ lsmod<br>
        <br>
        You get information by<br>
        $ modinfo DRIVERNAME<br>
        and by<br>
        <a moz-do-not-send="true" href="https://startpage.com/"
          target="_blank">https://startpage.com/</a> and search for the
         DRIVERNAME<br>
        <br>
        You didn't answer this question:<br>
        <div class="im"><br>
          On Friday 29 November 2013 11:15:14 Kaj Haulrich wrote:<br>
          > Maybe the little switch on the laptop?<br>
          <br>
        </div>
        When a neighbor ask me to help with a Windows laptop, I didn't
        know about this<br>
        switch, but I read the Windows message window that mentioned the
        switch. IOW<br>
        without knowledge about Windows and without knowing that some or
        all laptops<br>
        have such a switch, I could solve the issue within seconds,
        that's why I just<br>
        want to ensure, that you checked the button.<br>
        <br>
        Regards,<br>
        Ralf<br>
        ****************************<br>
        <br>
        <br>
        All laptops have a way to disable wireless, in some such as my
        lenovo I press F5 and different computers use different buttons
        so you may have to check computer documentation. <br>
      </div>
      <div class="gmail_extra"><br>
        <br>
        <div class="gmail_quote">On Fri, Nov 29, 2013 at 6:58 PM, Ralf
          Mardorf <span dir="ltr"><<a moz-do-not-send="true"
              href="mailto:kde.lists@yahoo.com" target="_blank">kde.lists@yahoo.com</a>></span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0 0 0
            .8ex;border-left:1px #ccc solid;padding-left:1ex">
            <div class="im">On Friday 29 November 2013 14:33:37 Dennis M
              wrote:<br>
              > Thans all for the help, i saw no extra drivers in
              additional drivers for the<br>
              > card. How can i see if she uses open or restricted
              drivers?<br>
              > I'm learning Linux every day...<br>
              <br>
            </div>
            All drivers are listed by<br>
            $ lsmod<br>
            <br>
            You get information by<br>
            $ modinfo DRIVERNAME<br>
            and by<br>
            <a moz-do-not-send="true" href="https://startpage.com/"
              target="_blank">https://startpage.com/</a> and search for
            the  DRIVERNAME<br>
            <br>
            You didn't answer this question:<br>
            <div class="im"><br>
              On Friday 29 November 2013 11:15:14 Kaj Haulrich wrote:<br>
              > Maybe the little switch on the laptop?<br>
              <br>
            </div>
            When a neighbor ask me to help with a Windows laptop, I
            didn't know about this<br>
            switch, but I read the Windows message window that mentioned
            the switch. IOW<br>
            without knowledge about Windows and without knowing that
            some or all laptops<br>
            have such a switch, I could solve the issue within seconds,
            that's why I just<br>
            want to ensure, that you checked the button.<br>
            <br>
            Regards,<br>
            Ralf<br>
            <div class="HOEnZb">
              <div class="h5"><br>
                --<br>
                kubuntu-users mailing list<br>
                <a moz-do-not-send="true"
                  href="mailto:kubuntu-users@lists.ubuntu.com">kubuntu-users@lists.ubuntu.com</a><br>
                Modify settings or unsubscribe at: <a
                  moz-do-not-send="true"
                  href="https://lists.ubuntu.com/mailman/listinfo/kubuntu-users"
                  target="_blank">https://lists.ubuntu.com/mailman/listinfo/kubuntu-users</a><br>
              </div>
            </div>
          </blockquote>
        </div>
        <br>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
    </blockquote>
    I don't know if it will help or not, but I wrote the following bash
    file for my own use.<br>
    You can change the IP addresses of the cable modem and the router.<br>
    If you have neither then '#' out the appropriate lines and continue.
    The checks are<br>
    out of normal sequence because I wrote this on the fly.<br>
    You just have to copy-and-paste into a file ending with .sh and make
    it executable.<br>
    <br>
    Tom<br>
    <br>
    <div class="moz-signature">-- <br>
      “We can't solve problems by using the same kind of thinking we
      used when we created them.” --Albert Einstein (German born
      American Physicist who developed the special and general theories
      of relativity. Nobel Prize for Physics in 1921. 1879-1955)<br>
      <br>
      # Everything below starting with '#!' on the first line, but above
      the very last line as designated.<br>
      <br>
      #! <br>
      # Bash file to check if network manager is online<br>
      MY_MODEM=192.168.100.1<br>
      MY_ROUTER=192.168.1.1<br>
      <br>
      # check with this if statement to see if Network Manager is online<br>
      if(nm-online)<br>
      then<br>
        printf "Network Manager is online!\n"<br>
        #exit 0<br>
        else<br>
        printf "Network Manager is offline\n"<br>
        #exit 1<br>
      fi<br>
      <br>
      # Now check to see if the router is responding<br>
      if((ping $MY_ROUTER -c 1 -q) > /dev/null)<br>
      then <br>
        printf "The router is responding!\n"<br>
        else<br>
        printf "The router is not responding!\n"<br>
      fi<br>
      <br>
      # Now check to see if cable modem is responding<br>
      if((ping $MY_MODEM -c 1 -q) > /dev/null)<br>
      then<br>
        printf "The cable modem is responding!\n"<br>
        else<br>
        printf "The cable modem not responding!\n"<br>
      fi<br>
      <br>
      # Now check to see if Ethernet driver is loaded<br>
      if(lspci -v | egrep Ethernet > /dev/null)<br>
      then<br>
        printf "There is an ethernet driver!\n"<br>
        else<br>
        printf "There is no ethernet driver!\n"<br>
      fi<br>
      <br>
      #Everything above this line.<br>
    </div>
  </body>
</html>