Problems with Ubuntu mount /tmp [duplicate] Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Root drive is running out of disk space. How can I free up space?Battery problems with Ubuntu TouchMount external Hard Drive with /etc/fstab on ubuntu 14.04 problemsProblems with install 14.04Ubuntu 14.04 problems with kernel 3.17problems with logging inwill mounting /tmp with noexec and nosuid cause problems?Problems with apache2 hierarchyproblems with one userPerformance problems with Ubuntu 14.04Problems with ethernet Ubuntu 14.04

What causes the direction of lightning flashes?

What is the meaning of the simile “quick as silk”?

Did MS DOS itself ever use blinking text?

Around usage results

Do wooden building fires get hotter than 600°C?

What does this Jacques Hadamard quote mean?

How to find all the available tools in mac terminal?

Why wasn't DOSKEY integrated with COMMAND.COM?

How do I find out the mythology and history of my Fortress?

Circuit to "zoom in" on mV fluctuations of a DC signal?

What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in ITSV

Maximum summed powersets with non-adjacent items

How can I use the Python library networkx from Mathematica?

How to react to hostile behavior from a senior developer?

Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?

How to convince students of the implication truth values?

What is the longest distance a player character can jump in one leap?

Is there any way for the UK Prime Minister to make a motion directly dependent on Government confidence?

Generate an RGB colour grid

Can anything be seen from the center of the Boötes void? How dark would it be?

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

How to compare two different files line by line in unix?

What would be the ideal power source for a cybernetic eye?

Do I really need to have a message in a novel to appeal to readers?



Problems with Ubuntu mount /tmp [duplicate]



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Root drive is running out of disk space. How can I free up space?Battery problems with Ubuntu TouchMount external Hard Drive with /etc/fstab on ubuntu 14.04 problemsProblems with install 14.04Ubuntu 14.04 problems with kernel 3.17problems with logging inwill mounting /tmp with noexec and nosuid cause problems?Problems with apache2 hierarchyproblems with one userPerformance problems with Ubuntu 14.04Problems with ethernet Ubuntu 14.04



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4
















This question already has an answer here:



  • Root drive is running out of disk space. How can I free up space?

    12 answers



Problems with ubuntu
apt-get install -f



W: Some index files failed to download. They have been ignored, or old ones used instead.
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


I tried mount back the tmp but it doesnts works
Someone know How to fix it?



root@pipoca:/var/tmp# mount /tmp
mount: can't find /tmp in /etc/fstab

root@pipoca:/var/tmp# free -m
total used free shared buff/cache available
Mem: 3008 868 1327 13 812 1964
Swap: 263 0 263

root@pipoca:/tmp# df -h
Filesystem Size Used Avail Use% Mounted on
udev 1.5G 0 1.5G 0% /dev
tmpfs 301M 4.5M 297M 2% /run
/dev/vda1 25G 25G 0 100% /
tmpfs 1.5G 8.0K 1.5G 1% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 1.5G 0 1.5G 0% /sys/fs/cgroup
/dev/vda15 105M 3.6M 101M 4% /boot/efi
tmpfs 301M 0 301M 0% /run/user/0



root@pipoca:/# dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/(.*)-([^0-9]+)/1/")"'/d;s/^[^ ]* [^ ]* ([^ ]*).*/1/;/[0-9]/!d' | xargs sudo apt-get -y purge
dpkg-query: no packages found matching linux-*
Reading package lists... Error!
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


using



sudo apt autoremove
sudo apt autoclean


I got



E: Write error - write (28: No space left on device)
E: Write error - write (28: No space left on device)


using



root@pipoca:/# sudo journalctl --vacuum-time=2d
Vacuuming done, freed 0B of archived journals on disk.
root@pipoca:/# journalctl --vacuum-size=500M
Vacuuming done, freed 0B of archived journals on disk.

root@pipoca:/# apt-get update
Hit:1 http://mirrors.digitalocean.com/ubuntu xenial InRelease
Hit:2 http://mirrors.digitalocean.com/ubuntu xenial-updates InRelease
Hit:3 http://mirrors.digitalocean.com/ubuntu xenial-backports InRelease
Hit:4 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-xenial InRelease
Hit:5 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-universal InRelease
Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:7 https://packages.microsoft.com/ubuntu/16.04/prod xenial InRelease
Hit:8 http://archive.ubuntu.com/ubuntu xenial InRelease
not a reference at /usr/bin/apt-show-versions line 222.
Reading package lists... Done
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code









