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 05-25-2024, 01:50 PM   #4651
opty
Member
 
Registered: Mar 2021
Posts: 183

Rep: Reputation: Disabled

Change

Code:
if [ -r ChangeLog ]; then
to

Code:
if [ -r ChangeLog.md ]; then
in sysklogd.SlackBuild to make it work in the future and (typo?)

Code:
# For other options, see syslog(8).
to

Code:
# For other options, see syslogd(8).
in config/syslogd.new.

Last edited by opty; 05-25-2024 at 03:15 PM. Reason: syslog(8)
 
2 members found this post helpful.
Old 05-26-2024, 09:00 AM   #4652
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,230

Rep: Reputation: 303Reputation: 303Reputation: 303Reputation: 303
vte-0.76.2
https://download.gnome.org/sources/v...-0.76.2.tar.xz
 
Old 05-26-2024, 11:07 AM   #4653
lostintime
Member
 
Registered: Dec 2021
Posts: 214

Rep: Reputation: Disabled
Noticed with e2fsprogs that e2scrub_all_cron is now installed in /libexec/e2fsprogs/ rather than /lib64/e2fsprogs/. Is this be design or an oopsie?
 
1 members found this post helpful.
Old 05-26-2024, 11:56 AM   #4654
glennmcc
Member
 
Registered: Jan 2021
Location: North Jackson, Ohio (USA)
Distribution: slackware64-15.0, slackware64-current, slackware-14.0
Posts: 596

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
Quote:
Originally Posted by lostintime View Post
Noticed with e2fsprogs that e2scrub_all_cron is now installed in /libexec/e2fsprogs/ rather than /lib64/e2fsprogs/. Is this be design or an oopsie?
Good catch.

Had not noticed that /libexec is a brand-new directory which did not exist till now.

Last edited by glennmcc; 05-26-2024 at 12:00 PM.
 
Old 05-26-2024, 12:04 PM   #4655
lostintime
Member
 
Registered: Dec 2021
Posts: 214

Rep: Reputation: Disabled
Quote:
Good catch.
For years I have run a simple script to check the root file system for rogue directories. Mostly caused by less robust programs that presume a full shell environment and create directories such as /.cache, /.config, etc. A full environment seldom exists when programs are run from within cron.

Anyway, perhaps Pat will explain whether or not the new /libexec is intentional.
 
1 members found this post helpful.
Old 05-26-2024, 12:56 PM   #4656
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,642

Rep: Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522
Quote:
Originally Posted by lostintime View Post
Anyway, perhaps Pat will explain whether or not the new /libexec is intentional.
I for one I bet that's a result of the merged-usr strategy applied by the major Linux distributions.
 
3 members found this post helpful.
Old 05-26-2024, 01:01 PM   #4657
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,344

Rep: Reputation: 1126Reputation: 1126Reputation: 1126Reputation: 1126Reputation: 1126Reputation: 1126Reputation: 1126Reputation: 1126Reputation: 1126
A little too much beer, perhaps.
 
3 members found this post helpful.
Old 05-26-2024, 01:11 PM   #4658
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,146

Rep: Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212Reputation: 4212
Quote:
Originally Posted by lostintime View Post
Noticed with e2fsprogs that e2scrub_all_cron is now installed in /libexec/e2fsprogs/ rather than /lib64/e2fsprogs/. Is this be design or an oopsie?
I think it's because of this commit

https://github.com/tytso/e2fsprogs/c...bba187e5431d7c

without anything I think the default is what we have ATM, but to follow our conventions we could pass
Code:
--libexecdir=/usr/libexec
 
2 members found this post helpful.
Old 05-26-2024, 01:12 PM   #4659
glennmcc
Member
 
Registered: Jan 2021
Location: North Jackson, Ohio (USA)
Distribution: slackware64-15.0, slackware64-current, slackware-14.0
Posts: 596

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
Let's just hope that it's _Not_ as a result of something that's being done on systemD systems
which is now "polluting" the Slackware sysvinit system
 
Old 05-26-2024, 01:16 PM   #4660
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,642

