You are Here:
Linux Lite 7.0 RC1 Released - See Release Announcement Section



Recent Posts

Pages: [1] 2 3 ... 10
1
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by sqwuade on May 10, 2024, 11:58:37 AM »
I tried "sudo apt install openssh-server" first thing with a fresh install of LL7-RC1 and got "openssh-server is already the newest version (1:9.6p1-3ubuntu13).  It's not working for me...  I've installed and run ssh servers many times before.  Usually I just run "apt install ssh" to install the server and "service ssh status" etc. to check on it.  When I run "service ssh status" I get:

Job for ssh.service failed because the control process exited with error code.  See "systemctl status ssh.service" and "journalctl -xeu ssh.service" for details.

I even downloaded a fresh copy of the ISO to install from.  It works fine in LL6.6, Xubuntu and Debian etc.
2
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by sqwuade on May 10, 2024, 10:26:09 AM »
I've been doing more research on the "Lite-Tweaks" issue and the problem could be related to the 3.44 version of zenity not having the "WebKit" option enabled/compiled into the binary any longer (LL6.6 had zenity 3.42.1, which was before the change).

Some info from the zenity Change log page:

3.44.0-2
Superseded in mantic-release on 2023-07-18
Deleted in mantic-proposed on 2023-07-20 (Reason: Moved to mantic)

