LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 05-25-2023, 03:20 PM   #2326
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,565

Rep: Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427

Quote:
Originally Posted by litelinux View Post
Since no one requested it, I'd propose removing QtAV Player and QtAV QML Player (or at least change the default). They are unintuitive to use, loaded with bugs, and barely supports video formats other than MP4. Even xine-ui fares better.

It would be lovely if we ditch this in favor of MPV and its KDE frontend, Haruna.

Cheers,
ltlnx
Both those video players are part of KDE Applications, so I see no sense to remove them. Also, some people like them. So, if you don't like them, just don't install them and put them in your blacklist.

Anyway, with Plasma5 is very simple to change the "default" application used for video files - I for one I do usually this tuning for changing to SMPlayer as default video player. I recommend sincerely to do also you this configuration change.

Last edited by LuckyCyborg; 05-26-2023 at 07:26 AM.
 
Old 05-25-2023, 10:16 PM   #2327
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,344

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
gtk-4.10.3 have some interesting fixes ..i se ethat on archlinux.

https://gitlab.gnome.org/GNOME/gtk/-/issues/5707
git cherry-pick -n 4f47683710bbb4b56c286c6ee6a5c394fcf2b755 # https://gitlab.gnome.org/GNOME/gtk/-..._requests/5873
git cherry-pick -n 541de3451cdaef589ab724ccf612d868455f2b31 # https://gitlab.gnome.org/GNOME/gtk/-..._requests/5918

# Fix rendering on X
# https://gitlab.gnome.org/GNOME/gtk/-..._requests/5857
git cherry-pick -n b686ce1cb62dba505120e0f1116c516662a06e30
 
1 members found this post helpful.
Old 05-26-2023, 04:40 AM   #2328
CaceK
LQ Newbie
 
Registered: Feb 2008
Distribution: Slackware
Posts: 22

Rep: Reputation: 9
ROCm - https://github.com/RadeonOpenCompute/ROCm

They've been developing it for a couple of years now. It would be great to have it working in Slackware.

From what I've seen, it can run on stock llvm now.
https://bugs.gentoo.org/851702
 
1 members found this post helpful.
Old 05-26-2023, 07:18 AM   #2329
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,221

Rep: Reputation: 299Reputation: 299Reputation: 299
Quote:
Originally Posted by USUARIONUEVO View Post
gtk-4.10.3 have some interesting fixes ..i se ethat on archlinux.

https://gitlab.gnome.org/GNOME/gtk/-/issues/5707
git cherry-pick -n 4f47683710bbb4b56c286c6ee6a5c394fcf2b755 # https://gitlab.gnome.org/GNOME/gtk/-..._requests/5873
git cherry-pick -n 541de3451cdaef589ab724ccf612d868455f2b31 # https://gitlab.gnome.org/GNOME/gtk/-..._requests/5918

# Fix rendering on X
# https://gitlab.gnome.org/GNOME/gtk/-..._requests/5857
git cherry-pick -n b686ce1cb62dba505120e0f1116c516662a06e30
Most probably this will land in a soon to be released 4.10.4 i believe.
 
Old 05-26-2023, 09:19 PM   #2330
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,422

Rep: Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160Reputation: 4160
Thunderbird 102.11.2

Code:
Thunderbird 102.11.1 contained POP3 client regressions with offline mode and TLS certificate overrides
Release notes:
https://www.thunderbird.net/en-US/th.../releasenotes/
 
Old 05-27-2023, 06:16 PM   #2331
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,221

Rep: Reputation: 299Reputation: 299Reputation: 299
at-spi2-core-2.48.3
https://download.gnome.org/sources/a...-2.48.3.tar.xz
 
Old 05-30-2023, 07:03 AM   #2332
opty
Member
 
Registered: Mar 2021
Posts: 180

Rep: Reputation: Disabled
Own directory in /tmp for distribution SlackBuilds, e.g. /tmp/Swc based on /tmp/SBo but that doesn't look very nice so rather /tmp/slackware?
 
