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 12-03-2022, 08:02 PM   #1396
Nobby6
Member
 
Registered: Jul 2012
Location: Sunshine Coast, Australia
Distribution: Slackware 64
Posts: 237
Blog Entries: 1

Rep: Reputation: 212Reputation: 212Reputation: 212

Quote:
Originally Posted by elcore View Post
Sure, you could say that. However, KDE has a thing called kdelibs which is fully optional, and none of base packages link to it.
*cough* Try running headless servers, ie: without any X or KDE, and using GD and php, which is off the top of my head the biggest fail. I think ffmpeg was in there too somewhere with something, and half a dozen X (not kde) packages were needed for convert to work.
 
Old 12-04-2022, 11:17 AM   #1397
elcore
Senior Member
 
Registered: Sep 2014
Distribution: Slackware
Posts: 1,754

Rep: Reputation: Disabled
Quote:
Originally Posted by Nobby6 View Post
*cough* Try running headless servers, ie: without any X or KDE, and using GD and php, which is off the top of my head the biggest fail. I think ffmpeg was in there too somewhere with something, and half a dozen X (not kde) packages were needed for convert to work.
I don't use this, so no problem here. If I did use, and disagreed with how it's linked, then I'd recompile it locally.
Only reason why I mentioned kdelibs specifically and not /x/ or /l/, is because gnome has no such thing, its libs usually leak all over the system.
To be precise, removing kdelibs breaks nothing in (my) server space, removing gnome libs could break quite a few packages, depending on how they are linked.
 
Old 12-05-2022, 03:54 AM   #1398
TurboBlaze
Member
 
Registered: Jan 2018
Location: Russian Federation, Lipetsk region, Dankov
Distribution: Porteus
Posts: 196

Rep: Reputation: Disabled
Hi guys!
I have HP LaserJet MFP M234dwe but it does not work in hplip-3.20.5
How about to update hplip?

Thanks
 
Old 12-05-2022, 04:19 AM   #1399
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,407

Rep: Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140
Quote:
Originally Posted by TurboBlaze View Post
Hi guys!
I have HP LaserJet MFP M234dwe but it does not work in hplip-3.20.5
How about to update hplip?

Thanks
New releases of hplip require avahi
Pat does not seem inclined to add avahi in Slackware
So, the best solution is to install avahi (e.g. from SBo) and to compile hplip by yourself

Another solution, if you don't need network support, don't install avahi and compile hplip with:
Code:
- --enable-network-build=yes \
+ --enable-network-build=no \

Last edited by marav; 12-05-2022 at 08:08 AM. Reason: typo
 
3 members found this post helpful.
Old 12-05-2022, 06:06 AM   #1400
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Quote:
Originally Posted by marav View Post
New releases of hplip requires avahi
Pat does not seem inclined to add avahi in Slackware
So, the best solution is to install avahi (e.g. from SBo) and to compile hplip by yourself

An other solution, if you don't need network support, don't install avahi and compile hplip with:
Code:
- --enable-network-build=yes \
+ --enable-network-build=no \
Thanks for the Info marav.

So, could that be why hplip detects my Wife's HP Scanner on my old Slackware 14.2 Laptop but not on my Slackware 15.0 ?

Thanks again !

-- kjh
 
1 members found this post helpful.
Old 12-05-2022, 09:45 AM   #1401
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,377

