Rename users to benjamin_loison across my devices #37

Open
opened 2024-10-29 19:52:01 +01:00 by Benjamin_Loison · 28 comments

To be able to just ssh hostname instead of ssh benjamin@hostname for instance.

Specifying the last name seems appropriate for possible machine multiple users usage such company servers which happened at DFINITY, even if in these cases I do not choose my username in general.

While precising the last name can be heavier, I think it is more appropriate.

However, have to make sure not to break anything when doing such a change. As far as I know I can't break important stuff, especially as I do not propose a significant service in production as far as I remember.

Related to Benjamin_Loison/Debian/issues/55.

To be able to just `ssh hostname` instead of `ssh benjamin@hostname` for instance. Specifying the last name seems appropriate for possible machine multiple users usage such company servers which happened at DFINITY, even if in these cases I do not choose my username in general. While precising the last name can be heavier, I think it is more appropriate. However, have to make sure not to break anything when doing such a change. As far as I know I can't break important stuff, especially as I do not propose a significant service in production as far as I remember. Related to [Benjamin_Loison/Debian/issues/55](https://codeberg.org/Benjamin_Loison/Debian/issues/55).
Author
Owner

At least need it now on my Linux Mint 22 Cinnamon Framework 13, OverClock3000 and LemnosLife VPS.

At least need it now on my Linux Mint 22 Cinnamon Framework 13, OverClock3000 and LemnosLife VPS.
Author
Owner

In theory it could be dangerous to some extent in public space for people to help identify me through my device or the other way around but let us accept that.

