stevetold.me

Linux: Find out whats using up your file system with these handy commands

  • Dev Ops and Linux

Alas, there are so many good sites already that give you every kind of command line tip available for Linux. So why would I also post them? For absolutely no good reason that’s why!

I am betting you will have a better way, and that’s OK by me. Post it.

Here we go…

How can I see the top 10 largest directories in Linux? Try:

du -hsx * | sort -rh | head -10

Note the h option to sort may not work for you. This will give you human readable sizes.

How can I see what is using up my inodes? Try:

for i in `find . -type d `; do echo `ls -a $i | wc -l` $i; done | sort -n

 

 

 

 

 

January 25, 2013 Steve

Post navigation

Using Percona’s Xtrabackup to back up MySQL to “remote” host → ← Consumer Controlled Cloud Based Medical Records

Related Posts

Using Percona’s Xtrabackup to back up MySQL to “remote” host

Quick note about one method to back up MySQL database to another host. There are lots of ways to do this but I use this one the most. Note: you […]

Recent Posts

Leveraging Artificial Intelligence in Home Healthcare to Improve Quality of Care

The advent of Artificial Intelligence (AI) in healthcare has enabled the development of more efficient and accurate home healthcare solutions. Some examples of home healthcare solutions enabled [...]

More Info

Using Percona’s Xtrabackup to back up MySQL to “remote” host

Quick note about one method to back up MySQL database to another host. There are lots of ways to do this but I use this one the most. Note: you […]

More Info

Consumer Controlled Cloud Based Medical Records

Introduction The future has arrived. It is time for cloud based integrated healthcare records and time for the individual consumer to maintain control of their own data. Although challenging and [...]

More Info

Mobile Technology is a Home Health Care Game Changer.

Mobile Technology, such as cell phones, “smart” phones, and internet connected tablets, have fundamentally changed the way that the average American accesses the internet, purchases [...]

More Info

Categories

  • Dev Ops and Linux
  • Healthcare

Search

Recent Posts

  • Leveraging Artificial Intelligence in Home Healthcare to Improve Quality of Care
  • Using Percona’s Xtrabackup to back up MySQL to “remote” host
  • Linux: Find out whats using up your file system with these handy commands
  • Consumer Controlled Cloud Based Medical Records
  • Mobile Technology is a Home Health Care Game Changer.

Recent Comments

    Tags

    cloud healthcare privacy
    January 2013
    M T W T F S S
     123456
    78910111213
    14151617181920
    21222324252627
    28293031  
    « Feb   Oct »

    Archives

    • February 2023
    • October 2013
    • January 2013
    • February 2012
    • December 2011
    Powered by WordPress | theme cats456