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


Closed Thread
  Search this Thread
Old 11-18-2017, 08:15 PM   #3166
ttk
Senior Member
 
Registered: May 2012
Location: Sebastopol, CA
Distribution: Slackware64
Posts: 1,038
Blog Entries: 27

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484

Quote:
Originally Posted by Didier Spaier View Post
Ivandi already did it: http://www.bisdesign.ca/ivandi/slackware/SlackMATE/pam/

Furthermore Vincent Batts have provided unofficial packages: http://www.slackware.com/~vbatts/pam/
Yes, they have compiled PAM into the packages (and I am grateful for it! having plans to use vbatt's work), but this does not lessen the maintenance burden and does not address the misconfiguration risk.

By asking PV+friends to maintain more distro complexity, we are essentially telling them to neglect other packages and/or take longer between releases. IMO that is not fair to the majority of Slackware's users, who have no need for PAM and would be exposed to unnecessary risk.

It's ultimately not up to us, of course .. we'll see what BDFL decides.
 
2 members found this post helpful.
Old 11-18-2017, 11:59 PM   #3167
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,559

Original Poster
Rep: Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351
Quote:
Originally Posted by Didier Spaier View Post
Furthermore Vincent Batts have provided unofficial packages: http://www.slackware.com/~vbatts/pam/
vbatts' server is down and has been for a while, so I had a go at updating the PAM stuff for -current back in July and am currently halfway maintaining it. I just pushed some rebuilds and upgrades to sync it with the present -current tree. There is no warranty, neither express nor implied. :-)

http://www.slackware.com/~rworkman/pam/
 
6 members found this post helpful.
Old 11-19-2017, 03:23 AM   #3168
ajevremovic
Member
 
Registered: May 2011
Location: Serbia
Posts: 82

Rep: Reputation: 40
Quote:
Require freetype >= 2.8.1
2.8.0 had a bad bug with loading 'avar' table. Let's update requirement and cleanup
fifteen years of ifdefs!
I also have problems with (I guess, based on many hours research I've done) freetype - problems on my t420 (Intel i915), XFCE, fonts are too blurry everywhere. Hope that freetype upgrade will solve that.

Last edited by ajevremovic; 11-19-2017 at 04:00 AM.
 
Old 11-19-2017, 05:22 AM   #3169
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,233

Rep: Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027
libtiff-4.0.9:

http://www.simplesystems.org/libtiff/v4.0.9.html
ftp://download.osgeo.org/libtiff/tiff-4.0.9.tar.gz
 
Old 11-19-2017, 05:59 AM   #3170
Thom1b
Member
 
Registered: Mar 2010
Location: France
Distribution: Slackware
Posts: 486

Rep: Reputation: 339Reputation: 339Reputation: 339Reputation: 339
In rc.dovecot, "killall" is used to shutdown dovecot. But the command "doveadm stop" is a proper way to shut it down (like "postfix stop" for postfix).

Maybe dovecot-pigeonhole can be added to manage sieve scripts ?
 
Old 11-19-2017, 10:25 AM   #3171
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
New rc.inet1 with /sbin/ip

/sbin/ip links to libs in /usr:
Code:
bash-4.4$ ldd /sbin/ip
	linux-vdso.so.1 (0x00007ffc45191000)
	libelf.so.1 => /usr/lib64/libelf.so.1 (0x00007f4050f23000)
	libmnl.so.0 => /usr/lib64/libmnl.so.0 (0x00007f4050d1d000)
	libdl.so.2 => /lib64/libdl.so.2 (0x00007f4050b19000)
	libc.so.6 => /lib64/libc.so.6 (0x00007f405073a000)
	libz.so.1 => /lib64/libz.so.1 (0x00007f4050523000)
	/lib64/ld-linux-x86-64.so.2 (0x00007f405113b000)
Do we still need a NFS mounted /usr.

Code:
/sbin/mount -a -t nfs          # This may be our /usr runtime!
Code:
# Start the system logger if it is not already running (maybe because /usr
# is on a network partition).
if [ -x /etc/rc.d/rc.syslog -a -d /var/log -a ! -r /var/run/syslogd.pid ]; then
  . /etc/rc.d/rc.syslog start
fi

And some scripts in /etc/rc.d/rc.inet2 are still sourced.

Cheers
 
1 members found this post helpful.
Old 11-19-2017, 12:18 PM   #3172
Thom1b
Member
 
Registered: Mar 2010
Location: France
Distribution: Slackware
Posts: 486

Rep: Reputation: 339Reputation: 339Reputation: 339Reputation: 339
rc.dovecot

Quote:
Originally Posted by Thom1b View Post
In rc.dovecot, "killall" is used to shutdown dovecot. But the command "doveadm stop" is a proper way to shut it down (like "postfix stop" for postfix).
Here is the rc.dovecot I suggest, using "doveadm stop" and "doveadm reload" :
Code:
#!/bin/sh

dovecot_start()
{
  echo "Starting dovecot:  /usr/sbin/dovecot "
  /usr/sbin/dovecot
}

dovecot_stop()
{
  echo "Stopping dovecot..."
  /usr/bin/doveadm stop
}

dovecot_reload()
{
  echo "Reloading dovecot..."
  /usr/bin/doveadm reload
}

case $1 in
'start')
  dovecot_start
  ;;
'stop')
  dovecot_stop
  ;;
'restart')
  dovecot_stop
  sleep 3
  dovecot_start
  ;;
