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


Reply
  Search this Thread
Old 04-17-2018, 01:58 AM   #1006
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled

Hi,

I wonder why we need:
Code:
  # Create host keys if needed.
  if [ ! -f /etc/ssh/ssh_host_dsa_key ]; then
    /usr/bin/ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N ''
  fi
  if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then
    /usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
  fi
  if [ ! -f /etc/ssh/ssh_host_ecdsa_key ]; then
    /usr/bin/ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N ''
  fi
  if [ ! -f /etc/ssh/ssh_host_ed25519_key ]; then
    /usr/bin/ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key -N ''
  fi
in rc.sshd?

Isn't it redundant with:
Code:
  # Catch any new host key types not yet created above:
  /usr/bin/ssh-keygen -A
?

--
Best regards,
Andrzej Telszewski
 
Old 04-17-2018, 02:20 AM   #1007
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Quote:
Originally Posted by ziprun View Post
No, I'm suggesting it's good enough to be included as a default software
I'm with dugan on this one. I've used a dwm/dmenu based environment for several years and I'm a big fan of it, but as shipped in its default configuration I found dwm quite horrible. If nothing else one will want to change dwm's MODKEY to Mod4 else it's hotkeys clash with practically everything. Then there's all the aesthetics such as colours and fonts and the other key/mouse bindings to tune to one's preferences.

I suppose a group of us could get together and come up with a definitive set of patches/config for some sort of 'Suckless on Slackware' project which Pat could potentially adopt in future, but getting agreement on what it should include would be difficult as everyone tends to have their own idea about that and I doubt it would look anything like what upstream ship by the time we were done.
 
Old 04-17-2018, 04:48 AM   #1008
Ne01eX
Member
 
Registered: Mar 2018
Location: Ekaterinburg region, Ural, Russian Federation
Distribution: Slackware, RTK GNU/Linux
Posts: 173

Rep: Reputation: 22
En dictionary for Aspell with version of 2018.04.16-0 has been released!

https://ftp.gnu.org/gnu/aspell/dict/...-0.tar.bz2.sig
https://ftp.gnu.org/gnu/aspell/dict/...4.16-0.tar.bz2

Dictionaries for other languages will update later. :-)


Last edited by Ne01eX; 04-17-2018 at 04:50 AM.
 
Old 04-17-2018, 07:52 AM   #1009
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,504

Rep: Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461
Quote:
Originally Posted by atelszewski View Post
Isn't it redundant with:
Code:
  # Catch any new host key types not yet created above:
  /usr/bin/ssh-keygen -A
It would be if the screen output from ssh-keygen -A were the same, but it's not as comprehensive.
 
Old 04-17-2018, 07:59 AM   #1010
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Got it, thanks.

--
Best regards,
Andrzej Telszewski
 
Old 04-17-2018, 10:00 AM   #1011
ziprun
Member
 
Registered: Apr 2018
Posts: 105

Rep: Reputation: Disabled
Would anyone here have any objections to a jail program for slackware like firejail or if you have a better one to suggest because a jail/sandbox/virtualize program slackware should have out of the box to isolate any program that you don't fully trust. Before someone suggests chroot it was never intended to be a security program and is trivial for a program to escape if it's root or knows what it is doing
https://firejail.wordpress.com/
https://firejail.wordpress.com/download-2/

Also before I forget, pat when firefox updates to ESR 60 in like 3 weeks could you please jump straight to ESR 60? Many extensions only work with 56+ now and I'm trying to stay on 52 for as long as possible but my patience is reaching thin with how many I can use because they're either abandoned if they work or don't work.
 
Old 04-17-2018, 10:04 AM   #1012
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,097

Rep: Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174
Quote:
Originally Posted by ziprun View Post
Also before I forget, pat when firefox updates to ESR 60 in like 3 weeks could you please jump straight to ESR 60? Many extensions only work with 56+ now and I'm trying to stay on 52 for as long as possible but my patience is reaching thin with how many I can use because they're either abandoned if they work or don't work.
moving to the newer firefox ESR in Slackware 14.2 will be difficult as firefox requires rust to build from version 54.x on and this compiler is not available in stable: it would be the first time that I witness such a backport...

Last edited by ponce; 04-17-2018 at 10:08 AM.
 
1 members found this post helpful.
Old 04-17-2018, 10:11 AM   #1013
ziprun
Member
 
Registered: Apr 2018
Posts: 105

Rep: Reputation: Disabled
Quote:
Originally Posted by ponce View Post
moving to the newer firefox ESR in Slackware 14.2 will be difficult as firefox requires rust to build from version 54.x on and this compiler is not available in stable: it would be the first time that I witness such a backport...
So what does this mean? Will pat give the rust compiler to stable before slackware 15.0 or will he have to release slackware 15.0 this summer before ESR 52 dies?

Last edited by ziprun; 04-17-2018 at 10:13 AM.
 
Old 04-17-2018, 10:16 AM   #1014
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Take a look at 14.1, its still supported and has mozilla-firefox-45.9.0esr.
 
Old 04-17-2018, 11:12 AM   #1015
ziprun
Member
 
Registered: Apr 2018
Posts: 105

Rep: Reputation: Disabled
Quote:
Originally Posted by orbea View Post
Take a look at 14.1, its still supported and has mozilla-firefox-45.9.0esr.
On older releases there is less of an expectation for latest versions of software and security patches. You expect the latest slackware release (currently 14.2) to have the latest patches which either pat will have to backport the rust compiler to 14.2 before this fall when 52.x dies or he'll have to release 15.0 this summer before 52.x dies
 
Old 04-17-2018, 11:22 AM   #1016
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
I think there is a third choice, continue using the 52 esr release until the security issues are too great to deal with. I'm sure Pat will weigh the options when the time comes and come up with the best choice.
 
3 members found this post helpful.
Old 04-17-2018, 12:30 PM   #1017
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,211

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
cmake-3.11.1:

https://blog.kitware.com/cmake-3-11-...-for-download/
https://cmake.org/files/v3.11/cmake-3.11.1.tar.gz
 
Old 04-17-2018, 01:06 PM   #1018
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,782

Rep: Reputation: 1459Reputation: 1459Reputation: 1459Reputation: 1459Reputation: 1459Reputation: 1459Reputation: 1459Reputation: 1459Reputation: 1459Reputation: 1459
Quote:
Originally Posted by ziprun View Post
Many extensions only work with 56+ now and I'm trying to stay on 52 for as long as possible but my patience is reaching thin with how many I can use because they're either abandoned if they work or don't work.
You can use Ruari's latest-firefox script to fetch upstream binaries of any firefox version and repackage them as Slackware packages. At least 59.0.2 works fine in Slackware 14.2.
 
1 members found this post helpful.
Old 04-17-2018, 01:27 PM   #1019
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Quote:
Originally Posted by Petri Kaukasoina View Post
You can use Ruari's latest-firefox script to fetch upstream binaries of any firefox version and repackage them as Slackware packages. At least 59.0.2 works fine in Slackware 14.2.
https://gist.github.com/ruario/9672798
 
Old 04-17-2018, 01:34 PM   #1020
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Quote:
Originally Posted by ziprun View Post
On older releases there is less of an expectation for latest versions of software and security patches. You expect the latest slackware release (currently 14.2) to have the latest patches which either pat will have to backport the rust compiler to 14.2 before this fall when 52.x dies or he'll have to release 15.0 this summer before 52.x dies
At a push, Pat could repackage the Firefox binaries. This was done in the past
 
1 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 06:18 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