Linux Lite 7.0 Final Released - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: General (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=4) +--- Forum: Release Announcements (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=11) +--- Thread: Linux Lite 7.0 Final Released (/showthread.php?tid=9155) |
Re: Linux Lite 7.0 Final Released - user0 - 06-02-2024 (06-01-2024, 01:59 AM)Jerry link Wrote: [quote author=qwerecosia link=topic=9623.msg62219#msg62219 date=1717206918] Works here, just reboot, launch it and wait. Likely a CPU issue. [/quote] Same issue here. I rebooted and, before even trying to open chrome, installed apparmor-utils package and set chrome in complain mode. So these two: sudo apt install apparmor-utils sudo aa-complain chrome Chrome opens as it should after these two (and always fails without them - reboot doesn't help). PS. If one tried (and failed) to open chrome before executing these two actions, logout and new login might be needed (user:linux and empty password field). Logout and new login doesn't help without these commands above. More info about AppArmor and Ubuntu 24.04 LTS: https://ubuntu.com/blog/whats-new-in-security-for-ubuntu-24-04-lts By the way, I run i3-12100F... (really not sure, but this might be an issue for "newer" cpu's only) Re: Linux Lite 7.0 Final Released - stevef - 06-02-2024 Quote:What's the issue in /etc/lsb-release ? The file on my install looks like this. Code: DISTRIB_ID=Ubuntu System Restore Utility uses this to tag snapshots. Snapshots of LL7.0 systems get labelled as '22.04 Jammy'. Confused me on a multi-boot setup until you identified why it was happening. For Mintstick applications Quote:After installing python3-unidecode does it then work?Yes. Thank you. Re: Linux Lite 7.0 Final Released - Valtam - 06-02-2024 We've always run the file that way (lsb), otherwise it can mess up the updates system. Sent from my Mobile phone using Tapatalk Re: Linux Lite 7.0 Final Released - Şerban S. - 06-02-2024 Testing Linux Lite 7.0
First steps
Code: The following upgrades have been deferred due to phasing: I encountered two errors though: OpenShot PPA and Mozilla PPA. Nothing beyond repair, though. I disabled the “perpetrators” and all went as expected. However, it was annoying, because I never liked being forced to swallow a poisonous pill, coated in sugar. That is, “Snap” & snapd. I removed it. I forgot though if that was the case with LL 6.x too. If so, I probably removed it long before finishing my custom setup... Fixing the update errors While for OpenShot this is nothing like a “mandatory” requirement, I will mention though the solution, for the interested people: https://www.openshot.org/download/ OpenShot-v3.1.0-x86_64.AppImage I used it and it works fine. For Thunderbird on the other hand, in my case, it is a major issue, since I’ve been using it even before switching to Linux long ago, before 2012 when I was on Windows. So, here are two ways of dealing with that, until the appropriate packages will be released in the PPA. Debian Package: https://ftp.debian.org/debian/pool/main/t/thunderbird/ thunderbird_115.11.0-1~deb12u1_amd64.deb AppImage: [color=rgb(0, 0, 128)]https://github.com/srevinsaju/Thunderbird-AppImage[/color] Thunderbird-115.5_20231208140222.AppImage Lite Apps I never use all Lite Apps frequently. The most used are Lite Tweaks and Lite Software. From time to time, I also use Lite Info (for updating the HW DB), Lite System Report (the report looks gorgeous!) and Lite Widget. Lite Widget is very useful when I ran multiple versions on the same machine (this is the case now). I want to mention also the Lite Manual, which is great, even if I use it rarely: file:///usr/share/doc/litemanual/index.html One thing I’d like fixed is the missing Telegram from the list. I also checked the “Remove Software” list and is OK, it only lists the installed Apps. While Telegram can be installed via Synaptic, it would be nice to have it back in Lite Software, since I use it anyway to install some items. Saves time. Lite Tweaks glitches I ran Lite Tweaks, using a bash script that outputs the messages. Here is the output: Code: ======ooo OOOOOO ooo====== While nothing seemed to go wrong, those errors still apeared. The progress gauge appears when removing the files and when running twice Lite Tweaks, the options corresponding to the files that can be removed are gone, which means the script does the job properly. Re: Linux Lite 7.0 Final Released - stevef - 06-02-2024 Quote:We've always run the file that way (lsb), otherwise it can mess up the updates system.Fair enough. It didn't seem consistent with the pattern of previous releases I looked at - was expecting 24.04 and noble rather than 22.04 and jammy. Re: Linux Lite 7.0 Final Released - trinidad - 06-02-2024 Quote:/root/.local/share/Trash/files/Technically not an error. Always shows up when you run from terminal. To make it stop open Thunar as root and show hidden files. Once you've simply found the directory that way the message will just go away the next time you start tweaks. I'd guess it's a PATH that can't be added during install, or an installation artifact given the behavior. TC Re: Linux Lite 7.0 Final Released - Şerban S. - 06-02-2024 (06-02-2024, 10:14 AM)trinidad link Wrote:Quote:/root/.local/share/Trash/files/Technically not an error. Always shows up when you run from terminal. To make it stop open Thunar as root and show hidden files. Once you've simply found the directory that way the message will just go away the next time you start tweaks. I'd guess it's a PATH that can't be added during install, or an installation artifact given the behavior. Actually, this message IS about a real error. You can check the existence of '/root/.local/share/Trash/' and there is nothing like that. Code: ls: cannot access '/root/.local/share/Trash/files/': No such file or directory To explain this though, is a little more sophisticated. It is about the DSP chain and the latency of each hardware piece. Since each of the components have their own latency and this adds up, we can get to this errors, mostly on the new models of storage (SSD). Measurements show on a USB 3.0 bus, a read access time of 0,2 msec and sometimes, 0,1 msec. If the write instruction takes 0,21 msec, than the read instuction will generate a read error, due to the gap of 0,01 msec between the write and read instructions. I guess it can be solved introducing a pause (delay) of a certain value (wait 0,01 -- for one, or a fake iteration) after the write instruction. Eventually test the created entity, until the error disappears. While I was working on a program, long ago, I had to read/write in cascade and I got errors. Using a MessageBox, solved the problem and it confused me. I changed the code in order to test the existence of each written entity and this solved the problem after removing the MessageBox. By that time, I wasn't aware of the latency issue. Further more, there were many types of storage I was using and the code only crashed apparently, in a random manner. Then I understood that different storage units, have different access time, thus, different latency values. Re: Linux Lite 7.0 Final Released - trinidad - 06-02-2024 If you try to create the file it will tell you that it already exists. Once I did that the error stopped appearing in the terminal. TC Re: Linux Lite 7.0 Final Released - Şerban S. - 06-02-2024 (06-02-2024, 03:08 PM)trinidad link Wrote: If you try to create the file it will tell you that it already exists. Once I did that the error stopped appearing in the terminal.There was no directory (file). I created it and the message disappeared, indeed. The problem is that this should work otherwise... I forgot to let the directory after testing and see what happens in time. The code needs to be changed, to prevent this latency thing. Șerban. Re: Linux Lite 7.0 Final Released - commodore2 - 06-02-2024 Since Linux Lite 6.6 cannot be upgraded to 7 What's the EOL for 6.6? |