0

I have installed Ubuntu 16.04 alongside Windows 10. The Ubuntu partition has 419 GB, and another 8 GB to swap. My issue is that when the installation is finished, when I log in to Ubuntu, second by second the memory space is used without my installing anything.

Used 8,3G

Then after some minutes:

Used 11G

And then after a lot of minutes:

Used 48G

Used 55G

This happens until Ubuntu runs out of space. I reinstalled Ubuntu many times but it's still happening.

UPDATE 1

I used ncdu command and I get it

ncdu

df -h

df -h

sudo find / -xdev -type f -size +100M

find size

UPDATE 2

syslog file

syslog

1 Answers1

0

Ok , I solved my issue. The first step was see what is the files which have a lot of disk space in my machine. For that, I executed this command suggested by dsstorefile1:

find / -xdev -type f -size +100M

Where the most file which have disk space occupied was:

/var/log/kern.log /var/log/syslog

Then, I opened the file syslog to see what is the issue which fill my syslog, and I find this issue:

PCIe Bus Error, id=00e8

So, searching in the internet, I came to the answer that gave me solution:

  1. edit /etc/default/grub and and add pci=noaer to the line starting with GRUB_CMDLINE_LINUX_DEFAULT. It will look like this: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=noaer"
  2. run "sudo update-grub"
  3. reboot

REFERENCE: "PCIe Bus Error, id=00e8" both 16.04 and 17.04