Kali Linux Long Term Usage Part 1: Disk Usage
I am using Kali Linux on a regular basis inside a virtual machine (VirtualBox) and I have maintained my image for a couple of years.
Over the last months and years, the booting time got worse and worse, until it reached the following startup time:
|
|
Clearly, this is extraordinarily much, compared to other operating systems. The system has enough memory and computing resources, so clearly the culprit is inside the operating system.
In this series of blog posts, I would like to take you on my journey in discovering various optimizations and inefficiencies I discovered along the way.
Part 1 will cover optimizations with regard to hard disk usage:
Until recently, I thought it is enough to regularly update and clean the operating system with the following commands:
|
|
However, the autoremove
and autoclean
commands will of course only clean up resources that are related to the package manager apt
.
In general I can strongly recommend the tool ncdu
for determining the disk usage. Although du
does the job as well, ncdu
can be used interactively and will allow you to quickly explore the entire file system for possible candidates.
Go Cache / Src Folders
I only regularly install Go binaries, e.g., with the following command:
|
|
When analyzing the disk usage in my home folder (~), I realized the ~/go
folder took over 26 gigabytes of space!:
|
|
Why on earth does the pkg
folder take so much space?
According to https://scripter.co/cleaning-up-gopath-pkg/:
When you run go get
to install any Go package,
${GOPATH}/pkg/
gets populated with all the Go module dependencies,- .. and all package’s executables if any get installed to
${GOPATH}/bin/
.
So clearly, if you install Go packages with the command mentioned above, it will inevitably fill up your pkg folder.
To keep your system clean, execute the following commands regularly:
|
|
- go clean -cache
- Clears the entire build cache ($GOCACHE, typically ~/.cache/go-build). This includes compiled object files, intermediate build artifacts, and anything stored there, encompassing test and fuzz cache data as a side effect since they reside in the same directory.
- go clean -modcache
- Deletes the module download cache ($GOPATH/pkg/mod, usually ~/go/pkg/mod). This includes all downloaded module versions and their source code.
- go clean -testcache
- Expires cached test results within the build cache. It doesn’t delete the cache directory but marks test outputs as stale, forcing tests to rerun.
- go clean -fuzzcache
- Removes fuzzing-related files from the build cache, specifically seed corpora and inputs that improved coverage during fuzz testing.
After executing these commands, I considerably lowered the footprint of go:
|
|
The folder ~/go/src
will not be cleaned with the go clean
command.
What is ~/go/src?
- It’s the directory where Go expects source code for packages and projects when using the pre-module GOPATH workflow (before Go 1.11 introduced modules).
- It may contain:
- Your own projects (e.g., ~/go/src/github.com/yourusername/myproject).
- Cloned repositories or manually downloaded source code for dependencies (in older workflows).
- With Go modules (post-1.11), ~/go/src is less critical, as dependencies are stored in $GOPATH/pkg/mod, and projects can live anywhere. However, it might still hold legacy code or manually managed repos.
So in my case, there were only two cloned repositories from 2021 and 2022, so I deleted them after careful consideration with:
|
|
AWS CLI
Furthermore, I regularly install the latest AWS CLI version (https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) manually because the version included with apt is usually not the latest.
With the help of ncdu
realized that over 15 gigabytes of space was occupied with these installations:
|
|
The AWS install
command with the --update
parameter will not remove any existing AWS CLI versions, but only update the symbolic links to the current version.