Is r8168 installer in ubuntu software center secure and working?
Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06) that is what Ethernet Card I have. I have a question:
I am using 14.10 and I have found issue with r8169 and NVIDIA bin 331.89 uncompability. Might installing that r8168 package in Ubuntu Software center help? And if so, what does it exactly requiere to do so I can install it?
drivers internet ethernet realtek
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06) that is what Ethernet Card I have. I have a question:
I am using 14.10 and I have found issue with r8169 and NVIDIA bin 331.89 uncompability. Might installing that r8168 package in Ubuntu Software center help? And if so, what does it exactly requiere to do so I can install it?
drivers internet ethernet realtek
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06) that is what Ethernet Card I have. I have a question:
I am using 14.10 and I have found issue with r8169 and NVIDIA bin 331.89 uncompability. Might installing that r8168 package in Ubuntu Software center help? And if so, what does it exactly requiere to do so I can install it?
drivers internet ethernet realtek
Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06) that is what Ethernet Card I have. I have a question:
I am using 14.10 and I have found issue with r8169 and NVIDIA bin 331.89 uncompability. Might installing that r8168 package in Ubuntu Software center help? And if so, what does it exactly requiere to do so I can install it?
drivers internet ethernet realtek
drivers internet ethernet realtek
asked Dec 10 '14 at 19:09
Adrians NetlisAdrians Netlis
1971521
1971521
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Personal speaking, I've made the experience that r8168
works better on various RTL81XX chips than r8169
Packages installed using APT automatically satisfy all dependencies. So everything required is installed when the package is being installed.
You need, however, prevent r8169
from being loaded after r8168 is installed. The DKMS installation script of r8168
unloads r8169
, but it may be reloaded after a reboot. Thus, open the file /etc/modprobe.d/blacklist.conf
(or create, if it doesn't exist) as root and append the line
blacklist r8169
to prevent the module to be loaded again. Ensure that there's a new line at the end of the file, then save and quit.
You can check whether the driver was loaded correctly using lsmod | grep r8168
. If it doesn't return anything, the driver isn't loaded. In this case you can load it with sudo modprobe r8168
after you installed it. If it lists the driver module, it's loaded. If you encounter problems with r8168
, you can temporarily switch back to the other module by manually loading it: sudo modprobe -r r8168 && sudo modprobe r8169
.
IMPORTANT: Note that the driver source on Realtek's website is more current than the one in Ubuntu's repositories. So you may want to download and compile it manually. You can obtain it here.
OK! Maybe someday it will help
– Adrians Netlis
Dec 11 '14 at 11:52
Is that r8168 in software center working on Kernel 3.16? How do I uninstall it, if I have blacklisted r8169? Can it fix issue, when it makes uncompability with NVIDIA GeForce 331.x drivers?
– Adrians Netlis
Dec 11 '14 at 18:28
If you blacklisted r8169, you can still manually load it with modprobe. The LAN driver doesn't interfere with your graphics card. I assume the version in the software center will work, but the one from Realtek's website may have some additional bugfixes etc.
– s3lph
Dec 11 '14 at 21:26
If I install it, but it does not work, is it possible to remove it with apt-get purge r8168-dkms?
– Adrians Netlis
Dec 13 '14 at 17:39
Every package is uninstallable like this. But first unload r8168 and load r8169 to ensure you're back online.
– s3lph
Dec 13 '14 at 23:11
|
show 2 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f558944%2fis-r8168-installer-in-ubuntu-software-center-secure-and-working%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Personal speaking, I've made the experience that r8168
works better on various RTL81XX chips than r8169
Packages installed using APT automatically satisfy all dependencies. So everything required is installed when the package is being installed.
You need, however, prevent r8169
from being loaded after r8168 is installed. The DKMS installation script of r8168
unloads r8169
, but it may be reloaded after a reboot. Thus, open the file /etc/modprobe.d/blacklist.conf
(or create, if it doesn't exist) as root and append the line
blacklist r8169
to prevent the module to be loaded again. Ensure that there's a new line at the end of the file, then save and quit.
You can check whether the driver was loaded correctly using lsmod | grep r8168
. If it doesn't return anything, the driver isn't loaded. In this case you can load it with sudo modprobe r8168
after you installed it. If it lists the driver module, it's loaded. If you encounter problems with r8168
, you can temporarily switch back to the other module by manually loading it: sudo modprobe -r r8168 && sudo modprobe r8169
.
IMPORTANT: Note that the driver source on Realtek's website is more current than the one in Ubuntu's repositories. So you may want to download and compile it manually. You can obtain it here.
OK! Maybe someday it will help
– Adrians Netlis
Dec 11 '14 at 11:52
Is that r8168 in software center working on Kernel 3.16? How do I uninstall it, if I have blacklisted r8169? Can it fix issue, when it makes uncompability with NVIDIA GeForce 331.x drivers?
– Adrians Netlis
Dec 11 '14 at 18:28
If you blacklisted r8169, you can still manually load it with modprobe. The LAN driver doesn't interfere with your graphics card. I assume the version in the software center will work, but the one from Realtek's website may have some additional bugfixes etc.
– s3lph
Dec 11 '14 at 21:26
If I install it, but it does not work, is it possible to remove it with apt-get purge r8168-dkms?
– Adrians Netlis
Dec 13 '14 at 17:39
Every package is uninstallable like this. But first unload r8168 and load r8169 to ensure you're back online.
– s3lph
Dec 13 '14 at 23:11
|
show 2 more comments
Personal speaking, I've made the experience that r8168
works better on various RTL81XX chips than r8169
Packages installed using APT automatically satisfy all dependencies. So everything required is installed when the package is being installed.
You need, however, prevent r8169
from being loaded after r8168 is installed. The DKMS installation script of r8168
unloads r8169
, but it may be reloaded after a reboot. Thus, open the file /etc/modprobe.d/blacklist.conf
(or create, if it doesn't exist) as root and append the line
blacklist r8169
to prevent the module to be loaded again. Ensure that there's a new line at the end of the file, then save and quit.
You can check whether the driver was loaded correctly using lsmod | grep r8168
. If it doesn't return anything, the driver isn't loaded. In this case you can load it with sudo modprobe r8168
after you installed it. If it lists the driver module, it's loaded. If you encounter problems with r8168
, you can temporarily switch back to the other module by manually loading it: sudo modprobe -r r8168 && sudo modprobe r8169
.
IMPORTANT: Note that the driver source on Realtek's website is more current than the one in Ubuntu's repositories. So you may want to download and compile it manually. You can obtain it here.
OK! Maybe someday it will help
– Adrians Netlis
Dec 11 '14 at 11:52
Is that r8168 in software center working on Kernel 3.16? How do I uninstall it, if I have blacklisted r8169? Can it fix issue, when it makes uncompability with NVIDIA GeForce 331.x drivers?
– Adrians Netlis
Dec 11 '14 at 18:28
If you blacklisted r8169, you can still manually load it with modprobe. The LAN driver doesn't interfere with your graphics card. I assume the version in the software center will work, but the one from Realtek's website may have some additional bugfixes etc.
– s3lph
Dec 11 '14 at 21:26
If I install it, but it does not work, is it possible to remove it with apt-get purge r8168-dkms?
– Adrians Netlis
Dec 13 '14 at 17:39
Every package is uninstallable like this. But first unload r8168 and load r8169 to ensure you're back online.
– s3lph
Dec 13 '14 at 23:11
|
show 2 more comments
Personal speaking, I've made the experience that r8168
works better on various RTL81XX chips than r8169
Packages installed using APT automatically satisfy all dependencies. So everything required is installed when the package is being installed.
You need, however, prevent r8169
from being loaded after r8168 is installed. The DKMS installation script of r8168
unloads r8169
, but it may be reloaded after a reboot. Thus, open the file /etc/modprobe.d/blacklist.conf
(or create, if it doesn't exist) as root and append the line
blacklist r8169
to prevent the module to be loaded again. Ensure that there's a new line at the end of the file, then save and quit.
You can check whether the driver was loaded correctly using lsmod | grep r8168
. If it doesn't return anything, the driver isn't loaded. In this case you can load it with sudo modprobe r8168
after you installed it. If it lists the driver module, it's loaded. If you encounter problems with r8168
, you can temporarily switch back to the other module by manually loading it: sudo modprobe -r r8168 && sudo modprobe r8169
.
IMPORTANT: Note that the driver source on Realtek's website is more current than the one in Ubuntu's repositories. So you may want to download and compile it manually. You can obtain it here.
Personal speaking, I've made the experience that r8168
works better on various RTL81XX chips than r8169
Packages installed using APT automatically satisfy all dependencies. So everything required is installed when the package is being installed.
You need, however, prevent r8169
from being loaded after r8168 is installed. The DKMS installation script of r8168
unloads r8169
, but it may be reloaded after a reboot. Thus, open the file /etc/modprobe.d/blacklist.conf
(or create, if it doesn't exist) as root and append the line
blacklist r8169
to prevent the module to be loaded again. Ensure that there's a new line at the end of the file, then save and quit.
You can check whether the driver was loaded correctly using lsmod | grep r8168
. If it doesn't return anything, the driver isn't loaded. In this case you can load it with sudo modprobe r8168
after you installed it. If it lists the driver module, it's loaded. If you encounter problems with r8168
, you can temporarily switch back to the other module by manually loading it: sudo modprobe -r r8168 && sudo modprobe r8169
.
IMPORTANT: Note that the driver source on Realtek's website is more current than the one in Ubuntu's repositories. So you may want to download and compile it manually. You can obtain it here.
edited Dec 10 '14 at 20:33
answered Dec 10 '14 at 20:26
s3lphs3lph
10.5k94572
10.5k94572
OK! Maybe someday it will help
– Adrians Netlis
Dec 11 '14 at 11:52
Is that r8168 in software center working on Kernel 3.16? How do I uninstall it, if I have blacklisted r8169? Can it fix issue, when it makes uncompability with NVIDIA GeForce 331.x drivers?
– Adrians Netlis
Dec 11 '14 at 18:28
If you blacklisted r8169, you can still manually load it with modprobe. The LAN driver doesn't interfere with your graphics card. I assume the version in the software center will work, but the one from Realtek's website may have some additional bugfixes etc.
– s3lph
Dec 11 '14 at 21:26
If I install it, but it does not work, is it possible to remove it with apt-get purge r8168-dkms?
– Adrians Netlis
Dec 13 '14 at 17:39
Every package is uninstallable like this. But first unload r8168 and load r8169 to ensure you're back online.
– s3lph
Dec 13 '14 at 23:11
|
show 2 more comments
OK! Maybe someday it will help
– Adrians Netlis
Dec 11 '14 at 11:52
Is that r8168 in software center working on Kernel 3.16? How do I uninstall it, if I have blacklisted r8169? Can it fix issue, when it makes uncompability with NVIDIA GeForce 331.x drivers?
– Adrians Netlis
Dec 11 '14 at 18:28
If you blacklisted r8169, you can still manually load it with modprobe. The LAN driver doesn't interfere with your graphics card. I assume the version in the software center will work, but the one from Realtek's website may have some additional bugfixes etc.
– s3lph
Dec 11 '14 at 21:26
If I install it, but it does not work, is it possible to remove it with apt-get purge r8168-dkms?
– Adrians Netlis
Dec 13 '14 at 17:39
Every package is uninstallable like this. But first unload r8168 and load r8169 to ensure you're back online.
– s3lph
Dec 13 '14 at 23:11
OK! Maybe someday it will help
– Adrians Netlis
Dec 11 '14 at 11:52
OK! Maybe someday it will help
– Adrians Netlis
Dec 11 '14 at 11:52
Is that r8168 in software center working on Kernel 3.16? How do I uninstall it, if I have blacklisted r8169? Can it fix issue, when it makes uncompability with NVIDIA GeForce 331.x drivers?
– Adrians Netlis
Dec 11 '14 at 18:28
Is that r8168 in software center working on Kernel 3.16? How do I uninstall it, if I have blacklisted r8169? Can it fix issue, when it makes uncompability with NVIDIA GeForce 331.x drivers?
– Adrians Netlis
Dec 11 '14 at 18:28
If you blacklisted r8169, you can still manually load it with modprobe. The LAN driver doesn't interfere with your graphics card. I assume the version in the software center will work, but the one from Realtek's website may have some additional bugfixes etc.
– s3lph
Dec 11 '14 at 21:26
If you blacklisted r8169, you can still manually load it with modprobe. The LAN driver doesn't interfere with your graphics card. I assume the version in the software center will work, but the one from Realtek's website may have some additional bugfixes etc.
– s3lph
Dec 11 '14 at 21:26
If I install it, but it does not work, is it possible to remove it with apt-get purge r8168-dkms?
– Adrians Netlis
Dec 13 '14 at 17:39
If I install it, but it does not work, is it possible to remove it with apt-get purge r8168-dkms?
– Adrians Netlis
Dec 13 '14 at 17:39
Every package is uninstallable like this. But first unload r8168 and load r8169 to ensure you're back online.
– s3lph
Dec 13 '14 at 23:11
Every package is uninstallable like this. But first unload r8168 and load r8169 to ensure you're back online.
– s3lph
Dec 13 '14 at 23:11
|
show 2 more comments
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f558944%2fis-r8168-installer-in-ubuntu-software-center-secure-and-working%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