Rep: Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522Reputation: 3522
Quote:
Originally Posted by glennmcc View Post
Let's just hope that it's _Not_ as a result of something that's being done on systemD systems
which is now "polluting" the Slackware sysvinit system
It has nothing to do with the systemd, but with another invention of Mr. Poettering - widely adopted by the major Linux distributions.

Technically, they put everything on /usr and the /bin, /lib64 and /sbin are just symlinks to the /usr counterparts.

Last edited by LuckyCyborg; 05-26-2024 at 01:22 PM.
 
2 members found this post helpful.
Old 05-26-2024, 02:05 PM   #4661
glennmcc
Member
 
Registered: Jan 2021
Location: North Jackson, Ohio (USA)
Distribution: slackware64-15.0, slackware64-current, slackware-14.0
Posts: 596

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
Ah ha... today's upgrades will fix it

Sun May 26 18:29:25 UTC 2024
a/e2fsprogs-1.47.1-x86_64-2.txz: Rebuilt.
Define a proper --libexecdir. ;-) Thanks to lostintime.

____

Upgrades done.

/libexec is gone.

e2scrub_all_cron is now in /usr/libexec/e2fsprogs/

Last edited by glennmcc; 05-26-2024 at 02:47 PM.
 
Old 05-26-2024, 03:02 PM   #4662
bigbadaboum
Member
 
Registered: Apr 2023
Posts: 167

Rep: Reputation: 66
Quote:
glennmcc
Ah ha... today's upgrades will fix it

Sun May 26 18:29:25 UTC 2024
a/e2fsprogs-1.47.1-x86_64-2.txz: Rebuilt.
Define a proper --libexecdir. ;-) Thanks to lostintime.
Oops!

e2fsprogs.SlackBuild
Quote:
In file included from /usr/include/fuse/fuse.h:26:0,
from /usr/include/fuse.h:9,
from fuse2fs.c:29:
/usr/include/fuse/fuse_common.h:33:2: erreur*: #error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
#error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
 
Old 05-26-2024, 03:37 PM   #4663
glennmcc
Member
 
Registered: Jan 2021
Location: North Jackson, Ohio (USA)
Distribution: slackware64-15.0, slackware64-current, slackware-14.0
Posts: 596

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
Quote:
Originally Posted by bigbadaboum View Post
Oops!

e2fsprogs.SlackBuild
No such errors here.

Is your system a fully-upgraded -current ?
 
Old 05-26-2024, 04:16 PM   #4664
bigbadaboum
Member
 
Registered: Apr 2023
Posts: 167

Rep: Reputation: 66
Quote:
glennmcc
No such errors here.

Is your system a fully-upgraded -current ?
No, I'm a big coward.

Whenever something is strange, I freeze the package .

example:
/var/log/snmpd.log
Quote:
NET-SNMP version 5.9.4.pre2
Received TERM or STOP signal... shutting down...

NET-SNMP version 5.9.3
Received TERM or STOP signal... shutting down...
"Someday they'll remember how to cut a new release"
It is not me who writes it
https://mirror.slackbuilds.org/slack...rub.SlackBuild

Last edited by bigbadaboum; 05-26-2024 at 04:34 PM.
 
Old 05-26-2024, 05:13 PM   #4665
fulalas
Member
 
Registered: Jun 2017
Posts: 151

Rep: Reputation: 34
Has anything changed the way mesa is built since 24.0.7 up to current 24.1.0? I noticed A LOT of stutter in some AV1 files using dav1d since this mesa version. If I revert mesa to 24.0.6 (keeping everything else the same) everything plays smoothly.

I'm using the downloaded version of this video: https://www.youtube.com/watch?v=LXb3EKWsInQ (for yt-dlp users: yt-dlp -f 701+140 https://www.youtube.com/watch?v=LXb3EKWsInQ)

I have AMD 780M video card and mpv is using vaapi acceleration.

EDIT: it seems this is ffmpeg's fault: https://gitlab.freedesktop.org/mesa/mesa/-/issues/11197. Updating to ffmpeg 7.0.1 should fix the issue. Is it possible to do it in current?

Last edited by fulalas; 05-26-2024 at 05:22 PM.
 
  


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 11:50 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