Skip to content

On a Chromebook running Debian, you can free up disk space used by doing the following #385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
coding-to-music opened this issue Feb 10, 2023 · 0 comments

Comments

@coding-to-music
Copy link
Owner

On a Chromebook running Debian, you can free up disk space used by doing the following:

Clear APT cache: The APT (Advanced Package Tool) cache can take up a significant amount of disk space over time. You can clear it by running the following command in the terminal:

sudo apt-get clean

Remove old packages: APT keeps older versions of packages that are installed on the system. You can remove them by running the following command:

sudo apt-get autoremove

Remove orphaned packages: Orphaned packages are packages that were installed as dependencies but are no longer required by any other package. You can remove them using the following command:

sudo apt-get autoremove --purge

Remove logs: Log files can also take up a significant amount of disk space. You can remove them by running the following command:

sudo find /var/log -type f -delete

Remove core dumps: Core dumps are files created when a program crashes and can take up a large amount of disk space. You can remove them by running the following command:

sudo find /var/crash -type f -delete
  • These steps should help you free up some disk space on your Chromebook running Debian. It's always a good idea to regularly check and clean up your disk space to keep your system running smoothly.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant