LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-26-2022, 12:54 PM   #9721
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled

Hi,

a couple of smalish issues in /etc/rc.d/rc.bluetooth:

- shebang is not set to bash,

- there is no protection for starting the service more than once.
Maybe you could reimplement this using daemon?

- the script always exits with status 1. This because:

Code:
grep -v '^[[:space:]]*(#|$)' /etc/bluetooth/uart.conf | while read i; do
in start_uarts() returns 1 if there are no matching entries in /etc/bluetooth/uart.conf.


Hope this helps! :-)

--
Best regards,
Andrzej Telszewski
 
1 members found this post helpful.
Old 01-26-2022, 01:23 PM   #9722
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,441

Rep: Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191
Quote:
Originally Posted by atelszewski View Post
Hi,

a couple of smalish issues in /etc/rc.d/rc.bluetooth:

- shebang is not set to bash,

- there is no protection for starting the service more than once.
Maybe you could reimplement this using daemon?

- the script always exits with status 1. This because:

Code:
grep -v '^[[:space:]]*(#|$)' /etc/bluetooth/uart.conf | while read i; do
in start_uarts() returns 1 if there are no matching entries in /etc/bluetooth/uart.conf.


Hope this helps! :-)

--
Best regards,
Andrzej Telszewski
Hi, Andrzej,
some elements of response
Code:
blackstar:~:# checkbashisms /etc/rc.d/rc.bluetooth  
blackstar:~:#
no bashism, so #/bin/sh seems appropriate

Code:
blackstar:~:# ps faux | grep "[b]luetoothd"
root      1340  0.0  0.0   6836  4232 ?        S    08:52   0:00 /usr/sbin/bluetoothd

blackstar:~:# /etc/rc.d/rc.bluetooth start
Starting Bluetooth services:  bluetoothd hciconfig D-Bus setup failed: Name already in use
sdptool hciattach

blackstar:~:# ps faux | grep "[b]luetoothd"        
root      1340  0.0  0.0   6836  4232 ?        S    08:52   0:00 /usr/sbin/bluetoothd
the service is started only once
Code:
blackstar:~:# /etc/rc.d/rc.bluetooth stop 
blackstar:~:# echo $?                    
0

Last edited by marav; 01-26-2022 at 01:25 PM.
 
1 members found this post helpful.
Old 01-26-2022, 02:20 PM   #9723
baldzhang
Member
 
Registered: Aug 2012
Posts: 58

Rep: Reputation: Disabled
mkinitrd: support modules compressed with xz.

Code:
--- mkinitrd.orig	2022-01-25 11:37:53.000000000 +0800
+++ mkinitrd	2022-01-26 15:16:16.949987620 +0800
@@ -763,7 +763,7 @@
         fi
 
         if ! grep -Eq " $(basename $SRCMOD .ko)(\.| |$)" $SOURCE_TREE/load_kernel_modules 2>/dev/null ; then
-          LINE="$(echo "modprobe -v $(basename ${SRCMOD%%.gz} .ko)" )"
+          LINE="$(echo "modprobe -v $(basename ${SRCMOD%%.ko*})" )"
 
           # Test to see if arguments should be passed
           # Over-ride the previously defined LINE variable if so
 
1 members found this post helpful.
Old 01-26-2022, 02:51 PM   #9724
Nobby6
Member
 
Registered: Jul 2012
Location: Sunshine Coast, Australia
Distribution: Slackware 64
Posts: 237
Blog Entries: 1

Rep: Reputation: 212Reputation: 212Reputation: 212
Today ISC is pleased to announce the release of BIND 9.18.0

This is the first stable release that contains support for DoT and DoH.

This new release of BIND is available for download from the Internet
Systems Consortium web site (https://www.isc.org/downloads)

Significant work covered in the 9.18.0 branch includes:

- Support for securing DNS traffic using Transport Layer Security (TLS).
TLS is used by both DNS-over-TLS (DoT) and DNS-over-HTTPS (DoH).
- Support for zone transfers over TLS (XFR-over-TLS, XoT) for both
incoming and outgoing zone transfers.
- The dig tool is now able to send DoT queries (+tls option).
- Support for OpenSSL 3.0 APIs was added.


You can read more about this new edition of BIND in the release notes:

9.18.0: https://downloads.isc.org/isc/bind9/...nd-9.18.0.html
 
Old 01-26-2022, 03:10 PM   #9725
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,077

Rep: Reputation: Disabled
Nobby6: the Release Notes mention a known issue and a lot of removed features and feature changes and also mentions under End of Life:
Quote:
BIND 9.18 is a stable branch, suitable for production use. After it has been in production use for a while it will be designated as an Extended Support Version (ESV). Until then, the current ESV is BIND 9.16, which will be supported until at least December 2023
Whether it is preferable to make new bind users happy or possibly cause trouble to current bind (and Slackware) users is up to Patrick J. Volkerding...

PS that the next (maybe minor) version after 15 be provided at the beginning of 2024 would make everybody happy (sorry, I couldn't resist...).

Last edited by Didier Spaier; 01-26-2022 at 04:01 PM. Reason: PS added.
 
1 members found this post helpful.
Old 01-26-2022, 03:22 PM   #9726
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

@marav @rc.bluetooth

- Slackware is moving /etc/rc.d towards Bash, so bash is more apropriate nowadays :-),

- what I mean by no protection against double start is that, if you do rc.bluetooth start twice in a row, a DBus related error will be spit out, instead of the more general approach of saying "hey, I am already running, go bug someone else" :-).

Cheers!

--
Best regards,
Andrzej Telszewski
 
2 members found this post helpful.
Old 01-26-2022, 04:48 PM   #9727
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,441

