Linux home user cache

How to clean caches in my homedir

My home directory is getting huge (100GB plus). When backupping it I notices that there are quite some caches there. Which important caches are there in my homedir and how should I clean them? One cache in particular is bothering me, the cache in .gvfs, where a copy of my network harddisk seems to be stored. How do I neatly clear this cache?

3 Answers 3

The .gvfs is where network attached folders live. If you’ve used «Places/Connect to Server», or typed smb://server/share into Nautilus, that’s where your network drive will «mount».

You need to exclude your .gvfs folder from your back up, unless you actually want your network drive and all its contents to be included in your back up.

Other places you should consider excluding :

  • ~/.mozilla/**yourprofilename**/Cache
  • ~/.cache (this is also where Chromium puts its cache, if you use that instead of firefox)
  • ~/.thumbnails
  • if you use VirtualBox, your guest systems are likely stored in .VirtualBox. On the one hand, you’ll want to back those up. On the other, they’ll be huge, so maybe you should back them up separately from your generic home drive backup?
  • if you use Dropbox, you’ll probably not have much need to back that up! Exclude wherever you told Dropbox to put its folder.

Finally, you can do some of this analysis yourself! Go to your Applications menu and choose Accessories, then run «Disk Usage Analyzer» (AKA baobab).

Источник

ubuntu clear user cache

To delete a cache, select the entry and then click the Clean button present at the bottom-right corner of the tool’s UI. Before you jump in and start cleaning everything using Ubuntu Cleaner, keep in mind that caches are there for a purpose (as was explained in the beginning of the tutorial).

Is it safe to delete user cache?

It’s not bad to clear your cached data now and then. Some refer to this data as “junk files,” meaning it just sits and piles up on your device. Clearing the cache helps keep things clean, but don’t rely on it as a solid method for making new space.

Can I delete home user cache?

For the most part you can delete most anything in your home directory, programs or applications that require . cache (or other dot files such as . local ) will re-create them. Most of the time, at worst, you will lose custom configurations, but no real harm to the system.

Where is cache folder in Ubuntu?

Cache file location. A lot of cache files are stored in the . cache folder in the home directory. Each user on a Linux OS has a .

Читайте также:  Vkp 80 ii драйвер linux

How do I clear my apartment cache?

The clean command clears out the local repository of downloaded package files. It removes everything except the partials folder and lock file from /var/cache/apt/archives/ . Use apt-get clean to free up disk space when necessary, or as part of regularly scheduled maintenance.

How do I clear apt-get cache?

You can run ‘sudo apt-get clean’ to clean out any cached .

Can I delete cache files?

Older Android versions gave you the option to delete all cached files at once by going to Settings > Storage > Cached Data. From there, simply tap OK when you see the option to delete all cache files. Unfortunately, there’s no built-in way to clear all the cache on modern versions of Android.

Does clearing cache delete passwords?

The answer is “No” and the passwords do not get deleted along with the cache if you proceed with clearing the cache without checking the checkbox before the ‘Passwords and other sign-in data’ field.

How do I empty the cache on my iPhone?

  1. Open your iPhone’s settings.
  2. Scroll until you see the eligible app, then tap it.
  3. Look for a «Clear cache» option. If the toggle next to it is green, tap it to clear the app’s cache.

How do I clean up my home directory in Linux?

