Find the answer to your Linux question:
Results 1 to 2 of 2
Hey, My school puts a quota on the number of files one can have which normally wouldn't be a problem, but I've been using komodo edit which creates a ton ...
  1. #1
    Just Joined!
    Join Date
    Sep 2010
    Posts
    1

    Over file quota, Help Please

    Hey,

    My school puts a quota on the number of files one can have which normally wouldn't be a problem, but I've been using komodo edit which creates a ton of temporary files. Now I'm over the quota and can't create any new files or really do anything. I have a few questions that will hopefully help me resolve this problem...

    1.) What commands could i use to find the place where these files are being stored (i'm not sure what the file extension is, but maybe a way to look at the number of files in different places would be helpful)

    2.) What are the commands to remove all of the files of this type, once i discover what the extension is and the location of the files.

    Any help would be greatly appreciated!

  2. #2
    Linux Guru Irithori's Avatar
    Join Date
    May 2009
    Location
    Munich
    Posts
    2,100
    1)
    Code:
    ncdu
    although I doubt, that ncdu is installed.

    But this will work:
    Code:
    du -hs ~/*
    Then iterate though the directories

    2)
    Code:
    find ~ -type f -iname "<FILENAME>"
    Where <FILENAME> identifies what you want to find.

    The above command will do no harm, just list the found files.
    Once you are sure, that all found files shall be deleted, add "-delete"
    You must always face the curtain with a bow.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...