LinuxQuestions.org
Visit Jeremy's Blog.
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 08-14-2016, 09:42 AM   #1516
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930

Request for kernel config change in to 4.6 config

All modern distros now goes with LANG in utf8 , then i think is good idea put this as "yes" , same as other fylesystems have utf8 default since years.

CONFIG_FAT_DEFAULT_UTF8=

Thanks.
 
1 members found this post helpful.
Old 08-14-2016, 10:24 AM   #1517
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
Quote:
Originally Posted by ReaperX7 View Post
Plus, I don't use LILO and I hate tinkering with a grub.cfg just to check it and make sure the initrd is included.
If you are using grub, you can fix the omission in your next boot without a rescue disk. (That's why I use grub on most of my machines, anyways.)

If you are using grub2, you can still fix the omission in your next boot without a rescue disk and you can use the 09_slackware_linux script that I've posted in the forum a few times to allow you to run grub-mkconfig to build the proper grub config for you.

I think that slackpkg could be improved to ask if you'd like to run the mkinitrd_command_generator and then ask if you'd like to edit lilo.conf prior to asking if you'd like to run lilo on a kernel change.
 
Old 08-14-2016, 05:09 PM   #1518
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
linux-4.4.18 in one day ..only 49 patches.
https://lkml.org/lkml/2016/8/14/673


4.6.7 --> EOL in one day
http://www.spinics.net/lists/stable/msg141428.html


put in testing config for 4.7.1 ?
https://lkml.org/lkml/2016/8/14/741

Last edited by USUARIONUEVO; 08-14-2016 at 05:34 PM.
 
2 members found this post helpful.
Old 08-14-2016, 08:20 PM   #1519
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Another user reporting strange problem. It wouldn't have happend, should the user run generic kernel.

I'm not asking for huge removal, I'm telling the situation should be corrected.

--
Best regards,
Andrzej Telszewski
 
Old 08-14-2016, 08:51 PM   #1520
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,375

Rep: Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754
From CHANGES_AND_HINTS.TXT
Quote:
Use one of the provided generic kernels for daily use. Do not report
bugs until/unless you have reproduced them using one of the stock
generic kernels. You will need to create an initrd in order to boot
the generic kernels - see /boot/README.initrd for instructions.
The huge kernels are primarily intended as "installer" and "emergency"
kernels in case you forget to make an initrd.
Sigh - If only people would read the documentation,
 
4 members found this post helpful.
Old 08-15-2016, 05:00 AM   #1521
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
All --

It was I who opened the can-o-worms in the other post and on the SlackBuilds Mailing List.

And yes, I could surely benefit from a thorough re-RTFM session-or-ten

OTOH, This exercise certainly provides a tangible demonstration as to why Pat is considering eliminating the Huge Kernel.

Thanks.

-- kjh
 
1 members found this post helpful.
Old 08-15-2016, 06:19 PM   #1522
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Please consider updating /etc/rc.d/rc.pulseaudio in the following way:
Code:
--- rc.pulseaudio	2016-01-08 04:59:30.000000000 +0100
+++ /etc/rc.d/rc.pulseaudio	2016-08-16 01:07:53.301984531 +0200
@@ -14,10 +14,11 @@
 
 pulse_start() {
   if [ -x /usr/bin/pulseaudio ]; then
-    echo "Starting system PulseAudio daemon:  /usr/bin/pulseaudio --system --disallow-module-loading &"
+    echo "Starting system PulseAudio daemon:  /usr/bin/pulseaudio --system"
     rm -rf /var/lib/pulse
     # Any errors/warnings will go to the log files:
-    /usr/bin/pulseaudio --system --disallow-module-loading 1> /dev/null 2> /dev/null &
+    /usr/bin/pulseaudio --system --disable-shm --enable-memfd \
+      --disallow-module-loading --exit-idle-time=-1 --disallow-exit --daemonize
   fi
 }
I've always preferred using the software builtin daemoninzing method rather than '&'.
The few more flags make the daemon start without issuing warnings, so there's no reason to redirect stdin/stderr.
Use of memfd might need investigation, but it worked for me.

I also tried to use pulseaudio --kill in pulse_stop() function, but had no luck making it work.
I started looking at the source code, but then decided I have better things to do ;-)

As a side note, rc.pulseaudio stop seems to be not called anywhere in the shutdown scripts.
Is it deliberate or have I missed some update (-current -> -14.2)?


--
Best regards,
Andrzej Telszewski
 
3 members found this post helpful.
Old 08-16-2016, 12:09 AM   #1523
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,224

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
new dbus-1.10.10:

https://dbus.freedesktop.org/release...1.10.10.tar.gz
 
Old 08-16-2016, 04:26 PM   #1524
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,120

Rep: Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292
Quote:
Originally Posted by USUARIONUEVO View Post
linux-4.4.18 in one day ..only 49 patches.
https://lkml.org/lkml/2016/8/14/673.....
The 4.4.18 kernel has been released.

The change log, https://cdn.kernel.org/pub/linux/ker...angeLog-4.4.18
 
Old 08-17-2016, 03:26 AM   #1525
phenixia2003
Senior Member
 
Registered: May 2006
Location: France
Distribution: Slackware
Posts: 1,052

Rep: Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008Reputation: 1008
Hello,

There's an issue in libdvdread.SlackBuild about documentation.

The slackbuild installs documentation files (ie. AUTHORS, ChangeLog,...) in /usr/doc/libdvdread-5.0.3 and shrink the file Changelog, if present, to save some space. However, the Makefile also installs these documentation files in /usr/share/doc/libdvdread by default :

Code:
$ ls /usr/doc/libdvdread*
/usr/doc/libdvdread:
AUTHORS  COPYING  ChangeLog  NEWS  README  TODO

/usr/doc/libdvdread-5.0.3:
AUTHORS  COPYING  ChangeLog  NEWS  README  TODO
Here is a patch to fix this :
Code:
--- libdvdread.SlackBuild.orig	2016-08-17 10:25:41.543233030 +0200
+++ libdvdread.SlackBuild	2016-08-17 10:25:41.543233030 +0200
@@ -74,6 +74,7 @@
 ./configure \
   --prefix=/usr \
   --libdir=/usr/lib${LIBDIRSUFFIX} \
+  --docdir=/usr/doc/$PKGNAM-$VERSION \
   --sysconfdir=/etc \
   --localstatedir=/var \
   --disable-static \
@@ -83,11 +84,6 @@
 make $NUMJOBS || make || exit 1
 make install-strip DESTDIR=$PKG || exit 1
 
-mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION
-cp -a \
-  AUTHORS COPYING* NEWS README* TODO \
-  $PKG/usr/doc/$PKGNAM-$VERSION
-
 # If there's a ChangeLog, installing at least part of the recent history
 # is useful, but don't let it get totally out of control:
 if [ -r ChangeLog ]; then
--
Seb

Last edited by phenixia2003; 08-17-2016 at 04:45 AM.
 
Old 08-18-2016, 06:20 AM   #1526
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Could dnsmasq be recompiled with D-Bus support?
It would allow for dnsmasq to be used from NetworkManager.

Code:
$ cat dnsmasq.SlackBuild.diff 
--- dnsmasq.SlackBuild.orig	2015-12-15 05:59:46.000000000 +0100
+++ dnsmasq.SlackBuild	2016-08-18 13:16:21.280668235 +0200
@@ -22,7 +22,7 @@
 
 
 VERSION=${VERSION:-$(echo dnsmasq-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
 
 NUMJOBS=${NUMJOBS:-" -j7 "}
 
@@ -54,6 +54,7 @@
   -exec chmod 644 {} \;
 
 zcat $CWD/dnsmasq.leasedir.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit 1
+zcat $CWD/enable_dbus.diff.gz | patch -p0 --verbose --backup --suffix=.orig || exit 1
 
 # Default CFLAGS are "-W -Wall -O2" - that's good enough.
 make $NUMJOBS all-i18n PREFIX=/usr MANDIR=/usr/man || exit 1
Code:
$ zcat enable_dbus.diff.gz 
--- src/config.h.orig	2016-05-18 16:51:54.000000000 +0200
+++ src/config.h	2016-08-18 01:37:33.004195332 +0200
@@ -171,7 +171,7 @@
 */
 
 /* #define HAVE_LUASCRIPT */
-/* #define HAVE_DBUS */
+#define HAVE_DBUS
 /* #define HAVE_IDN */
 /* #define HAVE_CONNTRACK */
 /* #define HAVE_DNSSEC */
--
Best regards,
Andrzej Telszewski
 
1 members found this post helpful.
Old 08-18-2016, 08:01 AM   #1527
bormant
Member
 
Registered: Jan 2008
Posts: 426

Rep: Reputation: 240Reputation: 240Reputation: 240
@atelszewski,
why patch and not CFLAGS="-W -Wall -O2 -DHAVE_DBUS"?
 
Old 08-18-2016, 08:16 AM   #1528
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
Quote:
Originally Posted by bormant View Post
@atelszewski,
why patch and not CFLAGS="-W -Wall -O2 -DHAVE_DBUS"?
You have to pass this as COPTS="-DHAVE_DBUS" to the cmake commandline, instead of trying to put this into CFLAGS.
 
1 members found this post helpful.
Old 08-18-2016, 01:46 PM   #1529
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,120

Rep: Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292
Firefox-48.0.1 has been released.

The release notes,
https://www.mozilla.org/en-US/firefo.../releasenotes/

Quote:

Fix an audio regression impacting some major websites (bug 1295296)

Fix a top crash in the JavaScript engine (Bug 1290469)

Fix a startup crash issue caused by Websense (Bug 1291738)

Fix a different behavior with e10s / non-e10s on <select> and mouse events (Bug 1291078)

Fix a top crash caused by plugin issues (Bug 1264530)

Fix an unsigned add-ons issue on Windows

Fix a shutdown issue (Bug 1276920)

Fix a crash in WebRTC

Last edited by cwizardone; 08-18-2016 at 01:47 PM.
 
Old 08-18-2016, 04:23 PM   #1530
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,120

Rep: Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292Reputation: 7292
Gnupg-2.1.15 has been released.

Release announcement: https://lists.gnupg.org/pipermail/gn...q3/000396.html

Source: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.1.15.tar.bz2

Last edited by cwizardone; 08-18-2016 at 04:31 PM.
 
1 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 08:49 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