panic kernel when my laptop is being connected to a wifi network

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
1
down vote

favorite












My laptop has a rtl8723be wifi card. The trouble started when I tried to install the latest drivers wifi version.So, The spotted problem is that when my my laptop is being connected to a wifi network, a process(named systemd-journal) automatically starts running in the background creating huge log files like 60 GB. But,when I run (sudo modprobe -rv rtl8723be) both the wifi and the process turn off. I found the created files and deleted them but the question is, what can I do in order to use wifi without kernel panic. Currently I have turn off the wifi and I am using ethernet.










share|improve this question





















  • How did you install that latest WiFi drivers? Was it through the Ubuntu repositories or somewhere else?
    – dsstorefile1
    Mar 14 at 18:03










  • It was through repositories. I am writing the commands below. $ sudo add-apt-repository ppa:hanipouspilot/rtlwifi $ sudo apt-get update $ sudo apt-get install rtlwifi-new-dkms linux-firmware $ sudo reboot $ sudo apt-get install linux-headers-$(uname -r) gcc g++ build-essential dkms git $ cd rtlwifi_new-rock.new_btcoex $ make $ sudo make install $ sudo modprobe -rv rtl8723be ` $ sudo modprobe -v rtl8723be ant_sel=2` $ echo "options rtl8723be ant_sel=2 fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
    – Nikolas Chrysanthidis
    Mar 14 at 20:42











  • PPAs aren't official sources of software, so you have to be careful. What do the systemd-journal logs contain when the problem occurs? If it's a set of repeating messages, can you post a sample of them on a pastebin so someone can take a look at them?
    – dsstorefile1
    Mar 16 at 1:42










  • <Exactly as you described. This is just a small sample of the created log file. / Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472757] pcieport 0000:00:1d.3: device [8086:9d1b] error status/mask=00000001/00002000 Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472775] pcieport 0000:00:1d.3: [ 0] Receiver Error (First) Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472789] pcieport 0000:00:1d.3: AER: Corrected error received: id=00eb Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.473451] pcieport 0000:00:1d.3: can't find device of ID00eb>
    – Nikolas Chrysanthidis
    Mar 18 at 12:05











  • That looks familiar. Try rebooting with pci=nomsi on the kernel command line and see if the error messages become less frequent.
    – dsstorefile1
    Mar 18 at 20:45














up vote
1
down vote

favorite












My laptop has a rtl8723be wifi card. The trouble started when I tried to install the latest drivers wifi version.So, The spotted problem is that when my my laptop is being connected to a wifi network, a process(named systemd-journal) automatically starts running in the background creating huge log files like 60 GB. But,when I run (sudo modprobe -rv rtl8723be) both the wifi and the process turn off. I found the created files and deleted them but the question is, what can I do in order to use wifi without kernel panic. Currently I have turn off the wifi and I am using ethernet.










share|improve this question





















  • How did you install that latest WiFi drivers? Was it through the Ubuntu repositories or somewhere else?
    – dsstorefile1
    Mar 14 at 18:03










  • It was through repositories. I am writing the commands below. $ sudo add-apt-repository ppa:hanipouspilot/rtlwifi $ sudo apt-get update $ sudo apt-get install rtlwifi-new-dkms linux-firmware $ sudo reboot $ sudo apt-get install linux-headers-$(uname -r) gcc g++ build-essential dkms git $ cd rtlwifi_new-rock.new_btcoex $ make $ sudo make install $ sudo modprobe -rv rtl8723be ` $ sudo modprobe -v rtl8723be ant_sel=2` $ echo "options rtl8723be ant_sel=2 fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
    – Nikolas Chrysanthidis
    Mar 14 at 20:42











  • PPAs aren't official sources of software, so you have to be careful. What do the systemd-journal logs contain when the problem occurs? If it's a set of repeating messages, can you post a sample of them on a pastebin so someone can take a look at them?
    – dsstorefile1
    Mar 16 at 1:42










  • <Exactly as you described. This is just a small sample of the created log file. / Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472757] pcieport 0000:00:1d.3: device [8086:9d1b] error status/mask=00000001/00002000 Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472775] pcieport 0000:00:1d.3: [ 0] Receiver Error (First) Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472789] pcieport 0000:00:1d.3: AER: Corrected error received: id=00eb Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.473451] pcieport 0000:00:1d.3: can't find device of ID00eb>
    – Nikolas Chrysanthidis
    Mar 18 at 12:05











  • That looks familiar. Try rebooting with pci=nomsi on the kernel command line and see if the error messages become less frequent.
    – dsstorefile1
    Mar 18 at 20:45












