Linux Format

Answers

Q Disappearing drives Since updating to Ubuntu 22.04 LTS, when I connect a USB external hard drive to my computer I don’t get a symbol icon in the Dock to indicate that the drive is mounted. Is this behaviour different to 20.04?

Bryan Mitchell

A There are a couple of possibilities here. The dock in 22.04 is “busier” than 20.04. With a smaller screen (1,368x768) we found that the icon was appearing, but below the bottom of the screen. It was only visible if we scrolled the dock down.

An alternative explanation is that the setting to show devices has been disabled. You can check in a terminal with the following command:

$ gsettings get org.gnome.shell. extensions.dash-to-dock show-mounts

This should return true if devices are to be shown, but if it comes back as false then you can change it with:

$ gsettings set org.gnome.shell. extensions.dash-to-dock show-mounts true

Note the difference between the commands. The first uses get while the second uses set . It’s only one letter, but it makes a big difference! You can also view and change this setting with dconf-editor, following the same path: org>shell> and so on. This program isn’t installed by default, so it’s up to you whether you want to install it just to change one setting. You could say that it depends on whether you’re a shellophile or shellophobe.

Q Too many to count I have a folder potentially containing tens of millions of files. I want to empty this folder out and delete all the files inside it. It’s on the root filesystem, so reformatting isn’t a solution. Running: $ rm -rf * inside the folder

You’re reading a preview, subscribe to read more.

More from Linux Format

Linux Format1 min read
Vector Vexations
Why does MySQL not support vectors in its community edition? Generative AI is the hot topic in tech. GenAI relies on vector data. Yet Oracle has no plans to support vectors in the community edition of MySQL. If you want to try out vector data with ot
Linux Format5 min read
Tips For Managing Docker Containers
Everyone knows how containers revolutionised application building and deployment. Using a E disposable stack of containers that make up an app that aren’t using the docker-compose command to manage the stack are missing a trick. It allows the shippin
Linux Format1 min read
Wine For Wayland
2023 was a great year for the Wayland driver for Wine. The goal was to move forward from the experimental phase and make the driver a proper upstream component. A year later, after several merge requests, many people are now already able to use the l

Related Books & Audiobooks