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


Reply
  Search this Thread
Old 09-03-2018, 11:19 AM   #2041
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002

ghostscript-9.24:

https://www.ghostscript.com/doc/9.24...tm#Version9.24
https://github.com/ArtifexSoftware/g...pt-9.24.tar.gz

libtirpc-1.1.4:

https://freefr.dl.sourceforge.net/pr...-1.1.4.tar.bz2

Last edited by gmgf; 09-03-2018 at 11:29 AM.
 
1 members found this post helpful.
Old 09-03-2018, 11:38 AM   #2042
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
gdk-pixbuf, glib-networking, libsoup etc. are coming out these days brand new I hope we are still in time to get all those gtk/gnome stuff updated.

Thanks
Saxa
 
1 members found this post helpful.
Old 09-03-2018, 07:32 PM   #2043
Darth Vader
Senior Member
 
Registered: May 2008
Location: Romania
Distribution: DARKSTAR Linux 2008.1
Posts: 2,727

Rep: Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247
How about enabling of CONFIG_ZRAM_WRITEBACK withing kernel?
Code:
CONFIG_ZRAM_WRITEBACK=y
This option is exceptionally useful for creating a "super-swap", in the form of a ZRAM device (compressed SWAP device in memory) backed up with a real SWAP partition.

The end result is ability to create a really fast and efficient memory SWAP design, doing something like
Code:
modprobe zram

echo 1 > /sys/block/zram0/reset

echo lz4 > /sys/block/zram0/comp_algorithm

echo /dev/sdb1 > /sys/block/zram0/backing_dev

echo 8G > /sys/block/zram0/disksize

mkswap /dev/zram0

swapon -p 100 /dev/zram0
To note that my example assumes that /dev/sdb1 is also itself an 8GB SWAP partition.

---------------------------------------------------------

In other hand, how about also enabling of ZSWAP options?

That ZSWAP also (alternatively) helps on getting a super-fast SWAP design and from my own experience it works exceptionally well.

Is there a reason for non enabling it at all?

Last edited by Darth Vader; 09-04-2018 at 12:03 PM.
 
1 members found this post helpful.
Old 09-03-2018, 08:51 PM   #2045
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 saxa View Post
gdk-pixbuf, glib-networking, libsoup etc. are coming out these days brand new I hope we are still in time to get all those gtk/gnome stuff updated.
I noticed several of the new gtk stack had releases out, but there were still quite a few lagging behind, so I thought I'd give them a few days to settle out.
 
2 members found this post helpful.
Old 09-03-2018, 09:27 PM   #2046
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
Sometimes the stray cat from installpkg complains about broken pipe. It is quite visible in terse mode. Sending it to /dev/null wont hurt.

/sbin/installpkg
Code:
# The stray cat reduces the frequency of the lack of reported size.
# If it still fails, we hit it with a bigger hammer down below.
cat $package | $packagecompression -dc | LC_ALL=C dd 2> $TMP/tmpsize${MCOOKIE} | cat 2>/dev/null | tar tf - 2> /dev/null 1> $TMP/tmplist${MCOOKIE}
Cheers
 
2 members found this post helpful.
Old 09-04-2018, 02:01 AM   #2047
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002
sudo-1.8.5:

https://www.sudo.ws/stable.html#1.8.25
ftp://ftp.sudo.ws/pub/sudo/sudo-1.8.25.tar.gz
 
1 members found this post helpful.
Old 09-04-2018, 08:12 AM   #2048
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,213

Rep: Reputation: 297Reputation: 297Reputation: 297
Quote:
Originally Posted by rworkman View Post
I noticed several of the new gtk stack had releases out, but there were still quite a few lagging behind, so I thought I'd give them a few days to settle out.
Robby, yeah, all is comeing out step by step, since gnome is scheduled for end of month. So i wanted just to advise since its good
if we can have the latest stuff. More, I think we can safely upgrade all that stuff from what we already have since the changes
usually are not very disruptive. Thanks !
 
Old 09-04-2018, 10:08 AM   #2049
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
Another 2>/dev/null. In rc.cpufreq. /sys/devices/system/cpu/cpu0/cpufreq/scaling_driver doesn't exist in qemu VM.

Code:
# For CPUs using intel_pstate, always use the performance governor. This also
# provides power savings on Intel processors while avoiding the ramp-up lag
# present when using the powersave governor (which is the default if ondemand
# is requested on these machines):
if [ "$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_driver 2>/dev/null)" = "intel_pstate" ]; then
  SCALING_GOVERNOR="performance"
fi

Cheers
 
3 members found this post helpful.
Old 09-04-2018, 10:51 AM   #2050
ziprun
Member
 
Registered: Apr 2018
Posts: 105

Rep: Reputation: Disabled
Firefox 62 and Firefox 60.2.0 releases.
https://ftp.mozilla.org/pub/firefox/releases/62.0/
https://ftp.mozilla.org/pub/firefox/releases/60.2.0esr/
 
Old 09-04-2018, 12:51 PM   #2051
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002
stunnel-5.49:

https://www.stunnel.org/sdf_ChangeLog.html
https://www.stunnel.org/downloads/stunnel-5.49.tar.gz
 
1 members found this post helpful.
Old 09-04-2018, 04:33 PM   #2052
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
ccache-3.4.3
https://www.samba.org/ftp/ccache/ccache-3.4.3.tar.xz
 
Old 09-05-2018, 05:04 AM   #2053
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002
mercurial-4.7.1:

https://www.mercurial-scm.org/wiki/WhatsNew
https://www.mercurial-scm.org/releas...l-4.7.1.tar.gz

curl-7.61.1:

https://curl.haxx.se/news.html
https://curl.haxx.se/download/curl-7.61.1.tar.xz
 
Old 09-05-2018, 11:40 AM   #2054
Qury
Member
 
Registered: Feb 2004
Location: Naas,IE
Distribution: Slackware
Posts: 212

Rep: Reputation: 184Reputation: 184
Hi Pat,
Could you please add the below to current?

1, new directory /etc/ld.so.conf.d
2, start the /etc/ld.so.conf file with the below line:
Code:
include /etc/ld.so.conf.d/*.conf
This seems to be required by virtualbox guest additions.
As far as i recall, i also had to add a line for ardour in the past as well, so i believe other programs might benefit too.
 
Old 09-05-2018, 11:49 AM   #2055
jostber
Member
 
Registered: Jul 2001
Location: Skien, Norway
Distribution: Slackware Current 64-bit
Posts: 543

Rep: Reputation: 178Reputation: 178
Add sboui to the extra or an new contrib folder for Slackware. This is a nifty ncurses application for installing programs in Slackware with resolving dependencies.

https://github.com/montagdude/SlackB...r/system/sboui
 
  


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:12 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