Releasing space in Docker on Ubuntu or Linux

Releasing space in Docker on Ubuntu or Linux

Tiempo de lectura: < 1 minuto If we have problems with the space that Docker occupies, we can do the following to free up the space used: These logs grow unchecked and can free up dozens of GB without losing anything important. Ejecuta: sudo find /var/lib/docker/containers/ -type f -name “*-json.log” -delete This will delete all container logs (you should do it). … Read more

Install and use Android ADB on Ubuntu

Install and use Android ADB on Ubuntu

Tiempo de lectura: < 1 minuto We’re going to learn how to install Android ADB on Ubuntu today. Android ADB (Android Debug Bridge) is a versatile tool that enables communication between a computer and an Android device. ADB is part of the Android Software Development Kit (SDK) and offers a range of useful features for both developers and advanced users. Here … Read more

See Which Directories Take Up the Most Space Using the Terminal in Ubuntu

See Which Directories Take Up the Most Space Using the Terminal in Ubuntu

Tiempo de lectura: 2 minutos On any operating system, especially on Linux systems like Ubuntu, it is important to keep track of available storage space. Sometimes, you might find that your hard drive is full and need to identify which files or directories are consuming the most space. Fortunately, in Ubuntu, we can use the du (disk usage) command to … Read more

Install Docker and Docker Compose on Ubuntu, very fast

Tiempo de lectura: < 1 minuto Let’s install Docker Compose on Ubuntu by following the official Docker website instructions. Update dependencies and install necessary packages: sudo apt-get update sudo apt-get install ca-certificates curl gnupg sudo install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg sudo gpg –dearmor -o /etc/apt/keyrings/docker.gpg sudo chmod a+r /etc/apt/keyrings/docker.gpg # Add the repository to Apt sources: echo \ … Read more