LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Requests for -current (14.2-->15.0) (https://www.linuxquestions.org/questions/slackware-14/requests-for-current-14-2-15-0-a-4175620463/)

LuckyCyborg 10-23-2020 07:27 PM

Quote:

Originally Posted by IlyaK (Post 6178187)
I just installed Current. It seems that we lack of Postgres, Nginx, Docker and nodejs. We have Apache and MySQL instead, just like in 2005:)

Correct me if I am wrong, but almost all production web servers these days use nginx or docker. And Postgres is de-facto database for Django, which is one of the most popular web-frameworks.

I can install everything from slackbuilds, but shouldn't we have most popular tools out of the box?

I am not a specialist on servers, but I am pretty sure that Docker is not a web server, but rather something like Flatpak.

However, as probably any today vertical solution for servers, it uses systemd(-nspawn) - then I guess that you will not see it in Slackware in the foreseeable future.

BTW, I have friends who loves this Docker and don't stop talking about it, that's why I heard of it.

IlyaK 10-23-2020 07:35 PM

Quote:

But I am pretty sure that Docker is not a web server, but rather something like Flatpak.
Yes:) Docker is used to run applications in containers.
Very popular setup is in which you have one container with nginx, another one with database etc.

It is more correct to say that "application servers" need docker, not "web servers":)

Docker doesn't need systemd-spawn, afaik, but both of them use same APIs: containerd, cgroups etc.

I ran docker on 14.2 and it worked very well: https://slackbuilds.org/repository/14.2/system/docker/

ziprun 10-24-2020 08:26 AM

If I could offer a suggestion on a good package to add to slackware, add Common Desktop Environment.
I made a thread about it and there are just a few changes that need to be made:
1. Nawk must be installed. Either install actual nawk or symlink gawk as nawk. Installing nawk would probably break with programs less than symlinking to gawk, can someone verify me the differences between gawk and nawk?
2. Install xlt as the final additional dependency.
I explained in great detail about how to setup CDE for slackware in my thread. It would be a perfect fit for the distro.
3. Setting up a few locales might be required, so I won't consider it to be a hard dependency for the time being.
4. Oh, and make sure rpcbind is running as well when using CDE.

Everyone talks about adding KDE5 to slackware. Well I say the tried and true CDE should be added instead.

Jeebizz 10-24-2020 09:16 AM

Quote:

Originally Posted by ziprun (Post 6178340)
If I could offer a suggestion on a good package to add to slackware, add Common Desktop Environment.
I made a thread about it and there are just a few changes that need to be made:
1. Nawk must be installed. Either install actual nawk or symlink gawk as nawk. Installing nawk would probably break with programs less than symlinking to gawk, can someone verify me the differences between gawk and nawk?
2. Install xlt as the final additional dependency.
I explained in great detail about how to setup CDE for slackware in my thread. It would be a perfect fit for the distro.
3. Setting up a few locales might be required, so I won't consider it to be a hard dependency for the time being.
4. Oh, and make sure rpcbind is running as well when using CDE.

Everyone talks about adding KDE5 to slackware. Well I say the tried and true CDE should be added instead.

I find CDE to be fascinating and would love to play with it more, however the problem with CDE is I think some security holes haven't been patched and more importantly the install locations in the source is hard coded which has also not been taken care of. Also given the state of Slackware and KDE4, imo CDE is probably not the best suggestion as everyone is still waiting for Plasma to replace the EOL KDE4.

-edit

Going back to CDE, has the major security hole even been addressed? Meaning RPC has to be run in an insecure way to even get it to work (RPCbind?), that is also something that Pat would never include in his distro if a DE had that issue.

ziprun 10-24-2020 09:20 AM

Quote:

Originally Posted by Jeebizz (Post 6178358)
I think some security holes haven't been patched

Could you please be specific about what security holes you're referring to? If you're talking about rpcbind running in insecure mode, that isn't an issue anymore because it doesn't require insecure mode anymore.

Jeebizz 10-24-2020 10:25 AM

Quote:

Originally Posted by ziprun (Post 6178361)
Could you please be specific about what security holes you're referring to? If you're talking about rpcbind running in insecure mode, that isn't an issue anymore because it doesn't require insecure mode anymore.