Old 05-30-2023, 10:20 AM   #2333
opty
Member
 
Registered: Mar 2021
Posts: 180

Rep: Reputation: Disabled
Add at least -l (--list-name) option to elogind doinst.sh pgrep invocation

Code:
if pgrep -f elogind-daemon | grep -q 'elogind-daemon'; then
otherwise it returns just the PID and the subsequent grep won't match.
 
1 members found this post helpful.
Old 05-30-2023, 12:53 PM   #2334
0XBF
Member
 
Registered: Nov 2018
Distribution: Slackware
Posts: 785

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
Quote:
Originally Posted by opty View Post
Add at least -l (--list-name) option to elogind doinst.sh pgrep invocation

Code:
if pgrep -f elogind-daemon | grep -q 'elogind-daemon'; then
otherwise it returns just the PID and the subsequent grep won't match.
The grep seems superfluous already. The 'if' could just check whether the pgrep succeeded or not with something like:
Code:
if pgrep -f elogind-daemon &> /dev/null ; then
But yes, the current version of that daemon detection and restart logic doesn't seem to work.
 
2 members found this post helpful.
Old 05-31-2023, 06:09 AM   #2335
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,221

Rep: Reputation: 299Reputation: 299Reputation: 299
librsvg-2.56.1
https://download.gnome.org/sources/l...-2.56.1.tar.xz
 
Old 05-31-2023, 07:27 AM   #2336
opty
Member
 
Registered: Mar 2021
Posts: 180

Rep: Reputation: Disabled
sysklogd 2.5.0
 
Old 05-31-2023, 11:27 AM   #2337
FlinchX
Member
 
Registered: Nov 2017
Distribution: Slackware Linux
Posts: 666

Rep: Reputation: Disabled
As suggested by http://www.slackware.com/~alien/ , I am asking for a reference to http://www.slackware.com/~alien/slackboot/mini/ to be added to isolinux/README.TXT

I was looking for a way to boot the Slackware installer on an ancient computer that only has a CDROM (no DVDROM drive) and discovered that 15.0 does not ship CD image sets anymore, only a single DVD iso image. I ended reading the aforementioned README file which documents creating the CD image sets and has a quite obscure "exercise for the reader". However, it does not answer at all the question how to build a minimal bootable iso with no packages at all (which can be later plugged from a remote network resource). Further searching resulted with finding AlienBOB's script and ready iso images that solve exactly this problem. A reference in the README would've saved me some time. Hereby I request adding such a reference there, since I see that -current still has a 32bit version (so the next stable release will have a 32bit flavor as well), this being the scenario when the need for such a minimal iso image is most likely to happen.
 
1 members found this post helpful.
Old 05-31-2023, 12:01 PM   #2338
glennmcc
Member
 
Registered: Jan 2021
Location: North Jackson, Ohio (USA)
Distribution: slackware64-15.0, slackware64-current, slackware-14.0
Posts: 567

Rep: Reputation: 322Reputation: 322Reputation: 322Reputation: 322
[OT]
For AlienBOB,

Just a bit of a 'nitpick' here....

https://slackware.nl/slackware/slack...me_dvd.mkisofs
Code:
  #
  # Slackware installation as DVD. 
  #
  # Contains: bootable INSTALL DVD (including /extra and /source)
  #
  # Command used to create the ISO's for this DVD:
  # (see also /isolinux/README.TXT on the DVD you'll burn from the ISO)

  # DVD

  mkisofs -o slackware64-current-install-dvd.iso \
    -R -J -V "Slackware-current DVD" \
    -hide-rr-moved -hide-joliet-trans-tbl \
    -v -d -N -no-emul-boot -boot-load-size 4 -boot-info-table \
    -sort isolinux/iso.sort \
    -b isolinux/isolinux.bin \
    -c isolinux/isolinux.boot \
    -preparer "Slackware-current build for x86_64 by Eric Hameleers <alien@slackware.com>" \
    -publisher "The Slackware Linux Project - http://www.slackware.com/" \
    -A "Slackware-current DVD - build 31_May_2023" \
    -x ./pasture -x ./testing  -x ./source -x ./extra/source \
    -eltorito-alt-boot -no-emul-boot -eltorito-platform 0xEF -eltorito-boot isolinux/efiboot.img \
    .
