LinuxQuestions.org
Help answer threads with 0 replies.
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 06-17-2020, 02:59 PM   #616
captain_sensible
Member
 
Registered: Apr 2010
Posts: 352

Rep: Reputation: 145Reputation: 145

@vtel57 should you wish to "re-activate" but not sure where to start editing or make clarification on errors i know exist, may i mentioned this contribution :

https://docs.slackware.com/howtos:mi...f_a_slackbuild

The idea is that its complementary "attempt" of an explanation of what goes on in a SlackBuild mainly aimed at less tech/able people (like myself) to complement a real life slackbuild that can be downloaded:

https://slackbuilds.org/repository/1...rch=latex2html

Its slightly out of date since i updated the SlackBuild taking into account new source release
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 06-18-2020, 09:36 AM   #617
vtel57
Senior Member
 
Registered: Jul 2006
Location: USA
Distribution: Slackware64 - 14.2 w/ Xfce
Posts: 1,631

Rep: Reputation: 489Reputation: 489Reputation: 489Reputation: 489Reputation: 489
Hi @captain_sensible!

Are you the original contributor of that How-To on the docs.slackware.com site?
 
Old 06-19-2020, 03:01 AM   #618
captain_sensible
Member
 
Registered: Apr 2010
Posts: 352

Rep: Reputation: 145Reputation: 145
Hi @vtel57 thanks for reply. Eric set me straight at the beginning rather embarrassingly with English (i'm English he's not ) and syntax. Apart from that i'm the only contributor.


I did it after reading through template for slackbuild, trying to understand it and applying it to do a SlackBuild for Latex2html which i submitted.


it should really not be a "how to " since now you don't really write a SlackBuild anymore just adapt a SlackBuild template. Thus it was meant to be an explanation to go with the SlackBuild you can find on slackbuilds.Also that its meant for people like myself.


As you can see from my rating I don't have much ability but when I was trying to get my latex2html accepted I couldn't find an up todate explanation and i noted in the docs.slackware.com the line

"Who can help? Anyone can, from your uncle Ed who tinkers with Slackware on his old laptop to Linux gurus with development level skill sets." which i interpreted as, it doesn't matter if your not that able or clever your welcome and can still contribute.


There is a section which I tried to interpret but am probably wrong, which means there may be erroneous material. I did put a shout out to editors last line of

https://docs.slackware.com/talk:slackdocs:news discussion tab

Last edited by captain_sensible; 06-19-2020 at 03:14 AM. Reason: spelling and content
 
Old 06-19-2020, 07:42 AM   #619
chrisretusn
Senior Member
 
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 2,976

Rep: Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553
Quote:
Originally Posted by captain_sensible View Post
it should really not be a "how to " since now you don't really write a SlackBuild anymore just adapt a SlackBuild template. Thus it was meant to be an explanation to go with the SlackBuild you can find on slackbuilds.Also that its meant for people like myself.
That was a good write up. Enjoyed reading it.


I am one of those who does write my own scripts. Of course I started out using the SlackBuild scripts and SBo scripts before I branched out to do my own. I wanted some extras that SBo scripts don't and can't provide, plus my build environment is also different that SBo's.
 
1 members found this post helpful.
Old 06-19-2020, 09:06 AM   #620
vtel57
Senior Member
 
Registered: Jul 2006
Location: USA
Distribution: Slackware64 - 14.2 w/ Xfce
Posts: 1,631

Rep: Reputation: 489Reputation: 489Reputation: 489Reputation: 489Reputation: 489
Quote:
Originally Posted by captain_sensible View Post
"Who can help? Anyone can, from your uncle Ed who tinkers with Slackware on his old laptop to Linux gurus with development level skill sets." which i interpreted as, it doesn't matter if your not that able or clever your welcome and can still contribute.


There is a section which I tried to interpret but am probably wrong, which means there may be erroneous material. I did put a shout out to editors last line of

https://docs.slackware.com/talk:slackdocs:news discussion tab

In the beginning, we had quite a few active editors to screen submissions. Nowadays, though, it's pretty much Eric H. and myself... and I've been somewhat remiss about keeping an eye on things there.


As Chris says above, I read your article and thought it to be quite well done. A long time in the past, I attempted a few SlackBuilds "from scratch", but I found that most SlackBuilds I needed on my system were already in existence, so I didn't bother anymore. For this reason, I cannot second guess your thesis on its technical merits. E. Hameleers or R. Workman or others are going to be MUCH more qualified to check on it for you. I'm good at grammar/spelling/punctuation. If there is erroneous information in the article, it's going to require a smarter person than I to detect and edit it.


On a submission-driven wiki like docs.slackware.com, there's always going to be some information submitted that's not necessarily accurate. It happens. Editors are supposed to catch it and correct it.


Anyway, all's well for the moment.


Have a great weekend! #Stay_Healthy!

Last edited by vtel57; 06-19-2020 at 09:17 AM. Reason: Amended ~Eric L.
 
1 members found this post helpful.
Old 06-19-2020, 11:29 AM   #621
captain_sensible
Member
 
Registered: Apr 2010
Posts: 352

Rep: Reputation: 145Reputation: 145
the erroneous material is i think my explanation :

If i understand the above block of code correctly its using the “find” on the basis of permissions and following symbolic links using the “-L flag”. If i understand this correctly its basically setting directories to 755 in order to enable a “cd” into them and files so that root can read write. If this is true I might have expected

-type d -exec chmod 775 {}

For directories and

-type f -exec chmod 644 {}
on the actual block :
Code:
find -L . \
 \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
  -o -perm 511 \) -exec chmod 755 {} \; -o \
 \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
  -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;

Last edited by captain_sensible; 06-19-2020 at 11:30 AM.
 
Old 06-19-2020, 06:03 PM   #622
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Is there a way to get notified of new submissions to SlackDocs? I like reading contributions to it, but there aren't enough for me to add the site to my daily sites to check, because after so long without updates, I'll forget to keep going there.

I'll have to read through the SlackBuild article once I get some time.
 
Old 06-20-2020, 11:05 AM   #623
vtel57
Senior Member
 
Registered: Jul 2006
Location: USA
Distribution: Slackware64 - 14.2 w/ Xfce
Posts: 1,631

Rep: Reputation: 489Reputation: 489Reputation: 489Reputation: 489Reputation: 489
> Is there a way to get notified of new submissions to SlackDocs?

I seem to remember as an Admin at docs.slackwere.com that I used to get email notifications of changes to the wiki. I do NOT get them as a regular Editor, though.

Eric H. (AlienBob) will have to answer this one, bassmadrigal. Sorry. I have insufficient data and/or memory.
 
1 members found this post helpful.
Old 06-20-2020, 11:19 AM   #624
gegechris99
Senior Member
 
Registered: Oct 2005
Location: France
Distribution: Slackware 15.0 64bit
Posts: 1,161
Blog Entries: 5

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392
Quote:
Originally Posted by bassmadrigal View Post
Is there a way to get notified of new submissions to SlackDocs?
There's a RSS feed but it's not limited to new submissions.
 
2 members found this post helpful.
Old 06-20-2020, 04:56 PM   #625
vtel57
Senior Member
 
Registered: Jul 2006
Location: USA
Distribution: Slackware64 - 14.2 w/ Xfce
Posts: 1,631

Rep: Reputation: 489Reputation: 489Reputation: 489Reputation: 489Reputation: 489
Ah, yes! Thanks. I had completely forgotten about the RSS. Unfortunately, even that would require regular monitoring by those interested in the new submissions. I haven't loaded up my RSS feeds in months.
 
Old 06-21-2020, 10:15 PM   #626
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by gegechris99 View Post
There's a RSS feed but it's not limited to new submissions.
Thanks. Maybe I'll have to get akregator up and running again. I used to use that, but it crashed at some point and lost me all my feeds and I was too lazy to set it back up.
 
Old 09-27-2020, 10:08 AM   #627
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: Slackware®
Posts: 13,925

