• About Us
  • Announce
  • Privacy Policy
  • Contact us
MasterTrend News
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Mobile
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • What's new
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Mobile
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • What's new
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
MasterTrend News
No result
See all results
Start Tutorials

6 Commands to Clean Ubuntu: Make Your PC Look Like New! 🔥🖥️

MasterTrend Insights by MasterTrend Insights
April 15, 2025
in Tutorials
Reading time:6 min read
To To
0
6 Commands to Clean Ubuntu: Free Up Space NOW!
140
SHARED
388
Views
Share on FacebookShare on Twitter

Contents

  1. 6 Commands to Clean Up Ubuntu: Free Up Space NOW! 💻✨
  2. 1. Uninstall Programs
  3. 2. Clear the APT Cache
  4. 3. Remove Packages You No Longer Need
  5. 4. Clean the Journal Records
  6. 5. Clear the Thumbnail Cache
  7. 6. Delete Duplicate Files

6 Commands to Clean Up Ubuntu: Free Up Space NOW! 💻✨

Keeping your computer free of digital clutter is essential for its maintenance, as is ensuring you always have space for new files and programs. Here are some simple commands that will allow you to clean up your Ubuntu system from the terminal, without having to use the graphical interface—well, with one exception. 🖥️✨

Please note that in most cases these commands will work on any system Based on Debian. I tested them on both an Ubuntu installation and a Linux Mint machine. On both systems, I actually freed up a lot more space than I expected. 🎉

1.  Uninstall Programs

The first step to cleaning your system Ubuntu is to check the programs you have installed and remove them. To do this, you'll need to get a list of everything installed on your system. There are two terminal commands for this:

dpkg --list

Or alternatively this one:

apt list --installed

However, I'm not a fan of this approach as it will result in huge lists that you'll have to manually navigate through, plus it will include dependencies you may not be familiar with. Unless you know what you're doing, it's better to go to your list of installed applications in the graphical interface. Depending on the system you're using, there are different locations, but it's usually in your Software Center. Below, I'll show you what it looks like in Linux Mint.

Image of a list of installed programs in Linux Mint.

To uninstall programs, simply do so through the Software Center or enter the following in Terminal:

sudo apt-get remove program-name

Remember, you can group multiple programs into a single command; just add their names without commas or anything else. For more details, check out our full article on how to uninstall software in Ubuntu. 📦💻

2.  Clear the APT Cache

Most Debian-based distributions, including Ubuntu, use APT to manage programs. However, APT maintains a cache of downloaded files and doesn't automatically clean it up. If you've been using your system for a while, it could take up a lot of space, so you need to clean it up and get some space back on disk. 💾🧹

First, let's find out how much space the cache is using with the "du" command. We also need to add the cache location, which is /var/cache/apt by default.

sudo du -sh /var/cache/apt

You will receive a short message showing how much space the directory is taking up.

Image of the result of the query about the application cache size.

Almost 600MB in my case, which is worth clearing. To do so, enter the following command:

sudo apt-get clean

In my case, this left only 44KB of files in the cache, a much better result! 🎊

Image of the terminal output when clearing the Ubuntu cache.

If you'd like, you can also disable automatic package caching so you don't have to deal with this issue again. 🛠️🚫

3.  Remove Packages You No Longer Need

One of the biggest ways I was losing space was by not removing unnecessary packages, leftovers from when I installed a program and I didn't uninstall the installer. Ubuntu offers a very simple command that cleans up all these unnecessary files:

sudo apt-get autoremove

This cleans up installers, as well as all kinds of package files. Some of them, like kernel updates, are huge, and if you haven't cleaned up in a while, this can save you several gigabytes of disk space. For example, I freed up almost 1GB of space on my Mint installation. 🎈🌟

Image of the terminal output when using autoremove on Ubuntu.

4.  Clean Journal Records

Like any computer system, Ubuntu logs what happens on the system. All the actions you perform, connections established, and other things are stored in logs that are never deleted. These are mostly saved in simple text files, but because there are so many of them, the cumulative effect is considerable. 📜⚡

You can run the following command to find out how much space your logs are taking up:

journalctl --disk-usage

I did this and found they were taking up over 3GB, which is excessive. To remove this, the simplest command is the following, where the number indicates how many days you want to go back. As a precaution, I chose a week.

sudo journalctl --vacuum-time=7d

This cleared almost the entire 3.3GB, leaving me with a much more manageable 24MB. ⚖️📉

Image of the terminal output after cleaning the logs.

5.  Clear the Thumbnail Cache

