Test results with Docker. Wrote the following files in an empty directory: ```Dockerfile FROM ubuntu:focal COPY proposed.list /etc/apt/sources.list.d/ubuntu-focal-proposed.list RUN apt update && apt install -y tmux ```
```proposed.list # Enable Ubuntu proposed archive deb http://archive.ubuntu.com/ubuntu/ focal-proposed restricted main multiverse universe ``` Then ran: $ docker build -t test-tmux . $ docker run -it --rm test-tmux Inside the container: $ who > No output $ users > no output $ tmux (detach with ctrl+b, then "d") $ who > root pts/1 Apr 23 12:14 (tmux(13).%0) $ users > root Which confirms the fix. ** Tags removed: verification-needed verification-needed-focal ** Tags added: verification-done verification-done-focal -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1890406 Title: tmux sessions don't show up with who, users, ... To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tmux/+bug/1890406/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
