LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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-16-2021, 06:28 PM   #7666
redneonglow
Member
 
Registered: Feb 2020
Location: PA
Distribution: Gentoo, Slackware
Posts: 75

Rep: Reputation: 24

Quote:
Originally Posted by marav View Post
Line 316
Code:
# Disable v6 IP auto configuration before trying to bring up the interface:
        debug_log "${1}: disabling IPv6 autoconf"
        echo "0" >/proc/sys/net/ipv6/conf/${1}/autoconf
And line 357:
Code:
# Enable auto configuration of interfaces:
        echo "1" >/proc/sys/net/ipv6/conf/${1}/autoconf
For some reason I had to enable it manually after rc.inet1 was restarted.
 
Old 05-16-2021, 07:39 PM   #7667
M0M0
Member
 
Registered: Sep 2020
Location: Germany
Distribution: Slackware
Posts: 230

Rep: Reputation: 20
/usr/bin/xmlto is not a POSIX compliant shell script
I think line 1

#!/bin/sh

should be changed to

#!/bin/bash
 
Old 05-17-2021, 09:18 AM   #7668
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,355

Rep: Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067
NetworkManager 1.30.x contains many improvements especially for the wifi

https://gitlab.freedesktop.org/Netwo...blob/main/NEWS

Compiled and works fine here
Code:
15step:: ~ " NetworkManager -V
1.30.4
 
1 members found this post helpful.
Old 05-17-2021, 11:45 AM   #7669
richarson
Member
 
Registered: Dec 2020
Location: Argentina
Distribution: Fedora 38 KDE
Posts: 112

Rep: Reputation: Disabled
Quote:
Originally Posted by marav View Post
NetworkManager 1.30.x contains many improvements especially for the wifi

https://gitlab.freedesktop.org/Netwo...blob/main/NEWS

Compiled and works fine here
Code:
15step:: ~ " NetworkManager -V
1.30.4
Just in case, this probably has to be taken into account if upgrading:

Quote:
* The dhcpcd plugin now requires a minimum version of dhcpcd-9.3.3 with
the --noconfigure option. Using an older version will cause dhcpcd to
exit with a status code of 1.
Slackware-current ships dhcpcd-8.1.9, I don't know if NM uses it or something else.

In my case, it aparently does:

Code:
 1369 ?        Ssl    0:01 /usr/sbin/NetworkManager
 3444 ?        S      0:00  \_ dhcpcd: wlan0 [ip4]
 
2 members found this post helpful.
Old 05-17-2021, 12:05 PM   #7670
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,355

Rep: Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067Reputation: 4067
Quote:
Originally Posted by richarson View Post
Just in case, this probably has to be taken into account if upgrading:



Slackware-current ships dhcpcd-8.1.9, I don't know if NM uses it or something else.

In my case, it aparently does:

Code:
 1369 ?        Ssl    0:01 /usr/sbin/NetworkManager
 3444 ?        S      0:00  \_ dhcpcd: wlan0 [ip4]
You're right, I forgot to mention it
+ dhcpcd
https://roy.marples.name/downloads/d...d-9.4.0.tar.xz

Last edited by marav; 05-17-2021 at 12:06 PM.
 
Old 05-17-2021, 01:25 PM   #7671
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by richarson View Post
Slackware-current ships dhcpcd-8.1.9, I don't know if NM uses it or something else.

In my case, it aparently does:

Code:
 1369 ?        Ssl    0:01 /usr/sbin/NetworkManager
 3444 ?        S      0:00  \_ dhcpcd: wlan0 [ip4]
It does use dhcpcd by default, but if it isn't a compile time dependency, you can switch it to dhclient via /etc/NetworkManager/conf.d/00-dhcp-client.conf by commenting out the dhcpcd line and uncommenting the dhclient line. I don't know if it requires a restart of Network Manager to take effect.
 
1 members found this post helpful.
Old 05-17-2021, 01:48 PM   #7672
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,211

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
Quote:
Originally Posted by marav View Post
NetworkManager 1.30.x contains many improvements especially for the wifi

https://gitlab.freedesktop.org/Netwo...blob/main/NEWS

Compiled and works fine here
Code:
15step:: ~ " NetworkManager -V
1.30.4
this demand has already posted here
 
Old 05-19-2021, 12:23 AM   #7673
TurboBlaze
Member
 
Registered: Jan 2018
Location: Russian Federation, Lipetsk region, Dankov
Distribution: Porteus
Posts: 195

Rep: Reputation: Disabled
Arch Linux added GCC 11.1.0 to his Core tree
https://archlinux.org/packages/core/x86_64/gcc/
How about Slackware?

Thanks.
 
Old 05-19-2021, 02:26 AM   #7674
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 TurboBlaze View Post
Arch Linux added GCC 11.1.0 to his Core tree

How about Slackware?

Thanks.
you already posted this, a couple of days ago
 
1 members found this post helpful.
Old 05-19-2021, 06:04 AM   #7675
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
pango-1.48.5
https://download.gnome.org/sources/p...-1.48.5.tar.xz
 
Old 05-19-2021, 09:18 AM   #7676
jkh2cpu
Member
 
Registered: Feb 2014
Location: Michigan, USA
Distribution: slackware
Posts: 281

Rep: Reputation: 60
OpenEXR-3.0 would be nice. Darktable now requires this.

John.
 
Old 05-19-2021, 12:49 PM   #7677
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

how about switching CUPS upstream URL to https://github.com/OpenPrinting/cups/ ?

According to https://www.phoronix.com/scan.php?pa...e-No-More-CUPS that would be a new home for the stuff.

(There is also a security update available, i.e. v2.3.3op2.)

--
Best regards,
Andrzej Telszewski
 
2 members found this post helpful.
Old 05-19-2021, 01:05 PM   #7678
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,211

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

how about switching CUPS upstream URL to https://github.com/OpenPrinting/cups/ ?

According to https://www.phoronix.com/scan.php?pa...e-No-More-CUPS that would be a new home for the stuff.

(There is also a security update available, i.e. v2.3.3op2.)

--
Best regards,
Andrzej Telszewski

I have already posted this demand, without success

this new cups version, work here without problem, since tree months.

Last edited by gmgf; 05-19-2021 at 01:11 PM.
 
1 members found this post helpful.
Old 05-19-2021, 02:24 PM   #7679
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

now there's two of us, in group the power! :-D

--
Best regards,
Andrzej Telszewski
 
1 members found this post helpful.
Old 05-19-2021, 03:51 PM   #7680
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
mesa-21.1.1 released

sources --> https://github.com/mesa3d/mesa/releases/tag/mesa-21.1.1
 
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
[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