Network devices disabled
I've been running the Lucid Lynx alpha since first release and only now, after recently putting my computer into suspend then restarting, has the networking failed completely.
Both wireless and ethernet list as disabled with sudo lshw -C network. The wireless adapter is an Atheros AR928X. The ethernet is a Realtek RTL8111/8168B.
Any suggestions as to how I might go about fixing this?
ubuntu networking
add a comment |
I've been running the Lucid Lynx alpha since first release and only now, after recently putting my computer into suspend then restarting, has the networking failed completely.
Both wireless and ethernet list as disabled with sudo lshw -C network. The wireless adapter is an Atheros AR928X. The ethernet is a Realtek RTL8111/8168B.
Any suggestions as to how I might go about fixing this?
ubuntu networking
1
Just looking for the widest spread of answers possible. I've also posted this to the Lucid Lynx development forum.
– Tao
Jan 26 '10 at 20:11
1
Seems like a decent question to me, although if I were Tao, I'd just reinstall Lucid.
– Iain
Jan 26 '10 at 22:40
add a comment |
I've been running the Lucid Lynx alpha since first release and only now, after recently putting my computer into suspend then restarting, has the networking failed completely.
Both wireless and ethernet list as disabled with sudo lshw -C network. The wireless adapter is an Atheros AR928X. The ethernet is a Realtek RTL8111/8168B.
Any suggestions as to how I might go about fixing this?
ubuntu networking
I've been running the Lucid Lynx alpha since first release and only now, after recently putting my computer into suspend then restarting, has the networking failed completely.
Both wireless and ethernet list as disabled with sudo lshw -C network. The wireless adapter is an Atheros AR928X. The ethernet is a Realtek RTL8111/8168B.
Any suggestions as to how I might go about fixing this?
ubuntu networking
ubuntu networking
asked Jan 26 '10 at 18:04
Tao
1
Just looking for the widest spread of answers possible. I've also posted this to the Lucid Lynx development forum.
– Tao
Jan 26 '10 at 20:11
1
Seems like a decent question to me, although if I were Tao, I'd just reinstall Lucid.
– Iain
Jan 26 '10 at 22:40
add a comment |
1
Just looking for the widest spread of answers possible. I've also posted this to the Lucid Lynx development forum.
– Tao
Jan 26 '10 at 20:11
1
Seems like a decent question to me, although if I were Tao, I'd just reinstall Lucid.
– Iain
Jan 26 '10 at 22:40
1
1
Just looking for the widest spread of answers possible. I've also posted this to the Lucid Lynx development forum.
– Tao
Jan 26 '10 at 20:11
Just looking for the widest spread of answers possible. I've also posted this to the Lucid Lynx development forum.
– Tao
Jan 26 '10 at 20:11
1
1
Seems like a decent question to me, although if I were Tao, I'd just reinstall Lucid.
– Iain
Jan 26 '10 at 22:40
Seems like a decent question to me, although if I were Tao, I'd just reinstall Lucid.
– Iain
Jan 26 '10 at 22:40
add a comment |
2 Answers
2
active
oldest
votes
Sounds like an old problem some people were experiencing in Intrepid.
try opening up /usr/lib/pm-utils/sleep.d/10NetworkManager and add this line to the script:
sudo /sbin/ifup wlan0
So the end result looks like this:
case "$1" in
hibernate|suspend)
suspend_nm
;;
thaw|resume)
resume_nm
/sbin/ifup wlan0
;;
*)
;;
esac
I should clarify: even reboots do not solve the issue. I have lost networking even from a cold start.
– Tao
Jan 26 '10 at 20:10
add a comment |
Fixed by editing a state file -- check out this link
http://ubuntuforums.org/showthread.php?t=1419416
(Note: don't delete the file as an earlier poster said -- just edit it like in the later posting.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f100843%2fnetwork-devices-disabled%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sounds like an old problem some people were experiencing in Intrepid.
try opening up /usr/lib/pm-utils/sleep.d/10NetworkManager and add this line to the script:
sudo /sbin/ifup wlan0
So the end result looks like this:
case "$1" in
hibernate|suspend)
suspend_nm
;;
thaw|resume)
resume_nm
/sbin/ifup wlan0
;;
*)
;;
esac
I should clarify: even reboots do not solve the issue. I have lost networking even from a cold start.
– Tao
Jan 26 '10 at 20:10
add a comment |
Sounds like an old problem some people were experiencing in Intrepid.
try opening up /usr/lib/pm-utils/sleep.d/10NetworkManager and add this line to the script:
sudo /sbin/ifup wlan0
So the end result looks like this:
case "$1" in
hibernate|suspend)
suspend_nm
;;
thaw|resume)
resume_nm
/sbin/ifup wlan0
;;
*)
;;
esac
I should clarify: even reboots do not solve the issue. I have lost networking even from a cold start.
– Tao
Jan 26 '10 at 20:10
add a comment |
Sounds like an old problem some people were experiencing in Intrepid.
try opening up /usr/lib/pm-utils/sleep.d/10NetworkManager and add this line to the script:
sudo /sbin/ifup wlan0
So the end result looks like this:
case "$1" in
hibernate|suspend)
suspend_nm
;;
thaw|resume)
resume_nm
/sbin/ifup wlan0
;;
*)
;;
esac
Sounds like an old problem some people were experiencing in Intrepid.
try opening up /usr/lib/pm-utils/sleep.d/10NetworkManager and add this line to the script:
sudo /sbin/ifup wlan0
So the end result looks like this:
case "$1" in
hibernate|suspend)
suspend_nm
;;
thaw|resume)
resume_nm
/sbin/ifup wlan0
;;
*)
;;
esac
answered Jan 26 '10 at 18:39
John TJohn T
143k20295330
143k20295330
I should clarify: even reboots do not solve the issue. I have lost networking even from a cold start.
– Tao
Jan 26 '10 at 20:10
add a comment |
I should clarify: even reboots do not solve the issue. I have lost networking even from a cold start.
– Tao
Jan 26 '10 at 20:10
I should clarify: even reboots do not solve the issue. I have lost networking even from a cold start.
– Tao
Jan 26 '10 at 20:10
I should clarify: even reboots do not solve the issue. I have lost networking even from a cold start.
– Tao
Jan 26 '10 at 20:10
add a comment |
Fixed by editing a state file -- check out this link
http://ubuntuforums.org/showthread.php?t=1419416
(Note: don't delete the file as an earlier poster said -- just edit it like in the later posting.
add a comment |
Fixed by editing a state file -- check out this link
http://ubuntuforums.org/showthread.php?t=1419416
(Note: don't delete the file as an earlier poster said -- just edit it like in the later posting.
add a comment |
Fixed by editing a state file -- check out this link
http://ubuntuforums.org/showthread.php?t=1419416
(Note: don't delete the file as an earlier poster said -- just edit it like in the later posting.
Fixed by editing a state file -- check out this link
http://ubuntuforums.org/showthread.php?t=1419416
(Note: don't delete the file as an earlier poster said -- just edit it like in the later posting.
answered Mar 22 '10 at 1:33
puppetluva
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f100843%2fnetwork-devices-disabled%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Just looking for the widest spread of answers possible. I've also posted this to the Lucid Lynx development forum.
– Tao
Jan 26 '10 at 20:11
1
Seems like a decent question to me, although if I were Tao, I'd just reinstall Lucid.
– Iain
Jan 26 '10 at 22:40