To be honest that was the main hole as far as I know, if it has been taken care of then excellent. Still, there is the issue of the hardcoded install paths. Again though, I think maybe we should just have Plasma integrated / focus on that rather than CDE. Slackbuilds for CDE would be nice actually, but being included in Slackware imo right now is not the opportune time to ask for it.

-edit

The hard coded install paths in the source for CDE is most likely going to be a deal breaker anyhow for Pat imo. He already has enough on his plate, and again a lot of people right now are chomping at the bit for Plasma to finally be officially included.

mats_b_tegner 10-24-2020 03:32 PM

Alpine 2.24
http://alpine.x10host.com/alpine/release/
http://alpine.x10host.com/alpine/rel...ne-2.24.tar.xz

Seems to build fine under Slackware-current.

Didier Spaier 10-24-2020 04:24 PM

Proposed fix to allow checking f2fs as root fs
 
1 Attachment(s)
This is a follow-up of post #5749.

Actually fsck.f2fs accepts to check a file system mounted read-only, but only if the -f option is used.

As an aside the issue has been brought on the f2fs-dev mailing list, most recently in this post.

Here is the output of fsck.f2fs --help (the man page is outdated):
Code:

Usage: fsck.f2fs [options] device
[options]:
  -a check/fix potential corruption, reported by f2fs
  -c <num-cache-entry>  set number of cache entries (default 0)
  -m <max-hash-collision>  set max cache hash collision (default 16)
  -C encoding[:flag1,flag2] Set options for enabling casefolding
  -d debug level [default:0]
  -f check/fix entire partition
  -g add default options
  -O feature1[feature2,feature3,...] e.g. "encrypt"
  -p preen mode [default:0 the same as -a [0|1]]
  -S sparse_mode
  -t show directory tree
  -q preserve quota limits
  -y fix all the time
  -V print the version number and exit
  --dry-run do not really fix corruptions
  --no-kernel-check skips detecting kernel change
  --kernel-check checks kernel change
  --debug-cache to debug cache when -c is used

So I propose the attached patch to /etc/rc.d/rc.S.

Caveats:
  • I still have to test this "live". One of the possible issues is that the check could take a long time (as reported by others, especially after a kernel upgrade).
  • I need to better understand the effect of some options, including -y.
A t least I have checked that the exit codes of f2fs.fsck have the same meaning as those of fsck, so only the command itself need to differ upon the file system.

giomat 10-25-2020 04:42 AM

Quote:

Originally Posted by ziprun (Post 6178340)
If I could offer a suggestion on a good package to add to slackware, add Common Desktop Environment...

there is also this reboot https://github.com/NsCDE/NsCDE, which builds on top of the FVWM included in slackware.
didn't try it yet but seems quite faithful to the original

Didier Spaier 10-25-2020 05:14 AM

Reviewing the main startup scripts rc.S and rc.M I am glad they provide a predictable startup sequence (no useless parallelism, so no need for handshakes or waiting for who knows what and why and how long) and the version shipped in -current can be used with few if any modification on a derivative based on 14.2. Cleverly simple or simply clever? Both. Thanks Pat! :hattip:

LuckyCyborg 10-25-2020 10:25 AM

It's Time To Admit It: The X.Org Server Is Abandonware

Maybe some food for thoughts?

And from what I know, Slackware have a single Wayland based DE ready for it: Plasma5

Yes, I ask one more time again for Plasma5 to be merged on -current, it was "ready" since long time anyway...

garpu 10-25-2020 10:47 AM

Phoronix? Heavy grain of salt, there. (But agreed...Plasma 5 would be a nice addition. I think it's a question of when, not if?)

LuckyCyborg 10-25-2020 10:58 AM

Quote:

Originally Posted by garpu (Post 6178626)
Phoronix? Heavy grain of salt, there. (But agreed...Plasma 5 would be a nice addition. I think it's a question of when, not if?)

We, the Russian males, we have a medium life expectancy of 72 years and I am already in my 50.

I really hope that this "when" will happen before I will leave this World of old age...

However, the guy (cited in this article) really said this: https://gitlab.freedesktop.org/xorg/...33#note_670522
Quote:

The main worry I have is that xserver is abandonware without even regular releases from the main branch. That's why we had to blacklist X. Without someone caring I think there's just largely downsides to enabling features.

Also there's zero technical reasons why modifiers are tied to atomic in -modesetting, at least as long as everything is disabled by default.


GazL 10-25-2020 11:14 AM

Wayland is linux only, and still not fully feature complete. Whether or not it's getting the due attention that it deserves Xserver is still needed.


edit: Apologies for the noise, I didn't realise I was reading "requests for current" otherwise I wouldn't have responded.

LuckyCyborg 10-25-2020 11:45 AM

Quote:

Originally Posted by GazL (Post 6178636)
Wayland is linux only, and still not fully feature complete. Whether or not it's getting the due attention that it deserves Xserver is still needed.

Well, I thought that Slackware is a Linux distribution, or I miss something? What's the problem?

Regarding "features completion" you talk about what? You may want to say that the DEs may not ported entirely their features to Wayland.

As someone who literally uses daily the Wayland/Plasma5 I tell you that with the latest Plasma5, as in Plasma 5.20 and so on, there's a lack for only two DE features present on X11/Plasma5:

- remembering the windows position.
- restoring the previous opened windows after a reboot/logout.

Why? I believe that's not Wayland's business to do this. The Plasma5 should invent its own ways even for them.

However, I find funny that a bunch of security nuts ignores with elegance this Wayland, which looks magnitude grades more secure than X.org ...

Heck, the Plasma5 had to rely on Pipewire to screencast the opened windows for just doing thumbnails on taskbar! ;)

Abrixas2 10-25-2020 11:50 AM

Removed

IlyaK 10-25-2020 05:10 PM

I have a strange request: do you know the language called Euphoria?

It is a scripting language that shares many features of "serious" languages including (but not limited to):

Cooperative multitasking, functional programming, bit arithmetics, static typing, direct OS api access, memory management, modules, static linking, excellent loops with retry and continue, switch with fallthru, profiling, tracing, debugging, preprocessing, compile-time expressions, C translator and indirect function calls.

At the same time it has only four (!) built-in types and extensive standard library. I believe this language could be used to teach programming:) And it is a very small.

https://openeuphoria.org/docs/

I was able to run it on 14.2:
Code:

~$ eui --version
Euphoria Interpreter v4.1.0 development
  64-bit Linux, Using System Memory
  Revision Date: 2015-02-02 14:18:53, Id: 5861:57179171dbed
$ euc --version
Euphoria to C Translator v4.1.0 development
  64-bit Linux, Using System Memory
  Revision Date: 2015-02-02 14:18:53, Id: 5861:57179171dbed

so, including it should not be hard.

Language is not very popular, but tcl (which is a part of Slackware) is not very popular those says either.

Didier Spaier 10-25-2020 05:36 PM

Searched openeuphoria in repology.org, found only one Arch package in the AUR, nothing in pkgs.org so Slackware would be the first distribution to provide an official package. I am not the one who decides, but I suggest that you first contribute a package to https://slackbuilds.org.

PS and for teaching programming to little kids I suggest logo ;)

camerabambai 10-26-2020 04:53 AM

This is not a request, only a suggestion.
With the latest nfsutils seems some options in nfsmount.conf doesn't work(error: protocol not supported)
For example, if I enable port 4001

Code:

# Server Mountd port mountport
mountport=4001

then
Code:

mount -vvv  slack64:public /mnt
mount.nfs: timeout set for Mon Oct 26 10:49:42 2020
mount.nfs: Unsupported nfs4 mount option(s) passed 'vers=4,retrans=2,retry=1,acl,ac,mountport=4001,port=2049,sec=sys'
mount.nfs: Unsupported nfs4 mount option(s) passed 'vers=4,retrans=2,retry=1,acl,ac,mountport=4001,port=2049,sec=sys'
mount.nfs: Unsupported nfs4 mount option(s) passed 'vers=4,retrans=2,retry=1,acl,ac,mountport=4001,port=2049,sec=sys'

when I remove mountport

Code:

mount -vvv  slack64:public /mnt
mount.nfs: timeout set for Mon Oct 26 10:50:44 2020
mount.nfs: trying text-based options 'retrans=2,retry=1,acl,ac,port=2049,sec=sys,vers=4.2,addr=192.168.0.2,clientaddr=192.168.0.2'
slack64:public on /mnt type nfs (rw,vers=4,retrans=2,retry=1,acl,ac,port=2049,sec=sys)

now i set mountproto

Code:

# Server Mountd Protocol
mountproto=tcp

another error

Code:

mount -vvv  slack64:public /mnt
mount.nfs: timeout set for Mon Oct 26 10:52:42 2020
mount.nfs: Unsupported nfs4 mount option(s) passed 'vers=4,proto=tcp,retrans=2,retry=1,acl,ac,mountproto=tcp,port=2049,sec=sys'
mount.nfs: Unsupported nfs4 mount option(s) passed 'vers=4,proto=tcp,retrans=2,retry=1,acl,ac,mountproto=tcp,port=2049,sec=sys'
mount.nfs: Unsupported nfs4 mount option(s) passed 'vers=4,proto=tcp,retrans=2,retry=1,acl,ac,mountproto=tcp,port=2049,sec=sys'
mount.nfs: Protocol not supported

of course after remove mountproto works fine.
I think those options must be at least commented.

madridsecreto 10-26-2020 05:02 AM

I would like to request adding the following lines to the file /etc/DIR_COLORS:

Code:

.webm 01;35
.webp 01;35

I can do it on my own copy, of course, but I figured they might be useful for someone else.

saxa 10-26-2020 06:36 AM

Nice to see all those new stuff in the Changelog, but I still want to remeber the following:

gobject-introspection-1.66.1
https://download.gnome.org/sources/g...-1.66.1.tar.xz

vte-0.62.1
https://download.gnome.org/sources/v...-0.62.1.tar.xz

gcr-3.38.0
https://download.gnome.org/sources/g...-3.38.0.tar.xz

libsoup-2.72.0
https://download.gnome.org/sources/l...-2.72.0.tar.xz

dconf-0.38.0
https://download.gnome.org/sources/d...-0.38.0.tar.xz

pyatspi-2.38.0
https://download.gnome.org/sources/p...-2.38.0.tar.xz

at-spi2-core-2.38.0
https://download.gnome.org/sources/a...-2.38.0.tar.xz

at-spi2-atk-2.38.0
https://download.gnome.org/sources/a...-2.38.0.tar.xz

pygobject-3.38.0
https://download.gnome.org/sources/p...-3.38.0.tar.xz

Jeebizz 10-26-2020 10:20 PM

I noticed libbluray is in, but libdvdcss is not. So why not include libdvdcss too? It is both from videolan.org

chrisretusn 10-27-2020 12:03 AM

Quote:

Originally Posted by Jeebizz (Post 6179168)
I noticed libbluray is in, but libdvdcss is not. So why not include libdvdcss too? It is both from videolan.org

libdvdcss cannot be distributed with Slackware.
https://slackwiki.com/Libdvdcss

ppr:kut 10-27-2020 04:35 AM

libbluray and libdvdcss are not equivalent software. The dvd equivalent to libbluray would be libdvdread and libdvdnav, both of which *are* included in -current.
The equivalent of libdvdcss would be libaacs and libbdplus, which are also absent.

Jeebizz 10-27-2020 10:20 AM

Quote:

Originally Posted by ppr:kut (Post 6179220)
libbluray and libdvdcss are not equivalent software. The dvd equivalent to libbluray would be libdvdread and libdvdnav, both of which *are* included in -current.
The equivalent of libdvdcss would be libaacs and libbdplus, which are also absent.


Ok oh, thats where my confusion stemmed from and why I thought it should be included.

mats_b_tegner 10-28-2020 08:17 AM

PHP 7.4.12
http://us3.php.net/distributions/php-7.4.12.tar.xz

wowbaggerHU 10-28-2020 01:30 PM

The battery gauge seems to have stopped working recently on my -current KDE4 desktop.
I opened a thread about it here.