Every time you add a photo to Ubuntu, a thumbnail is created for easy viewing in the file manager. However, these thumbnails survive even after the images they depend on are deleted, meaning they're just another class of useless files taking up space on your system. To find out exactly how much, run the following command, which, as before, uses the "du" command. 📸🗑️

du -sh ~/.cache/thumbnails

The dot before “cache” indicates that this is a hidden directory, although that won’t affect how you interact with it.

In my case, the directory had over 300MB of files, which meant it needed to be cleaned up. The best way to do this is with the following command:

rm -rf ~/.cache/thumbnails/*

I then checked the directory size again and found it was now only 4KB - an absolutely incredible change! 🎉📁

Image of the terminal output when clearing thumbnails in Ubuntu.

6.  Delete Duplicate Files

Finally, you also have the option to find and remove duplicate files. Unfortunately, Ubuntu doesn't have built-in tools for this. Instead, I recommend reading our article on how to find and remove duplicate files in Linux, which has several ways to do so. 🔍✂️

I followed the instructions in our article and managed to remove almost 500MB of duplicate files that were taking up space on my hard drive, which makes a huge difference! 🚀


Using any or all of these tips, you can easily free up several gigabytes of space on your system Ubuntu. If you specifically need more space to speed up your system's boot, check out our guide on how to free up space on your Linux boot partition. 🚀🗄️

Share this:
FacebookLinkedInPinterestXRedditTumblrBlueskyThreadsShareChatGPTClaudeGoogle AIGrok
Tags: EvergreenContentProductivityTechtips
Previous Publication

Windows Phone Link: 5 Hidden Tricks You Should Try NOW 🔥📱

next post

⚠️ Local System Host Service: Fix disk at 100% easily ✅

MasterTrend Insights

MasterTrend Insights

Our editorial team shares a deep-dive analysis, tutorials and recommendations for getting the most out of your devices and digital tools.

RelatedPublications

How to pair AirPods with a Chromebook: Person opens the AirPods case and connects them via Bluetooth to an HP laptop.
Tutorials

How to pair AirPods with Chromebook: Connect them in minutes! ⏱️🔌

November 20, 2025
66
RESULT_CODE_HUNG - Person using laptop with Chrome error "Aw, Snap!" (RESULT_CODE_HUNG), showing a 1-click solution that fixes Google Chrome and prevents it from freezing.
Tutorials

RESULT_CODE_HUNG: One-click solution that fixes Chrome 🚀

November 19, 2025
77
Rename PC in Windows 11: Settings screen showing "Change Computer Name", guide with 3 quick methods: CMD, PowerShell and Settings.
Tutorials

Rename your PC: done in 10 seconds, goodbye weird names 🔥

November 19, 2025
148
GIMP Stable Boy - User at a desk working in GIMP; screen shows GIMP Stable Boy plugin tutorial in Spanish for free generative fill-an open‑source Adobe alternative.
Tutorials

GIMP Stable Boy: Avoid Adobe and create magic for free 💥🚀

November 18, 2025
88
Disable autocorrect on iPhone: WhatsApp screen with keyboard open, steps to remove keyboard autocorrect on iOS.
Tutorials

Turn off autocorrect NOW: write freely in 1 min ⏱️🔥

November 6, 2025
79
Steam Damaged Update Files - How to fix the Steam error "damaged/corrupted update files"; Steam logo on dark background, step-by-step guide and solution.
Tutorials

Steam Corrupted Update Files: Fix in 2 min ⏳

November 6, 2025
92
next post
How to fix high disk, CPU, and memory usage of the Host Service: Local System.

⚠️ Local System Host Service: Fix disk at 100% easily ✅

5 2 votes
Article Rating
Subscribe
Access
Notify of
guest
guest
0 Comments
Oldest
Newest Most voted
Online Comments
See all comments

Stay Connected

  • 976 Fans
  • 118 Followers
  • 1.4 k Followers
  • 1.8 k Subscribers

Do not miss the latest in technology and gaming.
Tips unique, practical guides and analysis every day.

Subscription Form
  • Trends
  • Comments
  • Last
How to add clock on the Windows desktop 11: ¡3 tricks infallible!

How to add clock on the Windows desktop 11: Get more in minutes! ⏱️

1 May 2025
How to save game in REPO

How to save game in REPO 🔥 Discover the secret to not losing progress

7 July 2025
12 Best Alternatives to Lucky this program for Android

Alternatives to Lucky this program: the 12 apps best and easy! 🎮⚡

13 November 2025
🖥️ How to open 'Devices and printers' in Windows 11: 4 simple steps

🌟 How to open ‘Devices and printers’ in Windows 11: ¡Amazing trick!

November 20, 2025
Features of Gmail on Android: Save time with 5 tips

Features of Gmail in Android: you 5 tricks you did not know! 📱✨

12
Repair of motherboards - Repair MotherBoards

Repair of motherboards of Laptops

10
Install Windows 11 Home without Internet

Install Windows 11 Home without Internet

10
How to backup drivers in Windows 11/10 in 4 steps!

How to backup drivers in Windows 11/10 It Prevents errors! 🚨💾

10
Background App Refresh. A young woman in a classroom is showing on her iPhone the "Background App Refresh" option enabled in the app settings.

Background Update Activate it well and speed up your iPhone 🚀

November 23, 2025
Restart Windows Explorer - Woman restarting Windows Explorer from Task Manager in Windows to fix system errors in seconds.

Restart Windows Explorer: A Quick Trick That Saves Your PC ⚡

November 21, 2025
ASUS ROG Strix XG27ACMS 27-inch QHD gaming monitor with 320Hz refresh rate, shown on a gamer’s desk with an RGB keyboard and mouse displaying a high-definition cyberpunk scene.

ASUS ROG XG27ACMS, the fastest QHD, reveals its power 🚀

November 21, 2025
Wraithstones Nerathul - Image from Doom The Dark Ages showing the protagonist flying on a mechanical dragon towards a dark and stormy mountain, in the area where the Wraithstones are located, a guide to the location of all the Wraithstones in Doom The Dark Ages.

Wraithstones Nerathul: Easy Secrets to Obtaining Them ⚡

November 21, 2025

Recent News

Background App Refresh. A young woman in a classroom is showing on her iPhone the "Background App Refresh" option enabled in the app settings.

Background Update Activate it well and speed up your iPhone 🚀

November 23, 2025
52
Restart Windows Explorer - Woman restarting Windows Explorer from Task Manager in Windows to fix system errors in seconds.

Restart Windows Explorer: A Quick Trick That Saves Your PC ⚡

November 21, 2025
78
ASUS ROG Strix XG27ACMS 27-inch QHD gaming monitor with 320Hz refresh rate, shown on a gamer’s desk with an RGB keyboard and mouse displaying a high-definition cyberpunk scene.

ASUS ROG XG27ACMS, the fastest QHD, reveals its power 🚀

November 21, 2025
71
Wraithstones Nerathul - Image from Doom The Dark Ages showing the protagonist flying on a mechanical dragon towards a dark and stormy mountain, in the area where the Wraithstones are located, a guide to the location of all the Wraithstones in Doom The Dark Ages.

Wraithstones Nerathul: Easy Secrets to Obtaining Them ⚡

November 21, 2025
60
MasterTrend News logo

MasterTrend Info is your source of reference in technology: discover news, tutorials, and analysis of hardware, software, gaming, mobile, and artificial intelligence. Subscribe to our newsletter and don't miss any trend.

Follow us

Browse by Category

  • Gaming
  • Hardware
  • IA
  • Mobile
  • What's new
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows
Add-as-a-preferred-source-on-Google

Recent News

Background App Refresh. A young woman in a classroom is showing on her iPhone the "Background App Refresh" option enabled in the app settings.

Background Update Activate it well and speed up your iPhone 🚀

November 23, 2025
Restart Windows Explorer - Woman restarting Windows Explorer from Task Manager in Windows to fix system errors in seconds.

Restart Windows Explorer: A Quick Trick That Saves Your PC ⚡

November 21, 2025
  • About Us
  • Announce
  • Privacy Policy
  • Contact us

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

We've detected you might be speaking a different language. Do you want to change to:
es_ES Spanish
es_ES Spanish
en_US English
pt_BR Portuguese
fr_FR French
it_IT Italian
ru_RU Russian
de_DE German
zh_CN Chinese
ko_KR Korean
ja Japanese
th Thai
hi_IN Hindi
ar Arabic
tr_TR Turkish
pl_PL Polish
id_ID Indonesian
nl_NL Dutch
sv_SE Swedish
Change Language
Close and do not switch language
No result
See all results
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • pl_PLPolish
    • id_IDIndonesian
    • tr_TRTurkish
    • hi_INHindi
    • thThai
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
  • Gaming
  • Hardware
  • IA
  • Mobile
  • What's new
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

wpDiscuz
RedditBlueskyXMastodonHacker News
Share this:
MastodonVKWhatsAppTelegramSMSLineMessengerFlipboardHacker NewsMixNextdoorPerplexityXingYummly
Your Mastodon Instance