up vote
1
down vote

favorite









up vote
1
down vote

favorite











My laptop has a rtl8723be wifi card. The trouble started when I tried to install the latest drivers wifi version.So, The spotted problem is that when my my laptop is being connected to a wifi network, a process(named systemd-journal) automatically starts running in the background creating huge log files like 60 GB. But,when I run (sudo modprobe -rv rtl8723be) both the wifi and the process turn off. I found the created files and deleted them but the question is, what can I do in order to use wifi without kernel panic. Currently I have turn off the wifi and I am using ethernet.










share|improve this question













My laptop has a rtl8723be wifi card. The trouble started when I tried to install the latest drivers wifi version.So, The spotted problem is that when my my laptop is being connected to a wifi network, a process(named systemd-journal) automatically starts running in the background creating huge log files like 60 GB. But,when I run (sudo modprobe -rv rtl8723be) both the wifi and the process turn off. I found the created files and deleted them but the question is, what can I do in order to use wifi without kernel panic. Currently I have turn off the wifi and I am using ethernet.







16.04






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 14 at 15:18









Nikolas Chrysanthidis

61




61











  • How did you install that latest WiFi drivers? Was it through the Ubuntu repositories or somewhere else?
    – dsstorefile1
    Mar 14 at 18:03










  • It was through repositories. I am writing the commands below. $ sudo add-apt-repository ppa:hanipouspilot/rtlwifi $ sudo apt-get update $ sudo apt-get install rtlwifi-new-dkms linux-firmware $ sudo reboot $ sudo apt-get install linux-headers-$(uname -r) gcc g++ build-essential dkms git $ cd rtlwifi_new-rock.new_btcoex $ make $ sudo make install $ sudo modprobe -rv rtl8723be ` $ sudo modprobe -v rtl8723be ant_sel=2` $ echo "options rtl8723be ant_sel=2 fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
    – Nikolas Chrysanthidis
    Mar 14 at 20:42











  • PPAs aren't official sources of software, so you have to be careful. What do the systemd-journal logs contain when the problem occurs? If it's a set of repeating messages, can you post a sample of them on a pastebin so someone can take a look at them?
    – dsstorefile1
    Mar 16 at 1:42










  • <Exactly as you described. This is just a small sample of the created log file. / Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472757] pcieport 0000:00:1d.3: device [8086:9d1b] error status/mask=00000001/00002000 Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472775] pcieport 0000:00:1d.3: [ 0] Receiver Error (First) Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472789] pcieport 0000:00:1d.3: AER: Corrected error received: id=00eb Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.473451] pcieport 0000:00:1d.3: can't find device of ID00eb>
    – Nikolas Chrysanthidis
    Mar 18 at 12:05











  • That looks familiar. Try rebooting with pci=nomsi on the kernel command line and see if the error messages become less frequent.
    – dsstorefile1
    Mar 18 at 20:45
















  • How did you install that latest WiFi drivers? Was it through the Ubuntu repositories or somewhere else?
    – dsstorefile1
    Mar 14 at 18:03










  • It was through repositories. I am writing the commands below. $ sudo add-apt-repository ppa:hanipouspilot/rtlwifi $ sudo apt-get update $ sudo apt-get install rtlwifi-new-dkms linux-firmware $ sudo reboot $ sudo apt-get install linux-headers-$(uname -r) gcc g++ build-essential dkms git $ cd rtlwifi_new-rock.new_btcoex $ make $ sudo make install $ sudo modprobe -rv rtl8723be ` $ sudo modprobe -v rtl8723be ant_sel=2` $ echo "options rtl8723be ant_sel=2 fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
    – Nikolas Chrysanthidis
    Mar 14 at 20:42











  • PPAs aren't official sources of software, so you have to be careful. What do the systemd-journal logs contain when the problem occurs? If it's a set of repeating messages, can you post a sample of them on a pastebin so someone can take a look at them?
    – dsstorefile1
    Mar 16 at 1:42










  • <Exactly as you described. This is just a small sample of the created log file. / Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472757] pcieport 0000:00:1d.3: device [8086:9d1b] error status/mask=00000001/00002000 Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472775] pcieport 0000:00:1d.3: [ 0] Receiver Error (First) Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472789] pcieport 0000:00:1d.3: AER: Corrected error received: id=00eb Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.473451] pcieport 0000:00:1d.3: can't find device of ID00eb>
    – Nikolas Chrysanthidis
    Mar 18 at 12:05











  • That looks familiar. Try rebooting with pci=nomsi on the kernel command line and see if the error messages become less frequent.
    – dsstorefile1
    Mar 18 at 20:45















