Skip to main content

Help

Q&A

How can I make the percentage labels in the top left corner stay?

In earlier versions, the top-left percentage labels were on by default, but due to UX decisions, they are now only enabled on mobile devices. If you want to bring back the old behavior, there is the flag DASHDOT_ALWAYS_SHOW_PERCENTAGES for that.

The network information can not be read correctly - what should I do?

First of all, if you are running docker, make sure that you are passing the -v /:/mnt/host:ro bind mount. If you have done so, and it still does not work, please do the following:

Check your logs for a message like Using network interface "xxxxx".

Is this the correct network interface? If not, please find out your default interface, and pass the name manually, using the DASHDOT_USE_NETWORK_INTERFACE flag.

If it is the correct network interface, please open a GitHub issue with the relevant log outputs and information.

Is there no message like this? If so, please check your log for any errors and open a new issue on GitHub with that information.

Can you use dash. without mounting the whole host drive?

Yes, you can - the mount is only needed to make it easier for the user, but you can manually mount the relevant parts into the container as well.

For this you need to use the following volume mounts:

  • /etc/os-release:/mnt/host/etc/os-release:ro for reading the OS version of the host
  • /proc/1/ns/net:/mnt/host/proc/1/ns/net:ro for reading the Network usage of the host
    • alternatively, you can just bind the container to the host network using --net=host, but this is not recommended, because it messes with Dockers internal networking
  • /mnt:/mnt/host/mnt:ro and /media:/mnt/host/media:ro for reading the usage stats of all drives
    • keep in mind that this covers only the most basic mount paths of linux. if your system uses other mount paths, you will need to manually add them to the list of volumes, following the pattern /xxx:/mnt/host/xxx:ro. To check where all your mounts are on your system, you can use the command df and run it in a shell.

Answer not found?

If you think there is no answer for your question and it is actually a bug, or a missing feature, please create a new Issue on GitHub.

If you need further help, please join our Discord - we are happy to answer any questions.