Original Poster
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Arrow Slackware UK mirror and hosting service help needed

Hi,

I am posting the quote here to hopefully help;
EDIT: From https://www.linuxquestions.org/quest...uk-4175670721/
Quote:
Originally Posted by tadgy View Post
Hi,
As some of you may know, I am the founder, maintainer and systems administrator for the Slackware UK mirror and hosting service specifically targeted at the Slackware Linux community.

I am making this post to request your support for the service via the Slackware UK Patreon page.

The service has been running for over 10 years now - I started out small, with a PC under a desk and a 2Mbits/sec SDSL connection. From simply offering a mirror of Slackware Linux, the service has grown
and grown into what it is today - dedicated servers with Gigabit connectivity for all things Slackware!

I would like to think Slackware UK has grown to be one of the largest repositories of Slackware related projects and files on the internet - in fact, I cannot think of anywhere else that provides access to so many resources in one location.

Slackware UK isn't just about mirroring software that you can find elsewhere on the internet - I offer free full file hosting to Slackware related projects, distributions and package maintainers. There are several projects which use Slackware UK as their primary hosting solution; including SlackwareARM, Absolute Linux, Freeslack, Slint, Cinnamon SlackBuild (CSB) and MATE SlackBuild (MSB), to name but a few. I also offer a mirror of the entire Slackware Linux trees and other projects such as Zenwalk, and packages provided by alienBOB (Eric Hameleers) and rworkman (Robby Workman). I also maintain an in-house (with thanks to alienBOB) cumulative archive of all packages distributed since the very first release of Slackware64.

So, why am I asking for Patrons? Simply to cover some of the costs and expenses for running the service. I am not looking to profiteer on the back of Slackware Linux or Patrick's work - in fact, I encourage you to visit Pat's Patreon page and sign up to become one of his patrons also. I only ask that, if you regularly use Slackware UK or one of the projects that I host, you would kindly consider becoming a patron of the service, if you have the means.

Any donations are gratefully received and every little helps. If you wish to donate as a one off or an amount which is not available on Patreon, please see the Slackware UK website for PayPal links.

Thank you for reading
Hopefully you can help.
Have fun & enjoy Slackware!

Last edited by onebuck; 09-28-2020 at 09:04 AM. Reason: add link for original thread,
 
2 members found this post helpful.
Old 10-07-2020, 08:55 AM   #628
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: Slackware®
Posts: 13,925

Original Poster
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
AlienBob's recent email

Hi,

Eric is still working hard on liveslak;

Quote:
Portion of subscribed email from AlienBob;

The liveslak project received some interesting new features.
Most importantly, the hard disk installer of the Slackware Live Edition - called "setup2hd" - was expanded. In the past, it used to allow only the installation of the Live OS to your hard drive. But I received requests to also make it possible for setup2hd to install regular Slackware like the official installer does. It sounded like a good idea, and starting with liveslak release 1.3.7 the "setup2hd" program will let you choose from more package SOURCES than just the Live OS. In addition to the Live OS, you can now choose to install regular Slackware from a NFS, HTTP, FTP or Samba server. In other words, Slackware's network install feature was added.
Why is this different from the setup program on the official Slackware ISO? Well, the most obvious improvement is that you are working in a graphical desktop environment (the Live OS). You can run the setup2hd hard disk installation in an X terminal while you keep doing other stuff like reading online materials or watching a video to pass the time. Moreover, you can install stable Slackware 14.2 from the Live OS. That means MMC and NVMe drives are supported during installation (which is something the official Slackware 14.2 installer does not provide for).
And to top it off, I am now also adding "setup2hd" to the small XFCE ISOs. Word of caution: the XFCE ISOs do not contain a "huge" kernel which means if you want to install the stripped-down XFCE OS to your hard drive, you will have to do a manual "chroot" after installation completes and before you reboot, to edit /etc/lilo.conf and add a section for the "generic" kernel. and then run the "lilo" command to make it stick. Hopefully the "liloconfig" command will learn how to do that for you, sometime soon. You can always perform a Slackware network installation from the XFCE Live OS of course! The second new feature is the ability of liveslak to configure a custom background image for Plasma5-based Live OS. The custom image is used when generating the Live ISO, as the background for the SDDM login greeter, your desktop wallpaper, and for the lock-screen backdrop.
What I still want to achieve is adding similar functionality to the XFCE and Gnome based Live variants. The snag is that the configuration needs to be scriptable, i.e. when the "live" user logs in everything must already be in place and pre-configured. For Plasma5 that was not trivial to work out, and I have zero Gnome and XFCE scripted desktop configuration knowledge. Suggestions and code snippets are welcome.
If you wish to get updated by AlienBob's blog or what he is currently working on then sign up at https://alien.slackbook.org/blog/