Actually, the best way to clean you home folder is backup your personal document then rm -rf ~/*; rm -rf ~/. *. But if you have a heavy-configured desktop environment or other applications and you don’t know how to backup their configuration files, this is not a good choice.

What is cache in Linux?

Under Linux, the Page Cache accelerates many accesses to files on non volatile storage. This happens because, when it first reads from or writes to data media like hard drives, Linux also stores data in unused areas of memory, which acts as a cache.

Where cache files are stored in Linux?

Cache files are stored in /home/username/. cache which mostly consists of your browser’s data, IDE’s (if you use any ) and other software.

What is Cache tracker?

According to its website, “Tracker is a filesystem indexer, metadata storage system and search tool.” . This is because as well as searching for files in the traditional way, by name and location, Tracker searches files’ contents and metadata.”

What is cache directory?

Local cache directories on the server are only used with caches that use the compact storage type. The server writes one bundle file (which can include up to about 16,000 tiles) to the local cache directory. When complete, the bundle is moved to the shared cache directory.

How to Build a Server at Home

Server

What do I need to build a server at home?How much does it cost to build a server?What can I use a home server for?Is a home server worth it?How much R.

Skype for Arch Linux

Linux

How do I add Skype to my arch?Can I use Skype on Linux?Does Arch Linux have a GUI?Is Arch Linux good for servers?How install Skype on manjaro?Does Sky.

How to Install Apache 2.4

Apache

Open a command prompt: Run as Administrator. Navigate to directory c:/Apache24/bin. Add Apache as a Windows Service: httpd.exe -k install -n «Apache H.

Latest news, practical advice, detailed reviews and guides. We have everything about the Linux operating system

Источник

How can I clean HOME folder in linux?

There is a way to clean in a controlled way the $HOME folders than usually save cache files? E.g: I have a .config folder with more than 300MB. How can I clean it?. Is there a program that can be used to control the saved files? In .mozilla folder you can clean up using the Firefox options.

Читайте также:  Линукс количество файлов папке

One that works with all applications, no. Note that the cache files should be stored in .cache, not .config. In the case of web browser, a large directory in .config is usually due to the browser’s history.

2 Answers 2

Bleachbit is a program that supports the configuration directories of many programs and is able to delete things that aren’t quite necessary (bleachbit is similiar to ccleaner on windows, if you happen to know that).

At least Ubuntu has it in it’s repositories.

You can see on repology, which distribution provides Bleachbit packages. repology.org/metapackage/bleachbit/versions

In the $HOME/.config folder there are files created by many different programs, and as such there is no easy way to manage them all.

These files should be created/managed/removed by each single application, and deleting them can (will) result in loss of data (personal configurations in this case).

Being that all the data contained should be configuration data, this folder should not contain a lot of data, 300MB is quite a lot of config.

You can enquire which subfolder contains most of the data by using the command:

and you can see by yourself which folder has grown out of control.

Источник

What is the meaning of «/.cache/» in a path or directory?

While my computer came up with several paths to a number of copies of the same file, it also came up with a path that looks like this:

2 Answers 2

The dot . at the start of a file name marks a file as hidden, which is why you don’t see it.

In Files (Nautilus), you can use Ctrl + h to show hidden files. Or from the menu: View >> Show hidden files .

In a terminal, you can use ls -a to show all files, including hidden files.

The /home//.cache directory is commonly used by programs to store information that is specific to the user.

The .cache is intended to be used as an area for a program’s temporary or working data. In practice, however, it is still a good idea to understand how a program uses its data in the /.cache before deleting it.

~/.cache/ is used for temporary/intermediate working data; I wouldn’t really call it “information” but more like scratch paper that you (can) throw away after you are done.

Yes, but over the years I’ve noticed some progs keep more permanent info in there. But it’s a good comment and I’ll add it in.

While data is often kept for longer because that saves time on the next run, deleting it should have no adverse effects (e.g. keeping thumbnails of pictures there avoids having to re-thumbnail them, but if you delete them it is no problem to make new thumbnails). And if applications keep important data there, you should certainly file bug reports with them.

@JanC Yes, after using that example I looked into it further and realized that was I was incorrect on that one. But I’m not going to argue point by point. I made a general statement that I think is true: programs don’t always respect the difference and you shouldn’t feel that anything in .cache is safe to get rid of. I stand by this view. Plus the answer is about about the dot, not the purpose of the cache. I added that just as a general warning that I think is fair as it stands. 🙂

Читайте также:  Linux start process and exit

The ~/.cache/ directory is defined in the XDG Base Directory Specification to be used for “user-specific non-essential (cached) data”. It’s similar to what system-wide applications or services would put in /var/cache/ .

The files in that directory are usually used by the application to make things go faster, to store logs or other data that can be useful to debug problems or recover from a crash, to keep a local version of data that can be (re-)downloaded from the network, etc. Deleting them while the application is not running should not have serious effects, but it will often have some effect.

A good example is thumbnails: keeping them there makes the file manager a lot faster when viewing a directory with a lot of pictures that you visited before, but if you delete them it will simply recreate the thumbnails (which might take a long time if there are many images, of course).

The . at the front of a directory or file name makes it “hidden” on UNIX/Linux systems. You can view hidden files in the default Ubuntu file manager by pressing Ctrl + H , or ViewShow Hidden Files in the menu (and the same to hide them again). Many of the other hidden files or directories you will see that way contain configuration or other data (e.g. bookmarks, e-mail, etc.) that might be important for you, so be careful not to delete those!

Источник

is it safe to delete ~/home//.cache/ [duplicate]

IF it’s cache it is probably meant to be cleared eventually, but can I just manually delete the whole .cache folder? It’s eating over 10 gigabytes on a 64 GB partition. I think it is mostly unity game engine and wine. The os is Manjaro.

Yes. But you don’t have to wipe it off indiscriminately — you can leave ~/.cache/fontconfig in place for instance.

per your recent edit, are you certain that this cache directory is multiple levels below your home directory? ~ is frequently used to represent /home/ , so it’s easy to mis-read the title of your question. Do you have any clues as to what created this extra-level .cache directory?

1 Answer 1

I wouldn’t delete «~/home//.cache/» itself, but it should be fine deleting everything below that.

Edit: I should add that I’d want to know exactly what’s taking up that much space. A handy GUI tool for that is Filelight. Or, from the shell:

This will give you directory total sizes in human readable format.

This is what I recommend doing, especially before you run that backup you’ve been meaning to do of all those dot directories that you keep putting off for some reason.

I did use a gui tool, I think it might have even been Firelight to track it down, and that is how I discovered that nearly the entire 10 GB is the unity game engine and wine.

Linked

Hot Network Questions

Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2023.7.14.43533

Linux is a registered trademark of Linus Torvalds. UNIX is a registered trademark of The Open Group.
This site is not affiliated with Linus Torvalds or The Open Group in any way.

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Источник

Оцените статью
Adblock
detector