Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 474581
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T00:18:07+00:00 2026-05-13T00:18:07+00:00

Is there a faster way to remove a directory then simply submitting rm -r

  • 0

Is there a faster way to remove a directory then simply submitting

rm -r -f *directory*

? I am asking this because our daily cross-platform builds are really huge (e.g. 4GB per build). So the harddisks on some of the machines are frequently running out of space.

This is namely the case for our AIX and Solaris platforms.

Maybe there are ‘special’ commands for directory remove on these platforms?

PASTE-EDIT (moved my own separate answer into the question):

I am generally wondering why ‘rm -r -f’ is so slow. Doesn’t ‘rm’ just need to modify the ‘..’ or ‘.’ files to de-allocate filesystem entries.

something like

mv *directory* /dev/null

would be nice.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T00:18:08+00:00Added an answer on May 13, 2026 at 12:18 am

    For deleting a directory from a filesystem, rm is your fastest option.
    On linux, sometimes we do our builds (few GB) in a ramdisk, and it has a really impressive delete speed 🙂 You could also try different filesystems, but on AIX/Solaris you may not have many options…

    If your goal is to have the directory $dir empty now, you can rename it, and delete it later from a background/cron job:

    mv "$dir" "$dir.old"
    mkdir "$dir"
    # later
    rm -r -f "$dir.old"
    

    Another trick is that you create a seperate filesystem for $dir, and when you want to delete it, you just simply re-create the filesystem. Something like this:

    # initialization
    mkfs.something /dev/device
    mount /dev/device "$dir"
    
    
    # when you want to delete it:
    umount "$dir"
    # re-init
    mkfs.something /dev/device
    mount /dev/device "$dir"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to replace titles faster then str_replace function? I've got a
I currently use: BufferedReader input = new BufferedReader(new FileReader(filename)); Is there a faster way?
Just wondering if there is a faster way to split a file into N
I wondering if there is a faster (GPU time) way to draw a full-screen
Is there a way to stream video with opencv faster? i'm using Mat img;
I thought this might be a fast way to remove the contents of a
Given a directed, connected graph with only positive edge weights, are there faster algorithms
Is there any equivalent of String.indexOf() for arrays? If not, is there any faster
I got my code working, but i feel as if there is a faster
Is there any benchmark or comparison which is faster: place nginx in front of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.