In theory it could be dangerous to some extent in public space for people to help identify me through my device or the other way around but let us accept that.
Author
Owner
[Benjamin-Loison/KeePassDX/issues/4](https://github.com/Benjamin-Loison/KeePassDX/issues/4) would help.
Author
Owner
ps -u benjamin
Output:
    PID TTY          TIME CMD
   2463 ?        00:00:00 systemd
   2466 ?        00:00:00 (sd-pam)
   2481 ?        00:00:28 pipewire
   2482 ?        00:00:00 pipewire
   2483 ?        00:00:01 wireplumber
   2484 ?        00:00:35 pipewire-pulse
   2487 ?        00:00:00 gnome-keyring-d
   2488 ?        00:00:01 dbus-daemon
   2756 ?        00:00:00 gvfsd
   2794 ?        00:00:00 dconf-service
   2823 ?        00:00:00 gvfs-udisks2-vo
   2841 ?        00:00:00 gvfs-gphoto2-vo
   2851 ?        00:00:00 gvfs-afc-volume
   2858 ?        00:00:00 gvfs-mtp-volume
   2869 ?        00:00:00 gvfs-goa-volume
   2876 ?        00:00:00 goa-daemon
   2895 ?        00:00:00 goa-identity-se
   2940 ?        00:00:00 gvfsd-metadata
   2962 ?        00:00:00 agent
   3039 ?        00:00:00 evolution-sourc
   3076 ?        00:00:00 evolution-calen
   3085 ?        00:00:00 obexd
   3111 ?        00:00:00 evolution-addre
   3168 ?        00:00:00 gvfsd-trash
   3533 ?        00:00:00 xdg-desktop-por
   3545 ?        00:00:00 xdg-document-po
   3552 ?        00:00:00 xdg-permission-
   3563 ?        00:00:00 xdg-desktop-por
   4243 ?        00:00:01 applet.py
   8143 ?        00:00:00 gvfsd-network
   8162 ?        00:00:00 gvfsd-dnssd
   9525 ?        00:00:00 gvfsd-http
   9663 ?        00:00:00 speech-dispatch
   9675 ?        00:00:00 sd_espeak-ng-mb
   9678 ?        00:00:00 sd_espeak-ng
   9684 ?        00:00:00 sd_dummy
   9687 ?        00:00:00 sd_openjtalk
  10702 ?        00:00:00 ssh-agent
  13371 tty1     00:00:00 bash
ps aux | grep 2463
benjamin    2463  0.0  0.0  20588 11628 ?        Ss   22:14   0:00 /usr/lib/systemd/systemd --user
ps -u benjamin
Output:
    PID TTY          TIME CMD
  13371 tty1     00:00:00 bash

is still blocking.

After reboot:

ps -u benjamin
Output:
    PID TTY          TIME CMD
   2636 tty1     00:00:00 login
   2645 ?        00:00:00 systemd
   2648 ?        00:00:00 (sd-pam)
   2663 ?        00:00:00 pipewire
   2664 ?        00:00:00 pipewire
   2665 ?        00:00:00 wireplumber
   2666 ?        00:00:00 pipewire-pulse
   2668 tty1     00:00:00 bash
   2669 ?        00:00:00 dbus-daemon

is still blocking.

Related to Benjamin-Loison/cinnamon/issues/170.

Bash script:
for pid in `ps -u benjamin | tail -n +2 | grep -oP '^ +\K\d+'`
do
    #echo "|$pid|"
    kill $pid
done
```bash ps -u benjamin ``` <details> <summary>Output:</summary> ``` PID TTY TIME CMD 2463 ? 00:00:00 systemd 2466 ? 00:00:00 (sd-pam) 2481 ? 00:00:28 pipewire 2482 ? 00:00:00 pipewire 2483 ? 00:00:01 wireplumber 2484 ? 00:00:35 pipewire-pulse 2487 ? 00:00:00 gnome-keyring-d 2488 ? 00:00:01 dbus-daemon 2756 ? 00:00:00 gvfsd 2794 ? 00:00:00 dconf-service 2823 ? 00:00:00 gvfs-udisks2-vo 2841 ? 00:00:00 gvfs-gphoto2-vo 2851 ? 00:00:00 gvfs-afc-volume 2858 ? 00:00:00 gvfs-mtp-volume 2869 ? 00:00:00 gvfs-goa-volume 2876 ? 00:00:00 goa-daemon 2895 ? 00:00:00 goa-identity-se 2940 ? 00:00:00 gvfsd-metadata 2962 ? 00:00:00 agent 3039 ? 00:00:00 evolution-sourc 3076 ? 00:00:00 evolution-calen 3085 ? 00:00:00 obexd 3111 ? 00:00:00 evolution-addre 3168 ? 00:00:00 gvfsd-trash 3533 ? 00:00:00 xdg-desktop-por 3545 ? 00:00:00 xdg-document-po 3552 ? 00:00:00 xdg-permission- 3563 ? 00:00:00 xdg-desktop-por 4243 ? 00:00:01 applet.py 8143 ? 00:00:00 gvfsd-network 8162 ? 00:00:00 gvfsd-dnssd 9525 ? 00:00:00 gvfsd-http 9663 ? 00:00:00 speech-dispatch 9675 ? 00:00:00 sd_espeak-ng-mb 9678 ? 00:00:00 sd_espeak-ng 9684 ? 00:00:00 sd_dummy 9687 ? 00:00:00 sd_openjtalk 10702 ? 00:00:00 ssh-agent 13371 tty1 00:00:00 bash ``` </details> ```bash ps aux | grep 2463 ``` ``` benjamin 2463 0.0 0.0 20588 11628 ? Ss 22:14 0:00 /usr/lib/systemd/systemd --user ``` ```bash ps -u benjamin ``` <details> <summary>Output:</summary> ``` PID TTY TIME CMD 13371 tty1 00:00:00 bash ``` </details> is still blocking. After reboot: ```bash ps -u benjamin ``` <details> <summary>Output:</summary> ``` PID TTY TIME CMD 2636 tty1 00:00:00 login 2645 ? 00:00:00 systemd 2648 ? 00:00:00 (sd-pam) 2663 ? 00:00:00 pipewire 2664 ? 00:00:00 pipewire 2665 ? 00:00:00 wireplumber 2666 ? 00:00:00 pipewire-pulse 2668 tty1 00:00:00 bash 2669 ? 00:00:00 dbus-daemon ``` </details> is still blocking. Related to [Benjamin-Loison/cinnamon/issues/170](https://github.com/Benjamin-Loison/cinnamon/issues/170). <details> <summary>Bash script:</summary> ```bash for pid in `ps -u benjamin | tail -n +2 | grep -oP '^ +\K\d+'` do #echo "|$pid|" kill $pid done ``` </details>
Author
Owner
sudo adduser linux_issues_37
sudo adduser linux_issues_37 sudo
adduser --help
Output:
adduser [--extrausers] USER GROUP
   Add an existing user to an existing group
usermod --help | grep -w '\-l'
  -l, --login NEW_LOGIN         new value of the login name
groupmod --help | grep -w '\-n'
  -n, --new-name NEW_GROUP      change the name to NEW_GROUP
Bash script:
sudo usermod -l benjamin{_loison,}
sudo groupmod -n benjamin{_loison,}
sudo usermod -d /home/benjamin_loison -m benjamin_loison

seems to stuck on OverClock3000 (but not LemnosLife VPS) but once ctrl + c only see /home/benjamin_loison/ and no more /home/benjamin/.

```bash sudo adduser linux_issues_37 sudo adduser linux_issues_37 sudo ``` ```bash adduser --help ``` <details> <summary>Output:</summary> ``` adduser [--extrausers] USER GROUP Add an existing user to an existing group ``` </details> ```bash usermod --help | grep -w '\-l' ``` ``` -l, --login NEW_LOGIN new value of the login name ``` ```bash groupmod --help | grep -w '\-n' ``` ``` -n, --new-name NEW_GROUP change the name to NEW_GROUP ``` <details> <summary>Bash script:</summary> ```bash sudo usermod -l benjamin{_loison,} sudo groupmod -n benjamin{_loison,} ``` </details> ```bash sudo usermod -d /home/benjamin_loison -m benjamin_loison ``` seems to stuck on OverClock3000 (but not LemnosLife VPS) but once <kbd>ctrl</kbd> + <kbd>c</kbd> only see `/home/benjamin_loison/` and no more `/home/benjamin/`.
Author
Owner

The Ask Ubuntu comment 1072117.

Despite modifying symlinks .{ecryptfs,Private} (and associated permissions), Private.mnt, /home/benjamin{,_loison} I am unable to rename my user correctly. However, I am able to revert my failing changes.

Should experiment and document step by step in a virtual machine.

Should first verify being able to proceed on a Linux environment without home encryption.

Should give a try to:

sudo usermod -d /home/benjamin_loison -m benjamin_loison
usermod --help | grep -w '\-d'
Output:
  -d, --home HOME_DIR           new home directory for the user account
                                new location (use only with -d)
[The Ask Ubuntu comment 1072117](https://askubuntu.com/questions/34074/how-do-i-change-my-username/34075#comment1072117_34075). Despite modifying symlinks `.{ecryptfs,Private}` (and associated permissions), `Private.mnt`, `/home/benjamin{,_loison}` I am unable to rename my user correctly. However, I am able to revert my failing changes. Should experiment and document step by step in a virtual machine. Should first verify being able to proceed on a Linux environment without home encryption. Should give a try to: ```bash sudo usermod -d /home/benjamin_loison -m benjamin_loison ``` ```bash usermod --help | grep -w '\-d' ``` <details> <summary>Output:</summary> ``` -d, --home HOME_DIR new home directory for the user account new location (use only with -d) ``` </details>
Author
Owner
Bash script:
# Seems safe.
rm .ecryptfs
ln -s {/home/.ecryptfs/benjamin_loison/,}.ecryptfs
sudo chown -R benjamin: .{ecryptfs,Private}
<details> <summary>Bash script:</summary> ```bash # Seems safe. rm .ecryptfs ln -s {/home/.ecryptfs/benjamin_loison/,}.ecryptfs sudo chown -R benjamin: .{ecryptfs,Private} ``` </details>
Author
Owner
sudo mv /var/spool/cron/crontabs/benjamin{,_loison}

Related to Benjamin-Loison/termux-app/issues/48.

```bash sudo mv /var/spool/cron/crontabs/benjamin{,_loison} ``` Related to [Benjamin-Loison/termux-app/issues/48](https://github.com/Benjamin-Loison/termux-app/issues/48).
Author
Owner

I had to modify on LemnosLife VPS /etc/pam.scripts/ssh_alert.sh. Hardcoding the UID may be less user-friendly and not necessary as I do not plan to modify my username in the forseeable future.

I had to modify on LemnosLife VPS `/etc/pam.scripts/ssh_alert.sh`. Hardcoding the UID may be less user-friendly and not necessary as I do not plan to modify my username in the forseeable future.
Author
Owner
grep -rI '/home/benjamin/' ~/etebase/.venv/
Output:
/home/benjamin_loison/etebase/.venv/pyvenv.cfg:command = /usr/bin/python3 -m venv /home/benjamin/etebase/.venv
/home/benjamin_loison/etebase/.venv/bin/watchfiles:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/activate:VIRTUAL_ENV="/home/benjamin/etebase/.venv"
/home/benjamin_loison/etebase/.venv/bin/uvicorn:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/activate.csh:setenv VIRTUAL_ENV "/home/benjamin/etebase/.venv"
/home/benjamin_loison/etebase/.venv/bin/pip:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/dotenv:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/pip3.11:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/pip3:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/sqlformat:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/fastapi:#!/home/benjamin/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/activate.fish:set -gx VIRTUAL_ENV "/home/benjamin/etebase/.venv"
/home/benjamin_loison/etebase/.venv/bin/django-admin:#!/home/benjamin/etebase/.venv/bin/python3

on OverClock3000.

```bash grep -rI '/home/benjamin/' ~/etebase/.venv/ ``` <details> <summary>Output:</summary> ``` /home/benjamin_loison/etebase/.venv/pyvenv.cfg:command = /usr/bin/python3 -m venv /home/benjamin/etebase/.venv /home/benjamin_loison/etebase/.venv/bin/watchfiles:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/activate:VIRTUAL_ENV="/home/benjamin/etebase/.venv" /home/benjamin_loison/etebase/.venv/bin/uvicorn:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/activate.csh:setenv VIRTUAL_ENV "/home/benjamin/etebase/.venv" /home/benjamin_loison/etebase/.venv/bin/pip:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/dotenv:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/pip3.11:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/pip3:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/sqlformat:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/fastapi:#!/home/benjamin/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/activate.fish:set -gx VIRTUAL_ENV "/home/benjamin/etebase/.venv" /home/benjamin_loison/etebase/.venv/bin/django-admin:#!/home/benjamin/etebase/.venv/bin/python3 ``` </details> on OverClock3000.
Author
Owner
Output:
-c cd etebase/ && .venv/bin/uvicorn etebase_server.asgi:application --uds /tmp/etebase_server.sock
bash: line 1: .venv/bin/uvicorn: cannot execute: required file not found

Source: https://matrix.to/#/!sNARMdEsFZERaQAJzl:matrix.org/$UTPhXUZFV_i1g0yokDPvjcZx7RSFn_14JRleqcgeSHs

<details> <summary>Output:</summary> ``` -c cd etebase/ && .venv/bin/uvicorn etebase_server.asgi:application --uds /tmp/etebase_server.sock bash: line 1: .venv/bin/uvicorn: cannot execute: required file not found ``` </details> Source: https://matrix.to/#/!sNARMdEsFZERaQAJzl:matrix.org/$UTPhXUZFV_i1g0yokDPvjcZx7RSFn_14JRleqcgeSHs
Author
Owner
find ~/etebase/.venv/ -type f -print0 | xargs -0 sed -i 's/\/home\/benjamin\//\/home\/benjamin_loison\//g'

Source: the Stack Overlow answer 1583282

Benjamin_Loison/findutils/issues/{1,2} would help.

Unclear if all parts of this command are necessary?

grep -rI '/home/benjamin_loison/' ~/etebase/.venv/
Output:
/home/benjamin_loison/etebase/.venv/pyvenv.cfg:command = /usr/bin/python3 -m venv /home/benjamin_loison/etebase/.venv
/home/benjamin_loison/etebase/.venv/bin/watchfiles:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/activate:VIRTUAL_ENV="/home/benjamin_loison/etebase/.venv"
/home/benjamin_loison/etebase/.venv/bin/uvicorn:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/activate.csh:setenv VIRTUAL_ENV "/home/benjamin_loison/etebase/.venv"
/home/benjamin_loison/etebase/.venv/bin/pip:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/dotenv:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/pip3.11:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/pip3:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/sqlformat:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/fastapi:#!/home/benjamin_loison/etebase/.venv/bin/python3
/home/benjamin_loison/etebase/.venv/bin/activate.fish:set -gx VIRTUAL_ENV "/home/benjamin_loison/etebase/.venv"
/home/benjamin_loison/etebase/.venv/bin/django-admin:#!/home/benjamin_loison/etebase/.venv/bin/python3

Related to Benjamin-Loison/cpython/issues/60.

```bash find ~/etebase/.venv/ -type f -print0 | xargs -0 sed -i 's/\/home\/benjamin\//\/home\/benjamin_loison\//g' ``` Source: [the Stack Overlow answer 1583282](https://stackoverflow.com/a/1583282) [Benjamin_Loison/findutils/issues/](https://codeberg.org/Benjamin_Loison/findutils/issues){[1](Benjamin_Loison/findutils/issues/1),[2](Benjamin_Loison/findutils/issues/2)} would help. Unclear if all parts of this command are necessary? ```bash grep -rI '/home/benjamin_loison/' ~/etebase/.venv/ ``` <details> <summary>Output:</summary> ``` /home/benjamin_loison/etebase/.venv/pyvenv.cfg:command = /usr/bin/python3 -m venv /home/benjamin_loison/etebase/.venv /home/benjamin_loison/etebase/.venv/bin/watchfiles:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/activate:VIRTUAL_ENV="/home/benjamin_loison/etebase/.venv" /home/benjamin_loison/etebase/.venv/bin/uvicorn:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/activate.csh:setenv VIRTUAL_ENV "/home/benjamin_loison/etebase/.venv" /home/benjamin_loison/etebase/.venv/bin/pip:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/dotenv:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/pip3.11:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/pip3:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/sqlformat:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/fastapi:#!/home/benjamin_loison/etebase/.venv/bin/python3 /home/benjamin_loison/etebase/.venv/bin/activate.fish:set -gx VIRTUAL_ENV "/home/benjamin_loison/etebase/.venv" /home/benjamin_loison/etebase/.venv/bin/django-admin:#!/home/benjamin_loison/etebase/.venv/bin/python3 ``` </details> Related to [Benjamin-Loison/cpython/issues/60](https://github.com/Benjamin-Loison/cpython/issues/60).
Author
Owner
echo secret > ~/secret_file.txt
```bash echo secret > ~/secret_file.txt ```
Author
Owner

DuckDuckGo and Google search Linux Mint Cinnamon rename home encrypted user.

DuckDuckGo and Google search *Linux Mint Cinnamon rename home encrypted user*.
Author
Owner

The Ask Ubuntu answer 1105522 leads to a login loop, even if try twice. Maybe because I forgot to edit Private.mnt. Now on my Debian 12 GNOME Pegasus Linux Mint (trust) Virtual Machine Manager virtual machine it works fine.

[The Ask Ubuntu answer 1105522](https://askubuntu.com/a/1105522) leads to a login loop, even if try twice. Maybe because I forgot to edit `Private.mnt`. Now on my Debian 12 GNOME *Pegasus* *Linux Mint (trust)* Virtual Machine Manager virtual machine it works fine.
Author
Owner
[The Super User answer 404137](https://superuser.com/a/404137) may help.
Author
Owner
sudo ln -s benjamin_loison/ benjamin

helps repair broken Firefox otherwise it seems to work fine.

```bash sudo ln -s benjamin_loison/ benjamin ``` helps repair broken Firefox otherwise it seems to work fine.
Author
Owner
[Benjamin_Loison/coreutils/issues/15](https://codeberg.org/Benjamin_Loison/coreutils/issues/15) and [Benjamin_Loison/grep/issues/1](https://codeberg.org/Benjamin_Loison/grep/issues/1) can help.
Author
Owner
clear
LOGS_FILE=logs.txt
date
time sudo grep -rI '/home/benjamin/' / --exclude=$LOGS_FILE | tee $LOGS_FILE | awk '{ printf "%d\r", NR } END { print NR }'

Benjamin_Loison/grep/issues/2 would help.

```bash clear LOGS_FILE=logs.txt date time sudo grep -rI '/home/benjamin/' / --exclude=$LOGS_FILE | tee $LOGS_FILE | awk '{ printf "%d\r", NR } END { print NR }' ``` [Benjamin_Loison/grep/issues/2](https://codeberg.org/Benjamin_Loison/grep/issues/2) would help.
Author
Owner

Once have modified /home/benjamin/ with /home/benjamin_loison/ in all files, at least text ones, then can remove /home/benjamin/ symbolic link.

Once have modified `/home/benjamin/` with `/home/benjamin_loison/` in all files, at least text ones, then can remove `/home/benjamin/` symbolic link.
Author
Owner

Can just try to patch issues I face otherwise but some may be unclear like with Firefox and some stuff may silently break.

Can just try to patch issues I face otherwise but some may be unclear like with Firefox and some stuff may silently break.
Author
Owner

At least I achieved renaming my user, even if it is not absolutely clean.

At least I achieved renaming my user, even if it is not absolutely clean.
Author
Owner

Fresh home encrypted configuration:

image

Fresh home encrypted configuration: ![image](/attachments/a3b6245d-a616-4027-ae60-e10206c001c2)
188 KiB
Author
Owner
Related to [Benjamin-Loison/cinnamon/issues/155#issuecomment-2544137685](https://github.com/Benjamin-Loison/cinnamon/issues/155#issuecomment-2544137685).
Author
Owner

Screenshot_Linux_Mint_trust_2024-12-14_18:26:10

![Screenshot_Linux_Mint_trust_2024-12-14_18:26:10](/attachments/7779a052-f66d-46e3-b216-eefbee50f893)
Author
Owner
Maybe related to [Benjamin_Loison/Remmina/issues/17](https://gitlab.com/Benjamin_Loison/Remmina/-/issues/17).
Author
Owner

Also had to modify /etc/passwd on my Ubuntu 24.04.1 work laptop, otherwise faced a login loop.

Also had to modify `/etc/passwd` on my Ubuntu 24.04.1 work laptop, otherwise faced a login loop.
Author
Owner

Maybe related to Benjamin-Loison/pyzo/issues/49.

Maybe related to [Benjamin-Loison/pyzo/issues/49](https://github.com/Benjamin-Loison/pyzo/issues/49).
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Benjamin_Loison/linux#37
No description provided.