How did you install that latest WiFi drivers? Was it through the Ubuntu repositories or somewhere else?
– dsstorefile1
Mar 14 at 18:03




How did you install that latest WiFi drivers? Was it through the Ubuntu repositories or somewhere else?
– dsstorefile1
Mar 14 at 18:03












It was through repositories. I am writing the commands below. $ sudo add-apt-repository ppa:hanipouspilot/rtlwifi $ sudo apt-get update $ sudo apt-get install rtlwifi-new-dkms linux-firmware $ sudo reboot $ sudo apt-get install linux-headers-$(uname -r) gcc g++ build-essential dkms git $ cd rtlwifi_new-rock.new_btcoex $ make $ sudo make install $ sudo modprobe -rv rtl8723be ` $ sudo modprobe -v rtl8723be ant_sel=2` $ echo "options rtl8723be ant_sel=2 fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
– Nikolas Chrysanthidis
Mar 14 at 20:42





It was through repositories. I am writing the commands below. $ sudo add-apt-repository ppa:hanipouspilot/rtlwifi $ sudo apt-get update $ sudo apt-get install rtlwifi-new-dkms linux-firmware $ sudo reboot $ sudo apt-get install linux-headers-$(uname -r) gcc g++ build-essential dkms git $ cd rtlwifi_new-rock.new_btcoex $ make $ sudo make install $ sudo modprobe -rv rtl8723be ` $ sudo modprobe -v rtl8723be ant_sel=2` $ echo "options rtl8723be ant_sel=2 fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
– Nikolas Chrysanthidis
Mar 14 at 20:42













PPAs aren't official sources of software, so you have to be careful. What do the systemd-journal logs contain when the problem occurs? If it's a set of repeating messages, can you post a sample of them on a pastebin so someone can take a look at them?
– dsstorefile1
Mar 16 at 1:42




PPAs aren't official sources of software, so you have to be careful. What do the systemd-journal logs contain when the problem occurs? If it's a set of repeating messages, can you post a sample of them on a pastebin so someone can take a look at them?
– dsstorefile1
Mar 16 at 1:42












<Exactly as you described. This is just a small sample of the created log file. / Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472757] pcieport 0000:00:1d.3: device [8086:9d1b] error status/mask=00000001/00002000 Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472775] pcieport 0000:00:1d.3: [ 0] Receiver Error (First) Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472789] pcieport 0000:00:1d.3: AER: Corrected error received: id=00eb Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.473451] pcieport 0000:00:1d.3: can't find device of ID00eb>
– Nikolas Chrysanthidis
Mar 18 at 12:05





<Exactly as you described. This is just a small sample of the created log file. / Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472757] pcieport 0000:00:1d.3: device [8086:9d1b] error status/mask=00000001/00002000 Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472775] pcieport 0000:00:1d.3: [ 0] Receiver Error (First) Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.472789] pcieport 0000:00:1d.3: AER: Corrected error received: id=00eb Mar 17 09:21:18 nik-HP-Pavilion-Notebook kernel: [ 306.473451] pcieport 0000:00:1d.3: can't find device of ID00eb>
– Nikolas Chrysanthidis
Mar 18 at 12:05













That looks familiar. Try rebooting with pci=nomsi on the kernel command line and see if the error messages become less frequent.
– dsstorefile1
Mar 18 at 20:45




That looks familiar. Try rebooting with pci=nomsi on the kernel command line and see if the error messages become less frequent.
– dsstorefile1
Mar 18 at 20:45















active

oldest

votes











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',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1014914%2fpanic-kernel-when-my-laptop-is-being-connected-to-a-wifi-network%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1014914%2fpanic-kernel-when-my-laptop-is-being-connected-to-a-wifi-network%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

Which professions warranted travel in Medieval times?

How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

Trouble downloading packages list due to a “Hash sum mismatch” error