Perhaps a new version of upower, or the its counterpart (that upower is talking to over DBus) may solve the problem.

Alien Bob 10-28-2020 01:42 PM

Quote:

Originally Posted by wowbaggerHU (Post 6179609)
The battery gauge seems to have stopped working recently on my -current KDE4 desktop.
I opened a thread about it here.

Perhaps a new version of upower, or the its counterpart (that upower is talking to over DBus) may solve the problem.

That, and the removal of KDE4... to be replaced with Plasma5.

wowbaggerHU 10-28-2020 01:50 PM

Quote:

Originally Posted by wowbaggerHU (Post 6179609)
The battery gauge seems to have stopped working recently on my -current KDE4 desktop.

As it turned out, the mozjs78 package was missing. (It wasn't mentioned in CHANGES_AND_HINTS.TXT)
Installing it fixed the problem.

mlangdn 10-28-2020 02:46 PM

From current changelog:

Code:

Tue Sep 15 18:51:00 UTC 2020
a/libgudev-234-x86_64-1.txz: Upgraded.
ap/htop-3.0.2-x86_64-1.txz: Upgraded.
l/glib2-2.66.0-x86_64-2.txz: Rebuilt.
      Build against system gtk-doc and don't bundle a newer version. You'll need
      to reinstall the linuxdoc-tools package to restore the correct version of
      gtk-doc. Thanks to chrisVV.
l/mozjs68-68.11.0esr-x86_64-2.txz: Removed.
l/mozjs78-78.2.0esr-x86_64-1.txz: Added.
      This is needed by the new version of polkit.

l/polkit-0.118-x86_64-1.txz: Upgraded.
      This requires the new mozjs78 package.
x/libva-2.9.0-x86_64-1.txz: Upgraded.
x/libva-utils-2.9.0-x86_64-1.txz: Upgraded.


drumz 10-28-2020 03:08 PM

Quote:

Originally Posted by wowbaggerHU (Post 6179620)
It wasn't mentioned in CHANGES_AND_HINTS.TXT

I believe that CHANGES_AND_HINTS.TXT is only valid for stable releases of Slackware. When using -current, you have to keep up with ChangeLog.txt.

To be fair, I don't think this is documented anywhere...

Fellype 10-28-2020 08:55 PM

Kernel module for 5G wireless devices
 
Hi all,

Is there already a kernel module that make a device like this to work: ID 0bda:b812 Realtek Semiconductor Corp. 802.11ac NIC ?

If not, could this module be added to the project: https://github.com/RinCat/RTL88x2BU-Linux-Driver/ ?
I've compiled and installed it here (Slackware64-current) and it is working fine.

Thanks in advance

USUARIONUEVO 10-29-2020 02:12 AM

Hi , in the latest gstreamer updates , the package gst-plugins-base have a plugin linked to graphene , but graphene is not provided on the update.


Quote:

ldd /usr/lib64/gstreamer-1.0/libgstopengl.so|grep found
libgraphene-1.0.so.0 => not found

Rebuild , or provide graphene package , THANKS!

Thom1b 10-29-2020 04:28 AM

samba-4.13.1 is released with security fixes.

Quote:

Release Announcements
---------------------

These are a security releases in order to address the following defects:

o CVE-2020-14318: Missing handle permissions check in SMB1/2/3 ChangeNotify.
o CVE-2020-14323: Unprivileged user can crash winbind.
o CVE-2020-14383: An authenticated user can crash the DCE/RPC DNS with easily
crafted records.

saxa 10-29-2020 05:22 AM

Quote:

Originally Posted by USUARIONUEVO (Post 6179761)
Hi , in the latest gstreamer updates , the package gst-plugins-base have a plugin linked to graphene , but graphene is not provided on the update.


Rebuild , or provide graphene package , THANKS!

This seems to be quite a good news for me :)

ziprun 10-29-2020 08:17 AM

Pat, you need to make a single change to xedit so the line number doesn't get cut off. The line "*positionWindow.width:" needs to be changed from 90 to a higher number such as 250 because at 90 you have the line numbers getting cut off slightly when it's past 9 and above, and even won't show the full number when it's 100 or above. A number such as 250 gives you plenty of room for the current line number and xedit will work properly out of the box.

