MX-21 beta 1 feedback thread
Re: MX-21 beta 1 feedback thread
I was unable to find where to look for notification history in beta. Any suggestions?
- Roy, Kolkata, IN. "REDUCE-REUSE-RECYCLE-REPURPOSE"
MX-21-AHS-KDE on [ H110M-H : Modded BIOS | Core i3-9350K | 8GB DDR4 | SP A60 NVMe PCIe3x4 | Samsung Evo 870 SSD | WD Black Mobile HDD ]
MX-21-AHS-KDE on [ H110M-H : Modded BIOS | Core i3-9350K | 8GB DDR4 | SP A60 NVMe PCIe3x4 | Samsung Evo 870 SSD | WD Black Mobile HDD ]
Re: MX-21 beta 1 feedback thread
Would this be the notification log you are looking for?agnivo007 wrote: Wed Aug 11, 2021 12:15 pm I was unable to find where to look for notification history in beta. Any suggestions?
If so, I think you'll find it here:
Open the Menu app:
select Settings/Settings Manager and open Notifications.
There is the "log" tab, is this what you are looking for? If yes, that's great, if not, I'm sorry for my answer.
Re: MX-21 beta 1 feedback thread
hello dolphin_oracle
distraction
balloon twisting art flower
distraction
balloon twisting art flower
Re: MX-21 beta 1 feedback thread
Issue report: Thunar>file>checksum>cannot select and copy the hashes. Also, the progress bar doesn't update beyond 50%; it's stuck there all the time even when done; no updates during the checksum process.
- Roy, Kolkata, IN. "REDUCE-REUSE-RECYCLE-REPURPOSE"
MX-21-AHS-KDE on [ H110M-H : Modded BIOS | Core i3-9350K | 8GB DDR4 | SP A60 NVMe PCIe3x4 | Samsung Evo 870 SSD | WD Black Mobile HDD ]
MX-21-AHS-KDE on [ H110M-H : Modded BIOS | Core i3-9350K | 8GB DDR4 | SP A60 NVMe PCIe3x4 | Samsung Evo 870 SSD | WD Black Mobile HDD ]
- chrispop99
- Global Moderator
- Posts: 3334
- Joined: Tue Jan 27, 2009 2:07 pm
Re: MX-21 beta 1 feedback thread
Just as a data point, I was able to boot a Mac Mini (Late 2014) live in EFI mode, and create live persistence. It seems like everything works.
Chris
Chris
MX Facebook Group Administrator.
Home-built desktop - Core i5 9400, 970 EVO Plus, 8GB
DELL XPS 15
Lots of test machines
Home-built desktop - Core i5 9400, 970 EVO Plus, 8GB
DELL XPS 15
Lots of test machines
Re: MX-21 beta 1 feedback thread
I have a media server app that I installed on MX-21 and it creates a user with a uid of 998. Now when I login I have this app user appear in the login greeter. I don't believe mx19 had this issue as I had the same media server running on it. I thought a user had to have a UID of 1000 or more for it to show up as a valid user in the login greeter. MX User manager does not list this user.
I looked at /etc/lightdm/users.conf and found a line
so I changed it to
However the app user still appears in the login greeter. Tried a restart after changing the file but still this user shows up.
How can I hide this user from the login greeter? Is there a different setting I should change?
I looked at /etc/lightdm/users.conf and found a line
Code: Select all
[UserList]
minimum-uid=500
Code: Select all
[UserList]
minimum-uid=1000
How can I hide this user from the login greeter? Is there a different setting I should change?
- dolphin_oracle
- Developer
- Posts: 22102
- Joined: Sun Dec 16, 2007 12:17 pm
Re: MX-21 beta 1 feedback thread
is "accountservice" installed?
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Re: MX-21 beta 1 feedback thread
Yes, it's at vers 0.6.55-3
Re: MX-21 beta 1 feedback thread
Try this as normal user:VCR58 wrote: Thu Aug 12, 2021 1:48 pm I have a media server app that I installed on MX-21 and it creates a user with a uid of 998. Now when I login I have this app user appear in the login greeter. I don't believe mx19 had this issue as I had the same media server running on it. I thought a user had to have a UID of 1000 or more for it to show up as a valid user in the login greeter. MX User manager does not list this user.
I looked at /etc/lightdm/users.conf and found a lineso I changed it toCode: Select all
[UserList] minimum-uid=500
However the app user still appears in the login greeter. Tried a restart after changing the file but still this user shows up.Code: Select all
[UserList] minimum-uid=1000
How can I hide this user from the login greeter? Is there a different setting I should change?
Code: Select all
sudo sed -i '/SystemAccount=/s/false/true/' /var/lib/AccountsService/users/$(id -nu 998)
+++EDIT++ If the file /var/lib/AccountsService/users/$(id -nu 998)
was not yet created, b/c never logged in, do just create it:
Code: Select all
printf "[User]\nSystemAccount=true\n" | sudo tee /var/lib/AccountsService/users/$(id -nu 998)
sudo chmod 600 /var/lib/AccountsService/users/$(id -nu 998)
Re: MX-21 beta 1 feedback thread
I got this as a response.fehlix wrote: Thu Aug 12, 2021 4:42 pm Try this as normal user:and reboot.Code: Select all
sudo sed -i '/SystemAccount=/s/false/true/' /var/lib/AccountsService/users/$(id -nu 998)
Code: Select all
sed: can't read /var/lib/AccountsService/users/nextpvr: No such file or directory