zenity (3.44.0-2) experimental; urgency=medium

  * Team upload
  * d/control.in, d/rules: Disable WebKit integration (--html option).
    This adds several "heavy" dependencies, notably WebKit itself, but
    also video and spellchecking among others, which are undesired for
    a simple interactive dialog.
    The WebKit feature is disabled by default upstream, and several
    major distributions (including at least the Fedora/Red Hat family,
    Arch and openSUSE) don't enable it in their packaging, so portable
    software cannot rely on this option being available. According to
    codesearch.debian.net, none of the packages with a dependency on
    zenity use the --html option.
    The beginning of the Debian 13 cycle seems a good time to make this
    sort of potentially disruptive change; most likely nobody will notice
    this feature going away, but if we get bug reports, we can consider
    other options such as having a zenity-minimal package without HTML
    support, or having a zenity-full package with it.
    (Closes: #777608, #942362)
  * d/control.in: Remove version constraints in Build-Depends unnecessary
    since bullseye (oldstable)
    - libgtk-3-dev
    - libnotify-dev
    - meson

Source: https://launchpad.net/ubuntu/+source/zenity/+changelog

As a test, try running this script in a terminal on LL7, then try it on LL6.6:

"echo "hello world" | zenity --text-info --html --filename=/dev/stdin"

I got that info here: https://bugzilla.redhat.com/show_bug.cgi?id=1141802


3
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by sqwuade on May 10, 2024, 10:16:51 AM »
I'll give it another try Trinidad.  I did try it a couple times with LL7 in live mode and it wouldn't work.  I've always just run "apt install ssh" and that would setup the server.  I think the client is enabled out-of-the-box.
4
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by trinidad on May 10, 2024, 09:10:40 AM »
Quote
SSH doesn't appear to be working/installing correctly in LL7

Works fine for me, and it's openssh not ssh. LL comes with the openssh client installed already. You just have to add openssh server and sftp server.
TC
5
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by sqwuade on May 10, 2024, 07:19:09 AM »
SSH doesn't appear to be working/installing correctly in LL7.  I've always installed in the past with "apt install ssh".  I've confirmed it installs w/o issue that way with a live version of LL6.6 (UEFI) but I've tried several times with LL7 and it doesn't install correctly.
I also tested on a live version of the new Xubuntu (24.04) and it does install and work correctly with "apt install ssh" on that distro.
6
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by sqwuade on May 10, 2024, 02:00:27 AM »
That makes sense.  I'll bet you're right and those "PERCENTAGE = (100 \* ${i} ) / ${TOTAL_LINES}" parts are to show progress bars leading up to 100%.
7
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by Şerban S. on May 09, 2024, 08:58:57 AM »
[...] What if you make that change on a system where the Lite-Tweaks works, like 6.6?

It doesn't. That is the problem.
It didn't on LL 6.4, and it still doesn't.
Anyway, it seems that it only affects the way the progress of the current task is displayed in the message box that appears.
So, with or without this string formatting error, the script does what is supposed to do: removes something or whatever the current task is.
The only approach to Lite Tweaks is see if the error comes from the upstream packages. It seems that this is the case.
8
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by sqwuade on May 09, 2024, 07:22:57 AM »
Interesting Serban.  Did this change make any difference?  What if you make that change on a system where the Lite-Tweaks works, like 6.6?

Code: [Select]
  ( PERCENTAGE = (100 \* ${i} ) / ${TOTAL_LINES} )
As you can see, I moved the inner brackets to enclose the computation of the integer value of the number of lines, which is a runtime value.
But this has logic for me.
I'm curious if that checks though.
9
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by Şerban S. on May 09, 2024, 07:12:51 AM »
[...] The "Lite Welcome" app (Similar in appearance to Lite-Tweaks) seems to be working fine in LL7 [...]

That is what I could see, too. Have to recheck it though. But so far, I can confirm.

[...] There were a lot of security changes in Ubuntu 24.04: [...]

As I said, I'm far from what you might call "programmer". Still, from my experience, the mess is generated by some user rights management.
Since policy has changed, it's difficult to know all implications on the old code.
Given the fact that the classes are based on inheritance, an error that never became obvious in the old code, might now lead to such results.
Here is one example: Line 1089, lite-tweaks-super:

Code: [Select]
  (( PERCENTAGE = 100 \* ${i} / ${TOTAL_LINES} ))
This generates the following output:

Code: [Select]
/usr/bin/lite-tweaks-super: line 1089: ((: PERCENTAGE = 100 \ 2 / 1 : syntax error: invalid arithmetic operator (error token is "\ 2 / 1 ")
The only thing I can do, is do a quick install of Lite 6.0 (I guess i still have it) and test if this error is present in which case, the error has been passed from version to version.
Sadly, there might be many more others.
What bothers me is that most people rely on Jerry to fix it (those?) but this is, to put it lightly, INHUMAN.
Since you looked at the code, you can imagine what kind of hell is to go line by line in a code like the "Lite Tweaks", let alone the whole suite "Lite..."
lite-tweaks-super alone, has 1,102 lines. Reviewing the whole code, takes simply put, a lot of man-power. Since we're dealing here with something different than chopping woods, well... Just being Schwarzenegger-like, helps nothing.

What is the correct form of this line?


Code: [Select]
  ( PERCENTAGE = (100 \* ${i} ) / ${TOTAL_LINES} )As you can see, I moved the inner brackets to enclose the computation of the integer value of the number of lines, which is a runtime value.
But this has logic for me.
I'm curious if that checks though.

Further more, the gauge implied here (PERCENTAGE has to be passed to some kind of control)... I neve remember seeing any % progress bar or the like.
A variation is a StatusBar that shows a string like PERCENTAGE + " %". Have you ever seen this? Otherwise, might be just an internal counter to trigger something else than showing the progress.

Șerban.




10
Release Announcements / Re: Linux Lite 7.0 RC1 Released
« Last post by sqwuade on May 09, 2024, 12:54:01 AM »
Could the Lite-Tweaks app be rewritten in Python?  The "Lite Welcome" app (Similar in appearance to Lite-Tweaks) seems to be working fine in LL7, but those are written in python while the Lite-Tweaks is written in bash?

   /usr/bin/lite-welcome-live
else
   /usr/bin/lite-welcome-installed

The conversion to Python looks like it would be a bit of work but it could be a possible solution?

There were a lot of security changes in Ubuntu 24.04:
https://ubuntu.com/blog/whats-new-in-security-for-ubuntu-24-04-lts
Pages: [1] 2 3 ... 10
-->
X Close Ad

Linux Lite 7.0 RC1 Released - See Release Announcement Section