Yes, /extra is included.

However, /source, /extra/source along with /pasture & /testing are _excluded_ not _included_.

To include those would then require a dual-layer DVD.
 
Old 05-31-2023, 12:10 PM   #2339
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,565

Rep: Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427Reputation: 3427
Quote:
Originally Posted by glennmcc View Post
[OT]
For AlienBOB,

Just a bit of a 'nitpick' here....

https://slackware.nl/slackware/slack...me_dvd.mkisofs
Code:
  #
  # Slackware installation as DVD. 
  #
  # Contains: bootable INSTALL DVD (including /extra and /source)
  #
  # Command used to create the ISO's for this DVD:
  # (see also /isolinux/README.TXT on the DVD you'll burn from the ISO)

  # DVD

  mkisofs -o slackware64-current-install-dvd.iso \
    -R -J -V "Slackware-current DVD" \
    -hide-rr-moved -hide-joliet-trans-tbl \
    -v -d -N -no-emul-boot -boot-load-size 4 -boot-info-table \
    -sort isolinux/iso.sort \
    -b isolinux/isolinux.bin \
    -c isolinux/isolinux.boot \
    -preparer "Slackware-current build for x86_64 by Eric Hameleers <alien@slackware.com>" \
    -publisher "The Slackware Linux Project - http://www.slackware.com/" \
    -A "Slackware-current DVD - build 31_May_2023" \
    -x ./pasture -x ./testing  -x ./source -x ./extra/source \
    -eltorito-alt-boot -no-emul-boot -eltorito-platform 0xEF -eltorito-boot isolinux/efiboot.img \
    .
Yes, /extra is included.

However, /source, /extra/source along with /pasture & /testing are _excluded_ not _included_.

To include those would then require a dual-layer DVD.
Not AlienBOB here, BUT what is included or excluded could be fully customized in the configuration file of mirror-slackware-current.sh , script written for and used by Mr. Hameleers for his custom ISOs for slackware-current.

BTW, Mr. Hameleers stopped posting in this forum some years ago, so I guess that he will not respond you.

Last edited by LuckyCyborg; 05-31-2023 at 12:15 PM.
 
Old 06-01-2023, 02:44 AM   #2340
opty
Member
 
Registered: Mar 2021
Posts: 180

Rep: Reputation: Disabled
ntp 4.2.8p16

Edit: Observing possible issues on #ntp at Libera.Chat so no rush.

Another edit:

Code:
13:10:37 <opty> i use "pool cz.pool.ntp.org iburst", do you recommend upgrade to 4.2.8p16 then?
[...]
13:13:54 <@harlan> opty: I could be wrong.  It seems to me like this change, even if we don't keep it, will only cause
                   potential difficulty at the initial start, and the long-term behavior seems clearly better.
13:14:02 <davehart> opty pool associations have their initial poll delayed by 3s after the response to solicitation.  They
                    are not affected by the up to 64s first poll issue in p16, so I would recommend you upgrade.  I'd also
                    recommend you consider trying the change to automatically hone in the best pool servers from your unique
                    perspective.  That's at https://people.nwtime.org/hart/ntp-dev-3792-msm-v2.tar.gz

Last edited by opty; 06-01-2023 at 06:51 AM. Reason: quotes
 
  


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
Apache 2.4 requests to non-SSL site with "Upgrade-Insecure-Requests: 1" and no trailing / get redirected to default site owendelong Linux - Server 2 06-22-2021 02:08 PM
[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 02:10 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