share|improve this question















marked as duplicate by RoVo, karel, Eric Carvalho, Fabby, waltinator 10 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.













  • 2





    As apt needs some space to run, first delete some files, then run apt

    – RoVo
    Apr 13 at 16:31












  • Use uname -r to get the release # of the current kernel. Delete NO file/dir with this string as part of its name. Look for (with ls -l) old files in /var/log/, /boot/, /home/$USER and delete them manually. Then sudo apt autoremove. This is why many people have separate partitions for /, /home', /boot`.

    – waltinator
    10 hours ago

















4
















This question already has an answer here:



  • Root drive is running out of disk space. How can I free up space?

    12 answers



Problems with ubuntu
apt-get install -f



W: Some index files failed to download. They have been ignored, or old ones used instead.
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


I tried mount back the tmp but it doesnts works
Someone know How to fix it?



root@pipoca:/var/tmp# mount /tmp
mount: can't find /tmp in /etc/fstab

root@pipoca:/var/tmp# free -m
total used free shared buff/cache available
Mem: 3008 868 1327 13 812 1964
Swap: 263 0 263

root@pipoca:/tmp# df -h
Filesystem Size Used Avail Use% Mounted on
udev 1.5G 0 1.5G 0% /dev
tmpfs 301M 4.5M 297M 2% /run
/dev/vda1 25G 25G 0 100% /
tmpfs 1.5G 8.0K 1.5G 1% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 1.5G 0 1.5G 0% /sys/fs/cgroup
/dev/vda15 105M 3.6M 101M 4% /boot/efi
tmpfs 301M 0 301M 0% /run/user/0



root@pipoca:/# dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/(.*)-([^0-9]+)/1/")"'/d;s/^[^ ]* [^ ]* ([^ ]*).*/1/;/[0-9]/!d' | xargs sudo apt-get -y purge
dpkg-query: no packages found matching linux-*
Reading package lists... Error!
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


using



sudo apt autoremove
sudo apt autoclean


I got



E: Write error - write (28: No space left on device)
E: Write error - write (28: No space left on device)


using



root@pipoca:/# sudo journalctl --vacuum-time=2d
Vacuuming done, freed 0B of archived journals on disk.
root@pipoca:/# journalctl --vacuum-size=500M
Vacuuming done, freed 0B of archived journals on disk.

root@pipoca:/# apt-get update
Hit:1 http://mirrors.digitalocean.com/ubuntu xenial InRelease
Hit:2 http://mirrors.digitalocean.com/ubuntu xenial-updates InRelease
Hit:3 http://mirrors.digitalocean.com/ubuntu xenial-backports InRelease
Hit:4 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-xenial InRelease
Hit:5 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-universal InRelease
Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:7 https://packages.microsoft.com/ubuntu/16.04/prod xenial InRelease
Hit:8 http://archive.ubuntu.com/ubuntu xenial InRelease
not a reference at /usr/bin/apt-show-versions line 222.
Reading package lists... Done
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code









share|improve this question















marked as duplicate by RoVo, karel, Eric Carvalho, Fabby, waltinator 10 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.













  • 2





    As apt needs some space to run, first delete some files, then run apt

    – RoVo
    Apr 13 at 16:31












  • Use uname -r to get the release # of the current kernel. Delete NO file/dir with this string as part of its name. Look for (with ls -l) old files in /var/log/, /boot/, /home/$USER and delete them manually. Then sudo apt autoremove. This is why many people have separate partitions for /, /home', /boot`.

    – waltinator
    10 hours ago













4












4








4









This question already has an answer here:



  • Root drive is running out of disk space. How can I free up space?

    12 answers



Problems with ubuntu
apt-get install -f



W: Some index files failed to download. They have been ignored, or old ones used instead.
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


I tried mount back the tmp but it doesnts works
Someone know How to fix it?



root@pipoca:/var/tmp# mount /tmp
mount: can't find /tmp in /etc/fstab

root@pipoca:/var/tmp# free -m
total used free shared buff/cache available
Mem: 3008 868 1327 13 812 1964
Swap: 263 0 263

root@pipoca:/tmp# df -h
Filesystem Size Used Avail Use% Mounted on
udev 1.5G 0 1.5G 0% /dev
tmpfs 301M 4.5M 297M 2% /run
/dev/vda1 25G 25G 0 100% /
tmpfs 1.5G 8.0K 1.5G 1% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 1.5G 0 1.5G 0% /sys/fs/cgroup
/dev/vda15 105M 3.6M 101M 4% /boot/efi
tmpfs 301M 0 301M 0% /run/user/0



