You are not logged in.

#1 2017-09-22 21:07:10

Barzan94
Member
Registered: 2017-09-22
Posts: 4

[SOLVED]Low disk space on "Filesystem root"

I'm getting low disk space error on my root file system. I recently cloned my hdd to a larger one and made my root partition larger but i am still getting this error

Last edited by Barzan94 (2017-09-22 22:36:47)

Offline

#2 2017-09-22 21:12:32

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,797

Re: [SOLVED]Low disk space on "Filesystem root"

Welcome to Arch Linux.  Post the full, unredacted output of df -h and mount


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#3 2017-09-22 21:15:24

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED]Low disk space on "Filesystem root"

Welcome to the forums Barzan94 smile

You've not given us any information to go on - please make an effort to do so in the future.
Can you post the outputs of df -h and mount.

Edit - Did you remember to resize the filesystem after growing the partition?

Last edited by Slithery (2017-09-22 21:16:33)


No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#4 2017-09-22 21:35:28

Barzan94
Member
Registered: 2017-09-22
Posts: 4

Re: [SOLVED]Low disk space on "Filesystem root"

Sorry for the late reply.
df -h

Filesystem      Size  Used Avail Use% Mounted on
dev             997M     0  997M   0% /dev
run            1002M  1.1M 1001M   1% /run
/dev/sda3       5.6G  5.3G   20M 100% /
tmpfs          1002M   15M  988M   2% /dev/shm
tmpfs          1002M     0 1002M   0% /sys/fs/cgroup
tmpfs          1002M  112K 1002M   1% /tmp
/dev/sda1       253M   36M  217M  15% /boot
tmpfs           201M   32K  201M   1% /run/user/120
tmpfs           201M  7.4M  194M   4% /run/user/1000

mount

proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
dev on /dev type devtmpfs (rw,nosuid,relatime,size=1020732k,nr_inodes=255183,mode=755)
run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
efivarfs on /sys/firmware/efi/efivars type efivarfs (rw,nosuid,nodev,noexec,relatime)
/dev/sda3 on / type ext4 (rw,relatime,data=ordered)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=24,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
configfs on /sys/kernel/config type configfs (rw,relatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
/dev/sda1 on /boot type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
tmpfs on /run/user/120 type tmpfs (rw,nosuid,nodev,relatime,size=205204k,mode=700,uid=120,gid=120)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=205204k,mode=700,uid=1000,gid=100)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=100)

Offline

#5 2017-09-22 21:38:44

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED]Low disk space on "Filesystem root"

slithery wrote:

Did you remember to resize the filesystem after growing the partition?


No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#6 2017-09-22 21:40:32

Barzan94
Member
Registered: 2017-09-22
Posts: 4

Re: [SOLVED]Low disk space on "Filesystem root"

oops, no I did not resize it. sorry I missed that

Offline

#7 2017-09-22 22:00:52

Barzan94
Member
Registered: 2017-09-22
Posts: 4

Re: [SOLVED]Low disk space on "Filesystem root"

okay that was the problem. thank you for you help smile

Offline

#8 2017-09-22 22:02:42

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED]Low disk space on "Filesystem root"

Great.

Don't forget to mark this thread [SOLVED]...
https://wiki.archlinux.org/index.php/Co … ow_to_post


No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

Board footer

Powered by FluxBB