Hope this helps.
Have fun & enjoy Slackware!
 
2 members found this post helpful.
Old 11-03-2020, 08:34 PM   #629
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: Slackware®
Posts: 13,925

Original Poster
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Arrow Plasma in /testing

Hi,

WOW!

From ftp://ftp.osuosl.org/pub/slackware/s.../ChangeLog.txt

Code:
Wed Nov  4 02:31:05 UTC 2020 [2903]: Getting ChangeLog.txt...
0a1,424
> Tue Nov  3 22:32:22 UTC 2020
> Welcome to vtown, volkerdi's friendly takeover of alienBOB's ktown Plasma 5
> packages! Enormous thanks are due to alienBOB for maintaining and leading
> testing of Plasma 5 on the side, even as I wore out his patience (and likely
> others as well). But now this has made it into /testing and it won't be all
> that long before it'll hit the main tree, so test it out and let me know if
> anything broke. Several packages have been given back their upstream names
> since there's no real reason to do otherwise unless we were going to support
> installing KDE4 at the same time, and we aren't. Qt4 won't even be sticking
> around, but probably slackbuilds.org will take it up. I dropped kaudiocreator
> (won't build), ktuberling and klettres (rather bloated for the probably limited
> appeal), user-manager (seems to have been dropped by upstream), kdelibs (KDE4
> library, not going to support that), kwebkitpart, and kpat (not adding three
> new dependences only used for a solitaire game). In addition, it's probable
> that digikam and its dependencies will be dropped. It's a great program, but
> in my opinion it's just a little too big (especially the source) to ship by
> default. To install the vtown packages, first you'll want to remove any KDE4
> packages (the KDE and KDEI series in the main tree), any previous ktown packages
> from alienBOB, and then install all of the packages in vtown/deps and vtown/kde
> using upgradepkg --install-new. The previous advice on ConsoleKit2 was to remove
> it since we've switched to elogind, but if you've got the latest rc.M it
> shouldn't matter since ConsoleKit2 will not be started if elogind is installed.
> Speaking of elogind, you'll probably notice that once elogind is installed X
> or Wayland sessions will launch in the current console rather than on console 7.
> Regarding the build numbers, the one before _vtown_ is the build number that
> will be used when the merge to the main tree happens, and the one after _vtown_
> is used in case any rebuilds need to happen while vtown is in /testing.  That's
> about it for the notes on this one. Thanks again to alienBOB, and to my friends
> in the US - don't forget to vote. :-)
Thanks PV & AlienBob!!
Have fun & enjoy Slackware!
 
1 members found this post helpful.
Old 11-04-2020, 08:30 AM   #630
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,477
Blog Entries: 2

Rep: Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982
Blessed be he did it!

They both did it! (PV and AlienBOB)

 
  


Reply

Tags
install, latest-firefox, machine, network, nic, slackware, virtual



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
I'm a new Slacker olias Slackware 29 08-27-2014 11:07 AM
Another slacker! :) multios Slackware 37 01-30-2008 06:22 PM
Another Slacker... :) TtuEd LinuxQuestions.org Member Intro 1 09-03-2007 02:41 PM
Greetings from a slacker Bread LinuxQuestions.org Member Intro 1 01-19-2006 06:53 PM
I'm a slacker in need Tekime Slackware 2 07-30-2002 01:33 PM

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

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