'reload')
  dovecot_reload
  ;;
*)
  echo "usage $0 start|stop|restart|reload"
esac
 
5 members found this post helpful.
Old 11-19-2017, 12:28 PM   #3173
DarkVision
Member
 
Registered: Jul 2007
Posts: 199

Rep: Reputation: Disabled
sip/PyQt4 in -current

Just a note:
Building PyQt4 4.12.1 on -current with SIP 4.19.5 may fail. Using SIP 4.19.6dev will fix the issue. Dev info

Last edited by DarkVision; 11-19-2017 at 12:50 PM. Reason: Added reply from developer mailing list.
 
Old 11-19-2017, 01:34 PM   #3174
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,233

Rep: Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027
nettle-3.4:

https://git.lysator.liu.se/nettle/ne...ob/master/NEWS
https://ftp.gnu.org/gnu/nettle/nettle-3.4.tar.gz

libzip-1.3.1:

https://libzip.org/news/
https://libzip.org/download/libzip-1.3.1.tar.xz
 
Old 11-19-2017, 03:46 PM   #3175
gargamel
Senior Member
 
Registered: May 2003
Distribution: Slackware, OpenSuSE
Posts: 1,839

Rep: Reputation: 242Reputation: 242Reputation: 242
Quote:
Originally Posted by AlexSlack View Post
I see the updated Kernel!

Thank you very much!
And thank you for all the updates, I love to have postfix and dovecot added to Slackware!
Does anyone know what the motivation behind this is?
Because, not only is Postfix added, but Sendmail is about to be kicked out of Slackware. Is it, because Postfix plays more nicely together with Dovecot? Or has there been any trouble, e.g. unfixed vulnerabilities, with Sendmail recently (which I am not aware of).

Just curious, because I remember the time, when other distros made that move, but Slackware stuck with Sendmail despite its bad reputation for being difficult to administer and patch, and being plagued by a never-ending stream of security vulnerabilities.

So, does anyone know why the switch is made, now? (And please, don't turn this into an MTA flamewar --- I am really just interested what triggered that move right now).


Thanks!

gargamel
 
1 members found this post helpful.
Old 11-19-2017, 04:10 PM   #3176
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,065

Rep: Reputation: Disabled
@gargamel: probably many people requested that and the ones that don't want to switch still have sendmail in /extra. Not a big mystery I think.
 
2 members found this post helpful.
Old 11-19-2017, 10:07 PM   #3177
tuxrules
Senior Member
 
Registered: Jun 2004
Location: Chicago
Distribution: Slackware64 -current
Posts: 1,158

Rep: Reputation: 62
Looks like we need newer nftables (version 0.8) in -current. libnftnl will also need to be upgraded to version 1.0.8.

https://netfilter.org/projects/nftables/downloads.html
https://netfilter.org/projects/libnftnl/downloads.html

Thanks,
 
Old 11-20-2017, 03:54 AM   #3178
lopuh
LQ Newbie
 
Registered: Oct 2012
Posts: 14

Rep: Reputation: Disabled
xap/xpdf/xpdf.SlackBuild
Code:
# Add desktop menu entry and icon
mkdir -p $PKG/usr/share/{applications,pixmaps}
cat $CWD/xpdf.desktop > $PKG/usr/share/applications/xpdf.desktop
#cat xpdf/xpdfIcon.xpm > $PKG/usr/share/pixmaps/xpdfIcon.xpm
cat xpdf-qt/xpdf-icon.svg > $PKG/usr/share/pixmaps/xpdfIcon.svg
Click image for larger version

Name:	xpdf.png
Views:	54
Size:	32.1 KB
ID:	26351
 
Old 11-20-2017, 06:01 AM   #3179
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,233

Rep: Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027
Another new libzip-1.3.2:

https://libzip.org/news/
https://libzip.org/download/libzip-1.3.2.tar.xz

libgsf-1.14.42:

http://ftp.gnome.org/pub/gnome/sourc...f-1.14.42.news
http://ftp.gnome.org/pub/gnome/sourc...1.14.42.tar.xz
 
1 members found this post helpful.
Old 11-20-2017, 10:17 AM   #3180
KewlCat
LQ Newbie
 
Registered: Aug 2015
Distribution: Slackware
Posts: 17

Rep: Reputation: Disabled
Quote:
Originally Posted by ajevremovic View Post
I also have problems with (I guess, based on many hours research I've done) freetype - problems on my t420 (Intel i915), XFCE, fonts are too blurry everywhere. Hope that freetype upgrade will solve that.
Yes, they are blurry. No, Freetype won't "solve" that, because that's how their newest interpreter works :-/
Meanwhile, you can uncomment this line in /etc/profile.d/freetype.sh :
Code:
export FREETYPE_PROPERTIES="truetype:interpreter-version=35"
 
3 members found this post helpful.
  


Closed Thread



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] how to show the current time at the top in the current shell Always ? rohitchauhan Linux - General 5 04-09-2014 03:05 PM
Slackware ARM (current) epic mistake: the current Android kernels are kicked out! Darth Vader Slackware 16 08-25-2013 04:36 PM
[SOLVED] setup fails on most current Slackware-current March 26, 2012 AlleyTrotter Slackware 15 04-09-2012 06:05 AM
Observation of Feb -current vs March -current Hangaber Slackware 14 03-12-2010 08:26 AM
cvs diff the most current and second last current version powah Linux - Software 1 03-30-2006 01:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 12:24 AM.

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