root@pipoca:/# dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/(.*)-([^0-9]+)/1/")"'/d;s/^[^ ]* [^ ]* ([^ ]*).*/1/;/[0-9]/!d' | xargs sudo apt-get -y purge
dpkg-query: no packages found matching linux-*
Reading package lists... Error!
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


using



sudo apt autoremove
sudo apt autoclean


I got



E: Write error - write (28: No space left on device)
E: Write error - write (28: No space left on device)


using



root@pipoca:/# sudo journalctl --vacuum-time=2d
Vacuuming done, freed 0B of archived journals on disk.
root@pipoca:/# journalctl --vacuum-size=500M
Vacuuming done, freed 0B of archived journals on disk.

root@pipoca:/# apt-get update
Hit:1 http://mirrors.digitalocean.com/ubuntu xenial InRelease
Hit:2 http://mirrors.digitalocean.com/ubuntu xenial-updates InRelease
Hit:3 http://mirrors.digitalocean.com/ubuntu xenial-backports InRelease
Hit:4 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-xenial InRelease
Hit:5 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-universal InRelease
Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:7 https://packages.microsoft.com/ubuntu/16.04/prod xenial InRelease
Hit:8 http://archive.ubuntu.com/ubuntu xenial InRelease
not a reference at /usr/bin/apt-show-versions line 222.
Reading package lists... Done
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code









share|improve this question

















This question already has an answer here:



  • Root drive is running out of disk space. How can I free up space?

    12 answers



Problems with ubuntu
apt-get install -f



W: Some index files failed to download. They have been ignored, or old ones used instead.
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


I tried mount back the tmp but it doesnts works
Someone know How to fix it?



root@pipoca:/var/tmp# mount /tmp
mount: can't find /tmp in /etc/fstab

root@pipoca:/var/tmp# free -m
total used free shared buff/cache available
Mem: 3008 868 1327 13 812 1964
Swap: 263 0 263

root@pipoca:/tmp# df -h
Filesystem Size Used Avail Use% Mounted on
udev 1.5G 0 1.5G 0% /dev
tmpfs 301M 4.5M 297M 2% /run
/dev/vda1 25G 25G 0 100% /
tmpfs 1.5G 8.0K 1.5G 1% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 1.5G 0 1.5G 0% /sys/fs/cgroup
/dev/vda15 105M 3.6M 101M 4% /boot/efi
tmpfs 301M 0 301M 0% /run/user/0



root@pipoca:/# dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/(.*)-([^0-9]+)/1/")"'/d;s/^[^ ]* [^ ]* ([^ ]*).*/1/;/[0-9]/!d' | xargs sudo apt-get -y purge
dpkg-query: no packages found matching linux-*
Reading package lists... Error!
E: Write error - write (28: No space left on device)
E: IO Error saving source cache
E: The package lists or status file could not be parsed or opened.


using



sudo apt autoremove
sudo apt autoclean


I got



E: Write error - write (28: No space left on device)
E: Write error - write (28: No space left on device)


using



root@pipoca:/# sudo journalctl --vacuum-time=2d
Vacuuming done, freed 0B of archived journals on disk.
root@pipoca:/# journalctl --vacuum-size=500M
Vacuuming done, freed 0B of archived journals on disk.

root@pipoca:/# apt-get update
Hit:1 http://mirrors.digitalocean.com/ubuntu xenial InRelease
Hit:2 http://mirrors.digitalocean.com/ubuntu xenial-updates InRelease
Hit:3 http://mirrors.digitalocean.com/ubuntu xenial-backports InRelease
Hit:4 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-xenial InRelease
Hit:5 http://software.virtualmin.com/vm/6/gpl/apt virtualmin-universal InRelease
Hit:6 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:7 https://packages.microsoft.com/ubuntu/16.04/prod xenial InRelease
Hit:8 http://archive.ubuntu.com/ubuntu xenial InRelease
not a reference at /usr/bin/apt-show-versions line 222.
Reading package lists... Done
E: Problem executing scripts APT::Update::Post-Invoke-Success 'test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i'
E: Sub-process returned an error code




This question already has an answer here:



  • Root drive is running out of disk space. How can I free up space?

    12 answers







14.04






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 13 at 16:39







Amadeu Antunes

















