10
2
I ran out of disk space today while trying to compile a program. When I ran df -h, I noticed that the partitions were wonky. df -h yields
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 4.6G 4.4G 0 100% /
udev 32G 4.0K 32G 1% /dev
tmpfs 13G 724K 13G 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 32G 0 32G 0% /run/shm
I've got a few questions about this output.
- Why is all of the space assigned to udev? Was it just a mistake that the user made during installation or is there a reason for this?
- If I repartition, do I delete udev or just shrink it?
You cannot shrink /dev partition, it is a VFS which resides wholly in memory, like tmpfsa – MariusMatutiae – 2013-11-13T22:04:24.337
So is that just unused disk space? Can I just increase the partition size of /dev/sda1 to access the unused storage? – Sean Egan – 2013-11-13T23:44:02.353