On Sunday, August 2, 2026 at 09:07:43 PM CDT, Felix Miata via tde-users users@trinitydesktop.org wrote:
CHRIS M composed on 2026-08-02 20:33 (UTC-0500):
chrisontde@LENOVO:~$ mount | grep nvme0n1p5 /dev/nvme0n1p5 on /media/chris/DATA type ext4 (rw,nosuid,nodev,relatime,errors=remount-ro,uhelper=udisks2) chrisontde@LENOVO:~$ sudo ls -ld /media/chris /DATA[sudo] password for chrisontde:Sorry, user chrisontde is not allowed to execute '/usr/bin/ls -ld /media/chris/DATA' as root on LENOVO.chrisontde@LENOVO:~$ chrisontde@LENOVO:~$ ls -ld /home/DATA ls: cannot access '/home/DATA': No such file or directorychrisontde@LENOVO:~$ chrisontde@LENOVO:~$ ls -ld /home/chris drwxr-x--- 1 chris chris 720 Aug 2 19:16 /home/chrischrisontde@LENOVO:~$ chrisontde@LENOVO:~$ ls -ld /home/chrisontde drwxr-x--- 1 chrisontde chrisontde 618 Aug 2 20:28 /home/chrisontdechrisontde@LENOVO:~$
Apparently whatever cinnamon did to get nvme0n1p5 mounted to /media/chris/DATA is blocking the suggested workaround. I suggest to use cinnamon partition tool to undo whatever it did, and create a fstab entry that mounts it, e.g.:
sudo mkdir /home/data sudo chmod 770 /home/data sudo chown chris:chris /home/data (next: append to fstab:) LABEL=DATA /home/data ext4 relatime 0 2 (next: reboot) mount | grep nvme0n1p5 (should confirm DATA partition is mounted rw to /home/data) ls -ld /home/data (should produce drwxrwx--- chris chris permissions & ownership, plus access via file manager to /home/data whether logged into cinnamon or tde, if in /etc/group exists chris:x:1000:chrisontde)