asked Apr 13 at 15:55









Amadeu AntunesAmadeu Antunes

1316




1316




marked as duplicate by RoVo, karel, Eric Carvalho, Fabby, waltinator 10 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









marked as duplicate by RoVo, karel, Eric Carvalho, Fabby, waltinator 10 hours ago


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









  • 2





    As apt needs some space to run, first delete some files, then run apt

    – RoVo
    Apr 13 at 16:31












  • Use uname -r to get the release # of the current kernel. Delete NO file/dir with this string as part of its name. Look for (with ls -l) old files in /var/log/, /boot/, /home/$USER and delete them manually. Then sudo apt autoremove. This is why many people have separate partitions for /, /home', /boot`.

    – waltinator
    10 hours ago












  • 2





    As apt needs some space to run, first delete some files, then run apt

    – RoVo
    Apr 13 at 16:31












  • Use uname -r to get the release # of the current kernel. Delete NO file/dir with this string as part of its name. Look for (with ls -l) old files in /var/log/, /boot/, /home/$USER and delete them manually. Then sudo apt autoremove. This is why many people have separate partitions for /, /home', /boot`.

    – waltinator
    10 hours ago







2




2





As apt needs some space to run, first delete some files, then run apt

– RoVo
Apr 13 at 16:31






As apt needs some space to run, first delete some files, then run apt

– RoVo
Apr 13 at 16:31














Use uname -r to get the release # of the current kernel. Delete NO file/dir with this string as part of its name. Look for (with ls -l) old files in /var/log/, /boot/, /home/$USER and delete them manually. Then sudo apt autoremove. This is why many people have separate partitions for /, /home', /boot`.

– waltinator
10 hours ago





Use uname -r to get the release # of the current kernel. Delete NO file/dir with this string as part of its name. Look for (with ls -l) old files in /var/log/, /boot/, /home/$USER and delete them manually. Then sudo apt autoremove. This is why many people have separate partitions for /, /home', /boot`.

– waltinator
10 hours ago










2 Answers
2






active

oldest

votes


















4














Your hard drive is full.



As df does not show any other empty space, you will need to delete something.



First remove not needed data from your /home, e.g. you could move Pictures, Videos and Music to an external drive or remove them you don't need anymore. Remove files in ~/.thumbnails folder. You might use bleachbit to gain more space (it tries to delete cached files, etc.).



After that, try:



sudo apt autoremove
sudo apt autoclean


But all this is just a temporary solution, 25G is just very little space for OS and data.



I see two possibilities:



  • Install less programs and keep less data on your drive.

or



  • Install a second hard drive for /home.