Rep: Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757Reputation: 2757
A little against the Slackware vanilla philosophy, but perhaps a script could be added into /etc/profile.d, say slackspecific.sh, that could be set executable to provide Slackware specific convenience shell functions to the user at login.
As an example, this function implements the common task of listing the installed packages and piping to grep with the usage 'lspg <string>'.
Code:
#!/bin/sh
# Shell function for searching installed packages
lspg() { local SEARCH=${1:-.*}; ls /var/lib/pkgtools/packages/* | grep -i "$SEARCH"; }
A user could then add '. /etc/profile.d/slackspecific.sh' to their ~/.bashrc to make the functions available in interactive shells.
 
Old 12-05-2022, 10:26 AM   #1402
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,550

Rep: Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404Reputation: 3404
No love for xf86-video-r128 6.12.1 released on December 4, 2022 ?

https://www.x.org/releases/individua...-6.12.1.tar.xz
https://www.x.org/releases/individua...2.1.tar.xz.sig

https://cgit.freedesktop.org/xorg/dr...86-video-r128/

Last edited by LuckyCyborg; 12-05-2022 at 10:28 AM.
 
1 members found this post helpful.
Old 12-05-2022, 05:06 PM   #1403
0XBF
Member
 
Registered: Nov 2018
Distribution: Slackware
Posts: 781

Rep: Reputation: 895Reputation: 895Reputation: 895Reputation: 895Reputation: 895Reputation: 895Reputation: 895
Quote:
Originally Posted by allend View Post
A little against the Slackware vanilla philosophy, but perhaps a script could be added into /etc/profile.d, say slackspecific.sh, that could be set executable to provide Slackware specific convenience shell functions to the user at login.
As an example, this function implements the common task of listing the installed packages and piping to grep with the usage 'lspg <string>'.
Code:
#!/bin/sh
# Shell function for searching installed packages
lspg() { local SEARCH=${1:-.*}; ls /var/lib/pkgtools/packages/* | grep -i "$SEARCH"; }
A user could then add '. /etc/profile.d/slackspecific.sh' to their ~/.bashrc to make the functions available in interactive shells.
I use a similar convenience function to quickly search slackware packages in my ~/.bashrc. I prefer it this way so I can decide what options to pass to grep still.
Code:
pkggrep () {
  grep $@ /var/lib/pkgtools/packages/*
}
The point is, I think it'll be difficult to come up with a standardized set of functions to suit everyone's needs.
 
2 members found this post helpful.
Old 12-05-2022, 05:26 PM   #1404
reddog83
Member
 
Registered: Apr 2018
Distribution: Slackware 15.0/Current
Posts: 461

Rep: Reputation: 237Reputation: 237Reputation: 237
Mesa 22.3.0 Release Notes / 2022-12-02
Quote:
Mesa 22.3.0 is a new development release. People who are concerned with stability and reliability should stick with a previous release or wait for Mesa 22.3.1.

Mesa 22.3.0 implements the OpenGL 4.6 API, but the version reported by glGetString(GL_VERSION) or glGetIntegerv(GL_MAJOR_VERSION) / glGetIntegerv(GL_MINOR_VERSION) depends on the particular driver being used. Some drivers don’t support all the features required in OpenGL 4.6. OpenGL 4.6 is only available if requested at context creation. Compatibility contexts may report a lower version depending on each driver.

Mesa 22.3.0 implements the Vulkan 1.3 API, but the version reported by the apiVersion property of the VkPhysicalDeviceProperties struct depends on the particular driver being used.
https://archive.mesa3d.org/mesa-22.3.0.tar.xz
https://archive.mesa3d.org/mesa-22.3.0.tar.xz.sig

Not saying this is a request just throwing this out there so everyone knows what has been updated in 22.3.0 that's all.

Last edited by reddog83; 12-05-2022 at 05:28 PM.
 
3 members found this post helpful.
Old 12-07-2022, 09:14 PM   #1405
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,344

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
Hi , the new mesa support i915 in the gallium driver list.

I think we need enable it..

GALLIUM_DRIVERS="nouveau,r300,r600,svga,radeonsi,swrast,i915,virgl,iris,crocus,zink"
 
2 members found this post helpful.
Old 12-07-2022, 09:27 PM   #1406
reddog83
Member
 
Registered: Apr 2018
Distribution: Slackware 15.0/Current
Posts: 461

Rep: Reputation: 237Reputation: 237Reputation: 237
GTK+ 3.24.35
Quote:
Overview of Changes in GTK+ 3.24.35, 11-22-2022
===============================================

* GtkFontChooserWidget:
- Fix a critical

* GtkAccelLabel:
- Differentiate keypad keysyms in accelerators

* Input:
- Recognize stylus devices as pens
- Fix problems with motion compression

* Windows:
- Build system improvements

* Wayland:
- Fix problems with unreliable DND
- Use GLES if required
- Add support for titlebar gestures
- Refactor handling of IM client updates
- Fix cursor hotspots with scaled surfaces
- Use the xdg-activation protocol
- Load cursors on demand
- Fix cursor size on hi-dpi displays
https://download.gnome.org/sources/g...3.24.35.tar.xz
https://download.gnome.org/sources/g...4.35.sha256sum

Last edited by reddog83; 12-07-2022 at 09:53 PM.
 
1 members found this post helpful.
Old 12-08-2022, 02:43 AM   #1407
elcore
Senior Member
 
Registered: Sep 2014
Distribution: Slackware
Posts: 1,754

Rep: Reputation: Disabled
It would appear Xvid patent has expired, so it's now OK to ship multimedia/xvidcore.
Not requesting or nothing, just saying. (I already have that linked with ffmpeg, locally).
 
2 members found this post helpful.
Old 12-08-2022, 04:21 AM   #1408
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,407

Rep: Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140
KDE Gear 22.12.0

Announcements:
https://kde.org/announcements/gear/22.12.0/

Full changelog:
https://kde.org/announcements/changelogs/gear/22.12.0/
 
2 members found this post helpful.
Old 12-08-2022, 08:36 AM   #1409
biker_rat
Member
 
Registered: Feb 2010
Posts: 370

Rep: Reputation: 220Reputation: 220Reputation: 220
Mesa 22.3.0 split the intel vulkan driver into ANV for current chipsets and HASVK for legacy (ivy bridge, haswell, broadwell generation). The current package slackbuild needs the line
-Dvulkan-drivers=amd,intel,swrast \
edited to
-Dvulkan-drivers=amd,intel,intel_hasvk,swrast \

to enable vulkan support for ivy bridge, haswell, and broadwell intel graphics.
 
5 members found this post helpful.
Old 12-08-2022, 09:40 AM   #1410
TommyC7
Member
 
Registered: Mar 2012
Distribution: Slackware, CentOS, OpenBSD, FreeBSD
Posts: 530

Rep: Reputation: Disabled
The current version of the less file pager (as of this post, 612) has a bug that can be reproduced as follows using what's in the code blocks as an example file:

Code:
1. bar
2. bar
3. bar
1. Search in less for "ba" or "bar"
2. 'n'ext the search results until the "bar" on the third line is reached
3. Previous ('N') will go back to "bar" on the 2nd line as expected but doing so again will go back to the "bar" on the 3rd line and will continue to switch back and forth between the 2nd and 3rd "bar".

As of the date of this post, less-612 has been removed from the official page and the previous version of less that was in -current (608) is being recommended instead.
 
2 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
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 12:45 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