Skip to main content

Disk usage full

Comments

2 comments

  • quizknows
    devices like /dev/sda or /dev/hda in dev are "block devices." They represent physical disks, so they are not normal files or folders. /dev/hda1 represents the first partition on the physical disk. use a command such as "df -h" to see what folder or mount point places files on that. For example if I want to check space on /dev/sda1 I run "df -h" from a shell and I see this:
    Filesystem Size Used Avail Use% Mounted on /dev/sda1 440G 8.3G 410G 2% / /dev/sdc1 915G 96G 774G 11% /home
    So to free up space on that disk I would need to remove files under / (the root directory) that aren't assigned to other partitions. For example to free space on /dev/sdc1 I would have to remove files under /home.
    0
  • cPanelMichael
    Hello :) In addition to the previous post, the following document will help you determine what's taking up your disk space: How to Manage your Hard Drive Space - cPanel Knowledge Base - cPanel Documentation Thank you.
    0

Please sign in to leave a comment.