share|improve this answer
































    2














    Looks like you need to delete some files anywhere under /. Your df -h output shows that is full.



    You might find du (disk usage) helpful in seeing what specific directories have a lot of data, maybe more than expected.



    Often /var/log and ~/Downloads accumulate a lot of unnecessary data.



    Sometimes journalctl - the systemd log facility, uses a lot of memory unexpectedly. The amount it uses can be controlled:



    Retain only the past two days:



    sudo journalctl --vacuum-time=2d


    Retain only the past 500 MB:



    journalctl --vacuum-size=500M





    share|improve this answer





























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      4














      Your hard drive is full.



      As df does not show any other empty space, you will need to delete something.



      First remove not needed data from your /home, e.g. you could move Pictures, Videos and Music to an external drive or remove them you don't need anymore. Remove files in ~/.thumbnails folder. You might use bleachbit to gain more space (it tries to delete cached files, etc.).



      After that, try:



      sudo apt autoremove
      sudo apt autoclean


      But all this is just a temporary solution, 25G is just very little space for OS and data.



      I see two possibilities:



      • Install less programs and keep less data on your drive.

      or



      • Install a second hard drive for /home.





      share|improve this answer





























        4














        Your hard drive is full.



        As df does not show any other empty space, you will need to delete something.



        First remove not needed data from your /home, e.g. you could move Pictures, Videos and Music to an external drive or remove them you don't need anymore. Remove files in ~/.thumbnails folder. You might use bleachbit to gain more space (it tries to delete cached files, etc.).



        After that, try:



        sudo apt autoremove
        sudo apt autoclean


        But all this is just a temporary solution, 25G is just very little space for OS and data.



        I see two possibilities:



        • Install less programs and keep less data on your drive.

        or



        • Install a second hard drive for /home.





        share|improve this answer



























          4












          4








          4







          Your hard drive is full.



          As df does not show any other empty space, you will need to delete something.



          First remove not needed data from your /home, e.g. you could move Pictures, Videos and Music to an external drive or remove them you don't need anymore. Remove files in ~/.thumbnails folder. You might use bleachbit to gain more space (it tries to delete cached files, etc.).



          After that, try:



          sudo apt autoremove
          sudo apt autoclean


          But all this is just a temporary solution, 25G is just very little space for OS and data.



          I see two possibilities:



          • Install less programs and keep less data on your drive.

          or



          • Install a second hard drive for /home.





          share|improve this answer















          Your hard drive is full.



          As df does not show any other empty space, you will need to delete something.



          First remove not needed data from your /home, e.g. you could move Pictures, Videos and Music to an external drive or remove them you don't need anymore. Remove files in ~/.thumbnails folder. You might use bleachbit to gain more space (it tries to delete cached files, etc.).



          After that, try:



          sudo apt autoremove
          sudo apt autoclean


          But all this is just a temporary solution, 25G is just very little space for OS and data.



          I see two possibilities:



          • Install less programs and keep less data on your drive.

          or



          • Install a second hard drive for /home.






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 13 at 16:35

























          answered Apr 13 at 16:29









          RoVoRoVo

          8,3541944




          8,3541944























              2














              Looks like you need to delete some files anywhere under /. Your df -h output shows that is full.



              You might find du (disk usage) helpful in seeing what specific directories have a lot of data, maybe more than expected.



              Often /var/log and ~/Downloads accumulate a lot of unnecessary data.



              Sometimes journalctl - the systemd log facility, uses a lot of memory unexpectedly. The amount it uses can be controlled:



              Retain only the past two days:



              sudo journalctl --vacuum-time=2d


              Retain only the past 500 MB:



              journalctl --vacuum-size=500M





              share|improve this answer



























                2














                Looks like you need to delete some files anywhere under /. Your df -h output shows that is full.



                You might find du (disk usage) helpful in seeing what specific directories have a lot of data, maybe more than expected.



                Often /var/log and ~/Downloads accumulate a lot of unnecessary data.



                Sometimes journalctl - the systemd log facility, uses a lot of memory unexpectedly. The amount it uses can be controlled:



                Retain only the past two days:



                sudo journalctl --vacuum-time=2d


                Retain only the past 500 MB:



                journalctl --vacuum-size=500M





                share|improve this answer

























                  2












                  2








                  2







                  Looks like you need to delete some files anywhere under /. Your df -h output shows that is full.



                  You might find du (disk usage) helpful in seeing what specific directories have a lot of data, maybe more than expected.



                  Often /var/log and ~/Downloads accumulate a lot of unnecessary data.



                  Sometimes journalctl - the systemd log facility, uses a lot of memory unexpectedly. The amount it uses can be controlled:



                  Retain only the past two days:



                  sudo journalctl --vacuum-time=2d


                  Retain only the past 500 MB:



                  journalctl --vacuum-size=500M





                  share|improve this answer













                  Looks like you need to delete some files anywhere under /. Your df -h output shows that is full.



                  You might find du (disk usage) helpful in seeing what specific directories have a lot of data, maybe more than expected.



                  Often /var/log and ~/Downloads accumulate a lot of unnecessary data.



                  Sometimes journalctl - the systemd log facility, uses a lot of memory unexpectedly. The amount it uses can be controlled:



                  Retain only the past two days:



                  sudo journalctl --vacuum-time=2d


                  Retain only the past 500 MB:



                  journalctl --vacuum-size=500M






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Apr 13 at 16:22









                  Craig HicksCraig Hicks

                  28719




                  28719













                      Popular posts from this blog

                      getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

                      Cannot Extend partition with GParted The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election ResultsCan't increase partition size with GParted?GParted doesn't recognize the unallocated space after my current partitionWhat is the best way to add unallocated space located before to Ubuntu 12.04 partition with GParted live?I can't figure out how to extend my Arch home partition into free spaceGparted Linux Mint 18.1 issueTrying to extend but swap partition is showing as Unknown in Gparted, shows proper from fdiskRearrange partitions in gparted to extend a partitionUnable to extend partition even though unallocated space is next to it using GPartedAllocate free space to root partitiongparted: how to merge unallocated space with a partition

                      Marilyn Monroe Ny fiainany manokana | Jereo koa | Meny fitetezanafanitarana azy.