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-21-2016, 05:38 PM   #391
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled

Quote:
Originally Posted by ecoslacker View Post
Please do not forget poppler-qt5 and texlive:

ftp://tug.org/historic/systems/texlive/
http://www.linuxquestions.org/questi...2/#post4928474
 
Old 02-22-2016, 12:35 AM   #392
franzen
Member
 
Registered: Nov 2012
Distribution: slackware
Posts: 535

Rep: Reputation: 379Reputation: 379Reputation: 379Reputation: 379
Quote:
Originally Posted by Didier Spaier View Post
This should be discussed in a new thread, but in short:
texlive is far too big, everything needed to build the package would have to be shipped, too(several GBs). The chance i see(to late for 14.2 i assume) is, to build a custom texlive with about 50mb(tetex has about 37mb). This is not possible with the provided schemes(texlive-tetex-scheme has several hundred mbs), but with single packages provided by texlive(with drawbacks, e.g. cbfonts(greek) has nearly 70mb alone and can't be added as is comes).
The singel-packages have a corresponding source- and doc-packages, so the full texlive sourcetree wouldn't have to be shipped.
 
Old 02-22-2016, 05:15 AM   #393
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Yeah, TexLive, even if you grabbed the prebuilt online download is HUGE as a package. I've built TexLive on other distributions and packaged it on my own, and it's massive in size if you want coverage that works for packages. You could trim it maybe, but you're removing a lot of functionality equally.
 
Old 02-22-2016, 10:32 AM   #394
ecoslacker
Member
 
Registered: Feb 2011
Location: The Matrix
Distribution: Slackware
Posts: 30

Rep: Reputation: 0
Quote:
Originally Posted by Didier Spaier View Post
Sorry that was mean to be on SBo, not Slackware -current. My mistake.
 
Old 02-22-2016, 10:38 AM   #395
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
No problem Eduardo. Have a good day.
 
Old 02-23-2016, 12:22 AM   #396
ecd102
LQ Newbie
 
Registered: Sep 2011
Distribution: Slackware-current
Posts: 20

Rep: Reputation: Disabled
cups-2.1.3-i586-1 doesn't run on 'real' Pentium 3, please fix the build script.

cups-2.1.3-i586-1.txz doesn't run on 'real' Pentium 3.

When I try to start cups, I get:

Code:
# /etc/rc.d/rc.cups start
cups: unable to start scheduler.
This is because its cupsd uses SSE2 instruction, not supported by P3:

Code:
# uname -p
Pentium III (Coppermine)
# cupsd -f
Illegal instruction
Could you insert the following block right before './configure' of cups.SlackBuild and rebuild ?

Code:
# Set CFLAGS/CXXFLAGS
if [ "$ARCH" = "i586" ]; then
    export CFLAGS="-O2 -march=i586 -mtune=i686"
elif [ "$ARCH" = "s390" ]; then
    export CFLAGS="-O2"
elif [ "$ARCH" = "x86_64" ]; then
    export CFLAGS="-O2 -fPIC"
else
    export CFLAGS="-O2"
fi
export CXXFLAGS="$CFLAGS"
This solves the issue as I tried.
 
2 members found this post helpful.
Old 02-23-2016, 10:51 AM   #397
DarkVision
Member
 
Registered: Jul 2007
Posts: 199

Rep: Reputation: Disabled
libcaca-0.99-beta19 will fix creating empty directories for /usr/lib64/jni and /usr/share/java even if java has been disabled. The package included in -current includes these empty directories which could be removed. The development version has some more fixes, have a look here.
 
Old 02-23-2016, 04:51 PM   #398
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Any chance /etc/asound.conf can be removed from alsa-lib and moved to the pulseaudio package? As far as I am aware its only needed if pulseaudio is used and not including it in alsalib would be quite considerate to those few who do not use pulseaudio so that they do not need to keep an empty version of the file or manually remove it from the alsa-lib slackbuild. Thanks!
 
Old 02-23-2016, 06:05 PM   #399
franzen
Member
 
Registered: Nov 2012
Distribution: slackware
Posts: 535

Rep: Reputation: 379Reputation: 379Reputation: 379Reputation: 379
minimal-lxc.template within /usr/share/lxc/templates/lxc-slackware lists "logrotate", but not "dcron". Logrotate is mostly useless without dcron, so i suggest to add dcron or remove logrotate from minimal-lxc.template.
 
Old 02-23-2016, 07:06 PM   #400
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 orbea View Post
Any chance /etc/asound.conf can be removed from alsa-lib and moved to the pulseaudio package? As far as I am aware its only needed if pulseaudio is used and not including it in alsalib would be quite considerate to those few who do not use pulseaudio so that they do not need to keep an empty version of the file or manually remove it from the alsa-lib slackbuild. Thanks!
You're going to need the pulseaudio package for libpulse anyway... unless you're recompiling all those things. In which case you should be able to handle keeping an empty asound.conf.
 
1 members found this post helpful.
Old 02-24-2016, 12:26 AM   #401
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,211

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
libssh-0.7.3 (security and bugfix)

https://www.libssh.org/2016/02/23/li...ugfix-release/

https://red.libssh.org/attachments/d...h-0.7.3.tar.xz

also a new libssh2-1.7.0

https://www.libssh2.org/changes.html

https://www.libssh2.org/download/libssh2-1.7.0.tar.gz

Last edited by gmgf; 02-24-2016 at 12:32 AM.
 
Old 02-24-2016, 02:30 AM   #402
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
linux-4.4.3 arrives in 2-3 days . nice patch set again. (137 patches)

https://www.mail-archive.com/linux-k...sg1084162.html


if some one want to test 4.4.3-rc1 , here is the patch set , donwload 4.4.2 and aply
https://www.kernel.org/pub/linux/ker...h-4.4.3-rc1.xz

Last edited by USUARIONUEVO; 02-24-2016 at 02:31 AM.
 
Old 02-24-2016, 04:35 AM   #403
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
https://www.mail-archive.com/linux-k...sg1084198.html
Quote:
It's in the list of patches I haven't gotten to yet, which is still over 200.
Looks like Greg is still playing catch-up. If he's doing about 100 or so each time, then it'll be 4.4.5 or .6 before we've caught up with everything.
 
1 members found this post helpful.
Old 02-24-2016, 05:33 AM   #404
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
The files README_CRYPT.TXT and README_LVM.TXT on the Slackware DVD contain info about setting up encrypted partitions. The given example might give a problem with newer cryptsetup (>=1.6.0) as far as I understand it. The standard encryption cypher has changed with that version from aes-cbc-essiv to aes-xts-plain64.
Quote:
From version 1.6.0 of cryptsetup onwards, aes-xts-plain64 is the default for LUKS
Source: https://gitlab.com/cryptsetup/crypts...curity-aspects See chapter 5.16

As far as I understand it, the key size is handled differently if you use xts - to get the desired key size you have to double it, so that a key size of 512 should mean the aes part gets 256 bit and the xts gets 256 bit, too. Using the old example lines I fear it would result in an 128 bit encryption.

Quote:
For key-size, you can use 128 bit (e.g. AES-128 with CBC), 256 bit (e.g. AES-256 with CBC) or 512 bit (e.g. AES-256 with XTS mode). You can do 64 bit (e.g. blowfish-64 with CBC), but anything below 128 bit has to be considered insecure today.
Source: https://gitlab.com/cryptsetup/crypts...curity-aspects, see chapter 6.13
Quote:
By default a 256 bit key-size is used. Note however that XTS splits the supplied key in half, so to use AES-256 instead of AES-128 you have to set the XTS key-size to 512.
Source: https://wiki.archlinux.org/index.php..._for_LUKS_mode

It would be nice if someone more familiar with this could take a look, if the instructions have to be reworked.
 
Old 02-24-2016, 06:34 AM   #405
CTM
Member
 
Registered: Apr 2004
Distribution: Slackware
Posts: 308

Rep: Reputation: 287Reputation: 287Reputation: 287
Quote:
Originally Posted by titopoquito View Post
The files README_CRYPT.TXT and README_LVM.TXT on the Slackware DVD contain info about setting up encrypted partitions. The given example might give a problem with newer cryptsetup (>=1.6.0) as far as I understand it. The standard encryption cypher has changed with that version from aes-cbc-essiv to aes-xts-plain64.

As far as I understand it, the key size is handled differently if you use xts - to get the desired key size you have to double it, so that a key size of 512 should mean the aes part gets 256 bit and the xts gets 256 bit, too. Using the old example lines I fear it would result in an 128 bit encryption.

It would be nice if someone more familiar with this could take a look, if the instructions have to be reworked.
The instructions do need to be reworked, but the default cipher now used by cryptsetup (aes-xts-plain64 with a 256-bit key) should be fine. Attacks on AES, even AES-128, are still only theoretical (and are a long way from being practical in the foreseeable future), and although it's now a matter of public record that state actors are trying to find a realistic cryptographic attack could be mounted against AES, there's no evidence that any of them have.

Unless you work in a US government department and are trying to keep TS material safe, worrying about AES key lengths is ill-considered: if someone wanted to decrypt your disk, there are much easier ways of doing it than attempting to mount a complex cryptographic attack against a FIPS 140-2-approved cipher (they could attempt to insert a backdoor into cryptsetup, for instance, or hit you until you tell them your passphrase).
 
  


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 01:44 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