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 05-23-2014, 02:06 PM   #1
perbh
Member
 
Registered: May 2008
Location: Republic of Texas
Posts: 393

Rep: Reputation: 81
Give credit where credit is due


I just want to say: I love my Slackware! I love the way it is, the way it works.
There are small things I would like to add - but they are all 'addable' (sbo and alien comes to mind).

Please, do not make any big changes anywhere - I love scripting, small innocent-looking scripts that makes it 10 times more powerful than 'clickit'.

If you can't stomach the command-line - find something else!

I want to give you all but _one_ example:
I have about 500 pdf-files of a magazine, stretching over a period of 45 years! They have been downloaded (he,he - using a script!! - cuz they are only available through http so no wildcards) by generating required filenames and then using 'wget' (and yes, I know wget can be used recursively - but there was a lot of 'other gruff' in there as well).

The names where kindof ms-based, but another script renamed them all to something like 'xx-{yyyy}-{mm}.pdf' (where '{yyyy}' and '{mm}' is the year and month-no respectively (obviously, i didn't use 'xx', but it will do for this example)

Whenever I opened one of them - using 'xpdf', I had to increase zoom to 150% and then adjust the size of the xpdf-window - rather tiresome when you have 500 to go through!

With another script, I could pick out a whole year at a time - automagically increase zoom to 150% and go straight to page #3 which had the index (or 'toc'). If I didn't see what I wanted, I 'x'-ed out and was presented with the next issue. If it was interesting, I read the article and then quit - again being presented with the next in line.

The little script goes like this:
Code:
#!/bin/bash
test $# -eq 0 && { echo "usage: sh $0 {year}"; exit 1; }
y=$1
for m in 01 02 03 04 05 06 07 08 09 10 11 12; do
   f=xx-$y-$m.pdf
   echo "$f"
   test -f $f && xpdf -z 150 $f 3
done
Now, I'll challenge any point-n-click'er to make this any easier!!

Just my 2c-worth and a hearty "Thank You" to Pat and his crew!!

Last edited by perbh; 05-23-2014 at 02:18 PM.
 
Old 05-23-2014, 03:15 PM   #2
metaschima
Senior Member
 
Registered: Dec 2013
Distribution: Slackware
Posts: 1,982

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
I prefer mupdf, because it has much better rendering. I did write a script to open mupdf and zoom width because it doesn't have an option for it.
 
Old 05-23-2014, 07:27 PM   #3
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Debian, Slackware, VMs
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
perbh,

I agree. Slackware is awesome.
 
Old 05-24-2014, 08:30 AM   #4
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Member Response

Hi,

perbh, I too love my Slackware. I am very comfortable using Slack and use it daily. Labeling Slackware by saying UNIX-like does not convey enough. The Slackware community along with PV & Team provide a very stable useful Gnu/Linux distribution. When and if a problems comes up the community responds as a Open Source community should respond. We do have some elitist but those members also provide necessary involvement within the community.

I have been comfortable with Slackware from the start and will continue. As I have said before "Slackware is not a hold your hand distribution. Thankfully will never be!"As a community we do help those that will help themselves or at least show some initiative to do so.

Spoon feeding never helps the user but showing someone the way to solve an issue(s) by personal involvement does. I do like to point to possible clues/links to aid the individuals so they will hopefully lead to a solution which that user learns to get to his/her solution so that needs can be solved/resolved by diagnosis by that user.

Troubleshooting is a art that can be learned. 'KISS' is very important, so a user should learn to break issue(S) down into simple terms so that the solution or problem can be resolved/diagnosed.

I think that a new user can learn Slackware over time. Sadly, most want to know everything instantly. Wax on, Wax off!
 
1 members found this post helpful.
Old 05-26-2014, 10:50 AM   #5
1337_powerslacker
Member
 
Registered: Nov 2009
Location: Kansas, USA
Distribution: Slackware64-15.0
Posts: 862
Blog Entries: 9

Rep: Reputation: 592Reputation: 592Reputation: 592Reputation: 592Reputation: 592Reputation: 592
Quote:
Originally Posted by onebuck View Post
As a community we do help those that will help themselves or at least show some initiative to do so.

Spoon feeding never helps the user but showing someone the way to solve an issue(s) by personal involvement does. I do like to point to possible clues/links to aid the individuals so they will hopefully lead to a solution which that user learns to get to his/her solution so that needs can be solved/resolved by diagnosis by that user.

Troubleshooting is a art that can be learned. 'KISS' is very important, so a user should learn to break issue(S) down into simple terms so that the solution or problem can be resolved/diagnosed.

I think that a new user can learn Slackware over time. Sadly, most want to know everything instantly. Wax on, Wax off!
+1 on that. Learning by doing, and indeed demonstration of a willingness to learn new things, is a skill that can be applied to more than just using Slackware. Life itself has many lessons that are best learned by the hands-on method, and the will to take on new challenges. A life lived to the full can be achieved no other way.

It's like the old saying goes: Give a man a fish, and you feed him for a day; teach a man to fish, and you feed him for a lifetime. Slackware is but one application of this old tried-but-true principle.

Last edited by 1337_powerslacker; 05-26-2014 at 11:09 AM.
 
Old 05-26-2014, 11:48 AM   #6
dunric
Member
 
Registered: Jul 2004
Distribution: Void Linux, former Slackware
Posts: 498

Rep: Reputation: 100Reputation: 100
I'd also wish Slackware would keep KISS and original Unix philosophy (not necessary technologies) proven by decades as long as possible.

We'll see if and how Open Source around GNU/Linux would resist pressure put by commercial vendors and embedded devices business which are trying to bend this ecosystem to their needs, often in contradiction to usual server and/or desktop deployment & use. I won't judge whether recent fundamental changes in init and basic system services, artifical dependencies ie. analogy to forced vendor lock-in are good or bad in a specific case. Just observing how vulnerable is freedom and independence of free software, development only partially funded by companies profiting from it.

I'm so glad Slackware is driven by a benevolent dictator for life (ie. enlightened dictator) then some seemingly rightful system like a voted committee (hooked by populism and hypocrisy). If you've watched in depth decision making of Debian's TC, you have to vindicate. Reducing decisions only on technical aspects is a manifestation of narrow-mind and can lead to bad results or suboptimal at best in the long run.
 
Old 05-27-2014, 01:57 AM   #7
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
The UNIX philosophy and principles have held up well for Slackware, and have allowed Slackware to become a powerful desktop, laptop, server, embedded, and educational OS for people all over the world.

The only changes ever made to Slackware, such as the move to udev from devfs, were done only out of sheer necessity rather than trying to be like distribution XYZ. The BSD/SysVinit system has more than proven it's worth, and has even become a great educational insight for our B/LFS Runit work in script formulation.

Slackware does not have to keep up with SuSE, Red Hat, Debian, or Ubuntu. They should be trying to keep up with Slackware. Slackware isn't the oldest surviving distribution for any special reason. It's alive because it's simple, functional, and works, and has one of the strongest communities.
 
1 members found this post helpful.
Old 05-27-2014, 04:19 AM   #8
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Quote:
We few, we happy few, we band of Slackers;
For he to-day that runs Slackware with me
Shall be my brother; be he ne’er so vile
--Henry V - Brian Shakespeare (William's younger, more talented brother)
 
1 members found this post helpful.
Old 05-27-2014, 04:58 AM   #9
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by dunric View Post
I'm so glad Slackware is driven by a benevolent dictator for life (ie. enlightened dictator) then some seemingly rightful system like a voted committee (hooked by populism and hypocrisy). If you've watched in depth decision making of Debian's TC, you have to vindicate. Reducing decisions only on technical aspects is a manifestation of narrow-mind and can lead to bad results or suboptimal at best in the long run.
I don't want to get into bashing how the Debian project or other distros operate, but there is a lot to be said for a distribution, which has one person in the driving seat.

It means that the distribution is not purely driven by populism. "Too many cooks spoil the broth"
 
Old 05-27-2014, 08:27 AM   #10
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Debian, Slackware, VMs
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
Cool

Quote:
Originally Posted by cynwulf View Post
I don't want to get into bashing how the Debian project or other distros operate, but there is a lot to be said for a distribution, which has one person in the driving seat.
Indeed. We have been well served by the BDFL. Praise Bob. I wouldn't have it any other way.
 
Old 05-27-2014, 07:43 PM   #11
dunric
Member
 
Registered: Jul 2004
Distribution: Void Linux, former Slackware
Posts: 498

Rep: Reputation: 100Reputation: 100
Not going to beat a dead cow but latest *big* voting of technical committee speaks for itself:
Debian init case pt. 1
Debian init case pt. 2
Debian's bug #727708: Removal of Ian Jackson from TC
 
  


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
LXer: Linux Credit Where Due LXer Syndicated Linux News 0 07-09-2012 05:51 PM
LXer: Giving Credit Where Credit is Due... LXer Syndicated Linux News 0 04-06-2010 08:41 PM
LXer: Name'n and Shame'n Where the Credit is Due: Setting the Record Straight on (Non LXer Syndicated Linux News 0 10-29-2007 07:11 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:47 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