saxa 10-29-2020 12:03 PM

Thanks for the new udisks and friends, now we just wait for upower and elogind :)

Tonus 10-29-2020 04:50 PM

For elogind please do not give it precedence on acpid for suspend, hibernate or sleep.

rworkman 10-29-2020 07:47 PM

Quote:

Originally Posted by USUARIONUEVO (Post 6179761)
Hi , in the latest gstreamer updates , the package gst-plugins-base have a plugin linked to graphene , but graphene is not provided on the update.

Rebuild , or provide graphene package , THANKS!

Check your ChangeLog again:
Code:

l/graphene-1.10.2-x86_64-1.txz:  Added.

rworkman 10-29-2020 07:48 PM

Quote:

Originally Posted by Tonus (Post 6179994)
For elogind please do not give it precedence on acpid for suspend, hibernate or sleep.

The default is almost surely going to be the way of which one "just works" for the majority of the users.

USUARIONUEVO 10-29-2020 08:09 PM

Quote:

Originally Posted by rworkman (Post 6180022)
Check your ChangeLog again:
Code:

l/graphene-1.10.2-x86_64-1.txz:  Added.

This packages arrives today october 29 , ...plugins-base goes broken since 27 , check time of your changelogs again. :=)

An interesting moviment is poppler drop qt4 , slow moviments to plasma are wellcome.

rworkman 10-29-2020 08:17 PM

Quote:

Originally Posted by USUARIONUEVO (Post 6180031)
This packages arrives today october 29 , ...plugins-base goes broken since 27 , check time of your changelogs again. :=)

Ah, fair enough. I'm running behind :-)

USUARIONUEVO 10-29-2020 08:19 PM

Not bad ....

Quote:

Found 8 missing dependencies:
libexiv2.so.26 required by:
--> Package: gwenview-4.14.3-x86_64-4 (/usr/lib64/libgwenviewlib.so.4.14.38)
--> Package: kde-runtime-4.14.3-x86_64-8 (/usr/lib64/kde4/jpegthumbnail.so)
--> Package: kfilemetadata-4.14.3-x86_64-5 (/usr/lib64/kde4/kfilemetadata_exiv2extractor.so)
--> Package: libkexiv2-4.14.3-x86_64-4 (/usr/lib64/libkexiv2.so.11.2.0)
--> Package: nepomuk-core-4.14.3-x86_64-5 (/usr/lib64/kde4/nepomukexiv2extractor.so)
--> Package: strigi-0.7.8-x86_64-4 (/usr/lib64/strigi/strigiea_jpeg.so)
libImath-2_2.so.12 required by:
--> Package: kde-runtime-4.14.3-x86_64-8 (/usr/lib64/kde4/exrthumbnail.so)
--> Package: kdelibs-4.14.38-x86_64-8 (/usr/lib64/kde4/plugins/imageformats/kimg_exr.so)
libIlmImf-2_2.so.22 required by:
--> Package: kde-runtime-4.14.3-x86_64-8 (/usr/lib64/kde4/exrthumbnail.so)
--> Package: kdelibs-4.14.38-x86_64-8 (/usr/lib64/kde4/plugins/imageformats/kimg_exr.so)
libIex-2_2.so.12 required by:
--> Package: kde-runtime-4.14.3-x86_64-8 (/usr/lib64/kde4/exrthumbnail.so)
--> Package: kdelibs-4.14.38-x86_64-8 (/usr/lib64/kde4/plugins/imageformats/kimg_exr.so)
libHalf.so.12 required by:
--> Package: kde-runtime-4.14.3-x86_64-8 (/usr/lib64/kde4/exrthumbnail.so)
--> Package: kdelibs-4.14.38-x86_64-8 (/usr/lib64/kde4/plugins/imageformats/kimg_exr.so)
libIlmThread-2_2.so.12 required by:
--> Package: kde-runtime-4.14.3-x86_64-8 (/usr/lib64/kde4/exrthumbnail.so)
--> Package: kdelibs-4.14.38-x86_64-8 (/usr/lib64/kde4/plugins/imageformats/kimg_exr.so)
libpoppler-qt4.so.4 required by:
--> Package: kfilemetadata-4.14.3-x86_64-5 (/usr/lib64/kde4/kfilemetadata_popplerextractor.so)
--> Package: nepomuk-core-4.14.3-x86_64-5 (/usr/lib64/kde4/nepomukpopplerextractor.so)
--> Package: okular-4.14.3-x86_64-3 (/usr/lib64/kde4/okularGenerator_poppler.so)
libraw_r.so.16 required by:
--> Package: libkdcraw-4.14.3-x86_64-5 (/usr/lib64/libkdcraw.so.23.0.0)