Rep: Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191
Quote:
Originally Posted by atelszewski View Post
Hi,

@marav @rc.bluetooth

- Slackware is moving /etc/rc.d towards Bash, so bash is more apropriate nowadays :-),

- what I mean by no protection against double start is that, if you do rc.bluetooth start twice in a row, a DBus related error will be spit out, instead of the more general approach of saying "hey, I am already running, go bug someone else" :-).

Cheers!

--
Best regards,
Andrzej Telszewski
Yep. thx & sorry for the noise ;-)
 
Old 01-26-2022, 07:27 PM   #9728
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,548

Rep: Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557
Quote:
Originally Posted by atelszewski View Post
- what I mean by no protection against double start is that, if you do rc.bluetooth start twice in a row, a DBus related error will be spit out, instead of the more general approach of saying "hey, I am already running, go bug someone else" :-).
Yeah, I didn't do anything about that issue (yet), but the rest of it seemed good. Thanks!
 
Old 01-26-2022, 09:31 PM   #9729
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,441

Rep: Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191
Firefox 91.5.1esr

Release notes (when avalaible)
https://www.mozilla.org/en-US/firefo.../releasenotes/
 
1 members found this post helpful.
Old 01-27-2022, 03:36 AM   #9730
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,441

Rep: Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191
Pipewire 0.3.44

https://gitlab.freedesktop.org/pipew.../-/tags/0.3.44

This is a bugfix release that is API and ABI compatible with previous
0.3.x releases.

Code:
Highlights

- It is now possible to run a minimal PipeWire server without a session
manager, enough to run JACK clients.
- The maximum buffer size is now configurable and can be larger than
the previously hardcoded limit of 8192 samples. When using high sample
rates, the larger buffer size can avoid xruns.
- The default maximum latency was reduced from 170ms to 42ms. This should
improve overall latency for application that ask for a large latency,
such as notifications.
- Better JACK compatibility. Patchbays should now get less confused about
ports appearing and disappearing.
- Fix some bluetooth crashes.
- Fix some races in ALSA device detection.
- Many bug fixes and improvements all over the place.
 
2 members found this post helpful.
Old 01-27-2022, 07:59 AM   #9731
ctrlaltca
Member
 
Registered: May 2019
Location: Italy
Distribution: Slackware
Posts: 336

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392
Not a request but just a heads-up, Plasma 5.24 will be an LTS release: https://community.kde.org/Schedules/Plasma_5
but with 5.24.0 getting released on feb 8 and surely needing a couple of weeks to get to a mostly bugfree .1/.2 patch version, this is probably off the deadline.
 
Old 01-27-2022, 08:08 AM   #9732
Windu
Member
 
Registered: Aug 2021
Distribution: Arch Linux, Debian, Slackware
Posts: 597

Rep: Reputation: Disabled
Quote:
Originally Posted by ctrlaltca View Post
Not a request but just a heads-up, Plasma 5.24 will be an LTS release: https://community.kde.org/Schedules/Plasma_5
but with 5.24.0 getting released on feb 8 and surely needing a couple of weeks to get to a mostly bugfree .1/.2 patch version, this is probably off the deadline.
I sincerely hope he does not wait for Plasma 5.24!
This has exactly been the issue for the past years - there is always an update right around the corner, you just need to wait a few days more. And then nothing gets finalized, shrink-wrapped and handed over to happy customers.
 
2 members found this post helpful.
Old 01-27-2022, 08:10 AM   #9733
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,441

Rep: Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191Reputation: 4191
Quote:
Originally Posted by ctrlaltca View Post
Not a request but just a heads-up, Plasma 5.24 will be an LTS release: https://community.kde.org/Schedules/Plasma_5
but with 5.24.0 getting released on feb 8 and surely needing a couple of weeks to get to a mostly bugfree .1/.2 patch version, this is probably off the deadline.
Plasma 5.24 release : 8/02
Slackware 15.0 release : 2/02

Haha
 
Old 01-27-2022, 09:11 AM   #9734
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,605

Rep: Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470Reputation: 3470
Quote:
Originally Posted by ctrlaltca View Post
Not a request but just a heads-up, Plasma 5.24 will be an LTS release: https://community.kde.org/Schedules/Plasma_5
but with 5.24.0 getting released on feb 8 and surely needing a couple of weeks to get to a mostly bugfree .1/.2 patch version, this is probably off the deadline.

Well, according with even the KDE developers, would be an extremely bad idea to use a Plasma LTS series.
Quote:
Originally Posted by Nate Graham
No KDE developer I know uses the Plasma LTS release. Working on old crappy code isn’t any fun. Backporting fixes is a thankless task. I think we would probably have to pay someone to be the full-time LTS developer-and-backporter if we wanted to have an LTS product worth of its name. It will most likely need to be on the back burner for a while.
https://pointieststick.com/2021/11/

Let's hear them, as probably they know about what they talk, and let's stay away of this unworthy crap.

After all, it's useful like a massage at a wood leg, because LTS is ONLY the KDE Plasma, while the KDE Frameworks and KDE Applications are released always as usual pace.

Last edited by LuckyCyborg; 01-27-2022 at 10:00 AM.
 
5 members found this post helpful.
Old 01-27-2022, 09:19 AM   #9735
bender647
Member
 
Registered: May 2003
Location: Boston
Distribution: Slackware
Posts: 39

Rep: Reputation: 23
boost 1.78.0

Boost 1.78.0 fixes build issues on -current with povray.

https://www.boost.org/users/history/version_1_78_0.html

Probably 3, maybe 4 deps link to libboost so not risk free.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Requests for -current (20151216) rworkman Slackware 3441 12-28-2017 03:50 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 09:35 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration