LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 02-05-2017, 09:46 AM   #2011
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled

Hi,

I wonder if it would make sense to have somewhere early in the initialization scripts a call to something like /etc/rc.d/rc.random?
/etc/rc.d/rc.random would be a user supplied script to enhance the availability of entropy.
This script would have to be called after the modules are loaded (e.g. TPM driver), but before any services requiring randomness are started (sshd? httpd?).
Maybe it would be worth putting in initrd?

I'm not too proficient in this matter, so I cannot say much.
I was recently bitten by the lack of entropy (libvirt: libvirtd often takes ~45 seconds to start) and have added the following in rc.S, after "random-seed" stuff:

Code:
# Start rngd if available:
if [ -x /etc/rc.d/rc.rngd ]; then
  /etc/rc.d/rc.rngd start
fi
/etc/rc.d/rc.rngd starts rngd from rng-tools and I'm using TPM as RNG.


I'm asking for a global change, because this might be an addition that might benefit broader audience.
Even those, who don't know it yet.

--
Best regards,
Andrzej Telszewski

Last edited by atelszewski; 02-05-2017 at 09:48 AM.
 
2 members found this post helpful.
Old 02-05-2017, 12:31 PM   #2012
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Doesn't haveged from SBo solve this problem?
 
Old 02-05-2017, 12:42 PM   #2013
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Quote:
Originally Posted by orbea View Post
Doesn't haveged from SBo solve this problem?
My request is more about at what point in the boot process the tool is called, rather what tool to use.
I can't really discuss this further, since I don't have enough knowledge.
And it's not the place to discuss which tool is better ;-)

--
Best regards,
Andrzej Telszewski
 
Old 02-05-2017, 01:06 PM   #2014
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
The entropy pool is initialised at the end of rc.S from the carry over from the last shutdown (/etc/random-seed), so perhaps the start of rc.M would be the correct place for calling a rc.random/rc.rngd.

Doesn't seem like a bad idea, and it's not going to hurt anyone who doesn't install one
 
1 members found this post helpful.
Old 02-05-2017, 01:06 PM   #2015
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
glibc-2.25 is available

https://ftp.gnu.org/gnu/glibc/glibc-2.25.tar.xz

and perl 5.24.x revision

perl-5.24.1
http://www.cpan.org/src/5.0/perl-5.24.1.tar.gz

Last edited by USUARIONUEVO; 02-05-2017 at 02:42 PM.
 
1 members found this post helpful.
Old 02-06-2017, 08:25 AM   #2016
hotchili
Member
 
Registered: Sep 2009
Location: Germany
Distribution: slackware64-current
Posts: 89

Rep: Reputation: 32
new mesa was released a few days ago, 13.0.4:
https://lists.freedesktop.org/archiv...ry/000294.html

using this since a few days with newer LLVM 3.9.1 without any problem (amdgpu)
 
2 members found this post helpful.
Old 02-06-2017, 11:29 AM   #2017
davjohn
Member
 
Registered: Jan 2017
Posts: 94

Rep: Reputation: Disabled
Could busybox in mkinitrd package be compiled with Btrfs support ?
Right now it's not possible to boot with initrd, if root is on btrfs, because findfs doesn't find any btrfs filesystems.
Also rootflags from kernel cmdline should be passed to mount options.
Something like this patch.

There is also problem with setup, btrfs is not detected if it's created on device without partitions and
it can't be installed to subvolume, if it's not default, but that's probably advanced usage.
It would be nice, if setup would have switch that will just install in mounted /mnt, it seems it was supported long time ago (-target_mounted).

Last edited by davjohn; 02-06-2017 at 11:34 AM.
 
Old 02-08-2017, 07:37 PM   #2018
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Please , ZYDAS wireless chip have more recent version of firmware than the 1.4 included in slackware.

version 1.5 is available some years a go.

zd1211-firmware-1.5
https://sourceforge.net/projects/zd1...re-1.5.tar.bz2
 
2 members found this post helpful.
Old 02-09-2017, 06:01 AM   #2019
aaazen
Member
 
Registered: Dec 2009
Posts: 358

Rep: Reputation: Disabled
For today's menu the latest "stable" kernel du jour is 4.9.9

https://lkml.org/lkml/2017/2/9/170

https://www.kernel.org/
 
Old 02-09-2017, 06:06 PM   #2020
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,058

Rep: Reputation: Disabled
sed-4.4

This release won't make the headlines but fixes a bug introduced in sed-4.3: "sed could segfault when invoked with specific combination of newlines in the input and regex pattern." Also documentation updates. Upgrading doesn't seem urgent, but hopefully won't hurt.
 
Old 02-09-2017, 06:10 PM   #2021
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Some using alpine and other distros were able of getting sed to segfault while configuring...sed. I was not able to reproduce it with slackware though.
 
Old 02-10-2017, 06:08 PM   #2022
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,058

Rep: Reputation: Disabled
Have a look at the huge batch dated Fri Feb 10 21:07:35 UTC 2017 in this ChangeLog folks. Thanks Pat and crew!

Last edited by Didier Spaier; 02-10-2017 at 06:13 PM.
 
3 members found this post helpful.
Old 02-10-2017, 09:38 PM   #2023
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
First of all , THANKS! for this update on current (10 february)

I see ffmpeg package NO HAVE ffplay , some video editors want this executable to video preview , for make ffplay only need ADD sdl2 library and recompile ffmpeg to obtain ffplay executable.

Is possible add SDL2 , and rebuild ffmpeg ?

ffmpeg slackbuild no need modifications,sdl2 is autodetected.

Thanks !
 
Old 02-11-2017, 09:25 AM   #2024
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
ffmpeg, file, grep, wget

FFmpeg 3.2.4
https://ffmpeg.org/releases/ffmpeg-3.2.4.tar.xz
File 5.30
ftp://ftp.astron.com/pub/file/file-5.30.tar.gz

Edit:
Grep and Wget was recently upgraded. (2017-02-13)

Last edited by mats_b_tegner; 02-14-2017 at 03:17 PM.
 
1 members found this post helpful.
Old 02-11-2017, 04:17 PM   #2025
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,683

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
DejaVu Fonts 2.37
http://sourceforge.net/projects/deja...f-2.37.tar.bz2

Liberation Fonts 2.00.1
https://fedorahosted.org/releases/l/...-2.00.1.tar.gz

The developer of freetype recommends the liberation 2.0 branch for the reasons stated here. (See last paragraph)
https://www.freetype.org/freetype2/d...l-hinting.html
 
2 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 09:18 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