lucky , that are not heavy things , kde starts and is working , but some internal plugins not work.


bye bye kde4 ? :=)

USUARIONUEVO 10-29-2020 08:22 PM

I ever use a little USEFUL tool , called slackyd ,to find this broken things.

Quote:

slackyd -d
https://slackbuilds.org/repository/1...search=slackyd

I know , people write some scripts on forum , but this are in my experience more fast and flexible , and can use it to find missin packages added.

USUARIONUEVO 10-29-2020 08:33 PM

Im a nuub , not see the note on aaa_elflib , but im not sure if all are fixed inside aaa_elflibs , im not see the libraw_r.so.16

a/aaa_elflibs-15.0-i586-26.txz: Rebuilt.
Upgraded: liblber-2.4.so.2.11.3, libldap-2.4.so.2.11.3, libmpc.so.3.2.1.
Added temporarily to allow for third-party packages to be recompiled:
libHalf.so.12.0.0, libIex-2_2.so.12.0.0, libIexMath-2_2.so.12.0.0,
libIlmImf-2_2.so.22.0.0, libIlmImfUtil-2_2.so.22.0.0,
libIlmThread-2_2.so.12.0.0, libImath-2_2.so.12.0.0,
libpoppler-qt4.so.4.11.0, libpoppler.so.79.0.0.



SORRY FOR THE NOISE , ALL IS FIXED UNDER aaa_elflibs

LuckyCyborg 10-30-2020 02:53 AM

Quote:

Originally Posted by USUARIONUEVO (Post 6180033)
bye bye kde4 ? :=)

Do not keep your breath for...

I bet that it will be replaced by the Plasma7 or a later release.

SCerovec 10-30-2020 05:43 AM

Quote:

Originally Posted by Fellype (Post 6179721)
Hi all,

Is there already a kernel module that make a device like this to work: ID 0bda:b812 Realtek Semiconductor Corp. 802.11ac NIC ?

If not, could this module be added to the project: https://github.com/RinCat/RTL88x2BU-Linux-Driver/ ?
I've compiled and installed it here (Slackware64-current) and it is working fine.

Thanks in advance

Last time i had questions like that i ran the kernel configurator and have read, read & read...

Code:

#cd /usr/src/linux

# make xconfig


SCerovec 10-30-2020 05:45 AM

Quote:

Originally Posted by LuckyCyborg (Post 6180073)
Do not keep your breath for...

I bet that it will be replaced by the Plasma7 or a later release.

But first we get thru KDE4 becoming abandon-ware for a decade...

Patience, laddie! :D

(just kidding)

ZhaoLin1457 10-30-2020 06:16 AM

Quote:

Originally Posted by SCerovec (Post 6180110)
But first we get thru KDE4 becoming abandon-ware for a decade...

Do not say this three time, because it may become truth... ;)

In this line of thought, I propose changing the distribution name into Archeoware, because it relies in useful historical evidences like the KDE4, an antic XFCE, this ConsoleKit2 who no one else still uses and probably many other interesting archeological features.

If we struggle a bit, maybe we can even rollback to Linux 2.4.x and kick off this eudev? ;)

orbea 10-30-2020 10:58 AM

Quote:

Originally Posted by rworkman (Post 6180022)
Check your ChangeLog again:
Code:

l/graphene-1.10.2-x86_64-1.txz:  Added.

You know I warned about this 10 days ago now? I even added it to SBo to show as an example...

https://www.linuxquestions.org/quest...ml#post6176199

Why are all my fixes being ignored?


All times are GMT -5. The time now is 07:14 PM.