<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>The version Ubuntu upgraded to 13.10, first the internet with 13.04 worked well.<div>It's the upgrade that couses the problem.</div><div>I see Realtek RTL8101E by Terminal lspci, and by iwconfig 'no wireless extensions'.</div><div>The system is not connected wired or wireless and the swith is on.<br><br><div><hr id="stopSpelling">Date: Sat, 30 Nov 2013 02:25:57 -0500<br>From: cbell44@cfl.rr.com<br>To: kubuntu-users@lists.ubuntu.com<br>Subject: Re: Ubuntu 13.10 no internet<br><br>
<div class="ecxmoz-cite-prefix">On 11/29/2013 08:25 PM, Uriah Heep
wrote:<br>
</div>
<blockquote cite="mid:CACYKHXiA4tGp=jvT-uf2KgkYZq5YOORVNLiafEhx+BLbgEMJNg@mail.gmail.com">
<div dir="ltr">
<div class="ecxim">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 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="ecxim"><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="ecxgmail_extra"><br>
<br>
<div class="ecxgmail_quote">On Fri, Nov 29, 2013 at 6:58 PM, Ralf
Mardorf <span dir="ltr"><<a href="mailto:kde.lists@yahoo.com" target="_blank">kde.lists@yahoo.com</a>></span>
wrote:<br>
<blockquote class="ecxgmail_quote" style="border-left:1px #ccc solid;padding-left:1ex;">
<div class="ecxim">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 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="ecxim"><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="ecxHOEnZb">
<div class="h5"><br>
--<br>
kubuntu-users mailing list<br>
<a href="mailto:kubuntu-users@lists.ubuntu.com">kubuntu-users@lists.ubuntu.com</a><br>
Modify settings or unsubscribe at: <a 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="ecxmimeAttachmentHeader"></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="ecxmoz-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>
<br>--
kubuntu-users mailing list
kubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/kubuntu-users</div></div> </div></body>
</html>