Linux Server Disk Full? Quickly Find Large Files and Safely Delete Them

1. Basic Commands for Checking Disk Spaceunsetunset 1.1 Check Disk Usage # Check disk usage for all mounted points df -h # Check disk usage for a specific directory df -h /home 1.2 Find Large Files and Directories # Find files larger than 100MB in the current directory find . -type f -size +100M -exec … Read more

Modify /tmp Auto Cleanup Cycle in Linux

Modify /tmp Auto Cleanup Cycle in Linux

1. Problem Phenomenon 2. Problem Resolution In Linux systems using the systemd program, files in the <span>/tmp</span> directory are automatically cleaned up. By default, the system uses the <span>systemd-tmpfiles-clean</span> service to manage files in the <span>/tmp</span> directory and decides when to delete them based on their access time. The specific cleanup strategy depends on the … Read more

Removing Old Drivers to Free Up Space on Your Computer

Removing Old Drivers to Free Up Space on Your Computer

When installing or updating device drivers in Windows, old versions of drivers remain. Over time, the accumulation of these old drivers can take up a significant amount of system space. Below, I will introduce how to safely delete these old driver files. Author: Yu Mufa ○ Knowledge: Understanding Old Drivers Open the “C:\Windows\System32\DriverStore\FileRepository” folder, and … Read more

Embedded Linux: Registering Thread Cleanup Handlers

Embedded Linux: Registering Thread Cleanup Handlers

Click the blue text above to follow us In Linux multithreading programming, specific cleanup operations can be performed when a thread terminates by registering a thread cleanup handler. This is similar to using atexit() to register process termination handlers. The thread cleanup handler is used to perform resource release or cleanup tasks when a thread … Read more

How to Free Up Disk Space in Android Studio

How to Free Up Disk Space in Android Studio

Hot Articles | Click Title to Read How to Level Up and Find a Suitable Job in the Job-Hopping Season of September and October? Real and Reliable: Baidu’s Job Levels, T Series, Salaries, and Promotion Rules My Ten Years of Technical Insights at Alibaba Is your disk space running low after using Android Studio for … Read more