LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 12-10-2023, 11:49 AM   #1
rizitis
Member
 
Registered: Mar 2009
Location: Greece,Crete
Distribution: Slackware64-current, Slint
Posts: 676
Blog Entries: 1

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
Talking PLZ Help to make Slackware more modern...


As you can see we have big problem https://www.phoronix.com/news/systemd-255
Slackware need to move more fast ... before its to late.
My 5 cents
Code:
#!/bin/bash

interrupt_handler() {
    echo "\./"
}

trap interrupt_handler SIGINT

echo -ne "\033]11;#0000FF\007"
echo " Check if systemd is installed"
interrupt_handler() {
    echo -e "\033[?25h"  
    exit 0
}

trap interrupt_handler SIGINT

echo -e "\033[?25l"
duration=5
end_time=$((SECONDS + duration))

while [ $SECONDS -lt $end_time ]; do
    echo -e "~~>"
    sleep 0.5
    echo -e "\033[3D<~~"
    sleep 0.5
done

echo -e "\033[?25h"
if command -v systemctl > /dev/null; then
    echo -e "Hehehe! I like it..."
    echo -e "*** SYSTEM ERROR ***"
    echo -e "A critical error has occurred."
    echo -e "The system will restart in 5 seconds.\e[0m"
    sleep 5
systemctl reboot
else
    echo -e "\e[44m\e[97m *** SYSTEM ERROR NOT FOUND***"
    echo -e "A critical D ERROR NOT FOUND WTF!!!"
    echo -ne "\033]11;#000000\007"
    echo -e "No systemd found...no BSOD :(\e[0m"
echo ""
text="01010011 01101100 01100001 01100011 01101011 01110111 01100001 01110010 01100101"
smiley=";)"

color="\e[1;32m"

for ((i=0; i<${#text}; i++)); do
    echo -n -e "$color${text:$i:1}"
    sleep 0.05
done
echo ""
echo -e "\e[1;33m$smiley\e[0m"
fi
 
Old 12-10-2023, 12:28 PM   #2
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,408

Rep: Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140Reputation: 4140
Quote:
Originally Posted by rizitis View Post
Slackware need to move more fast ... before its to late.
It's been 13 years Slackware move away fast enough from this ;-)
 
6 members found this post helpful.
Old 12-10-2023, 01:18 PM   #3
garpu
Senior Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 1,587

Rep: Reputation: 917Reputation: 917Reputation: 917Reputation: 917Reputation: 917Reputation: 917Reputation: 917Reputation: 917
Is this one of these satire posts I miss, because I usually don't get nonverbals and/or take things literally?
 
5 members found this post helpful.
Old 12-10-2023, 01:26 PM   #4
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,915

Rep: Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033
Speaking of systemd 255

Quote:
Support for System V service scripts is now deprecated and will be removed in a future release. Please make sure to update your software *now* to include a native systemd unit file instead of a legacy System V script to retain compatibility with future systemd releases.
"Instead of"? And what about non-systemd distro? This here tells you everything you need to know about systemd.


P.S.
before anyone jumps on this, yes this is kind of an uncharitable reading of what they said, but when you consider that the systemd folks have been encouraging unit files to be maintained/shipped by the upstream developers with the software rather than leaving it to distro packagers to do then the point stands.

Last edited by GazL; 12-10-2023 at 01:42 PM.
 
7 members found this post helpful.
Old 12-10-2023, 03:40 PM   #5
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Slackware, Debian, OpenBSD
Posts: 7,345

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
I ran systemd for a while. It's good to be back with my non-systemd operating systems. Sanity is a good thing.
 
3 members found this post helpful.
Old 12-10-2023, 05:08 PM   #6
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 4,463
Blog Entries: 7

Rep: Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561
Quote:
Originally Posted by rizitis View Post
As you can see we have big problem https://www.phoronix.com/news/systemd-255
Slackware need to move more fast ... before its to late.
My 5 cents
Code:
#!/bin/bash

interrupt_handler() {
    echo "\./"
}

trap interrupt_handler SIGINT

echo -ne "\033]11;#0000FF\007"
echo " Check if systemd is installed"
interrupt_handler() {
    echo -e "\033[?25h"  
    exit 0
}

trap interrupt_handler SIGINT

echo -e "\033[?25l"
duration=5
end_time=$((SECONDS + duration))

while [ $SECONDS -lt $end_time ]; do
    echo -e "~~>"
    sleep 0.5
    echo -e "\033[3D<~~"
    sleep 0.5
done

echo -e "\033[?25h"
if command -v systemctl > /dev/null; then
    echo -e "Hehehe! I like it..."
    echo -e "*** SYSTEM ERROR ***"
    echo -e "A critical error has occurred."
    echo -e "The system will restart in 5 seconds.\e[0m"
    sleep 5
systemctl reboot
else
    echo -e "\e[44m\e[97m *** SYSTEM ERROR NOT FOUND***"
    echo -e "A critical D ERROR NOT FOUND WTF!!!"
    echo -ne "\033]11;#000000\007"
    echo -e "No systemd found...no BSOD :(\e[0m"
echo ""
text="01010011 01101100 01100001 01100011 01101011 01110111 01100001 01110010 01100101"
smiley=";)"

color="\e[1;32m"

for ((i=0; i<${#text}; i++)); do
    echo -n -e "$color${text:$i:1}"
    sleep 0.05
done
echo ""
echo -e "\e[1;33m$smiley\e[0m"
fi
Haha! Well done.

The BSOD is something Slackware has always lacked...
 
1 members found this post helpful.
Old 12-10-2023, 05:14 PM   #7
stormchaser3000
LQ Newbie
 
Registered: Aug 2018
Distribution: Slackware 15.0
Posts: 14

Rep: Reputation: Disabled
Quote:
Originally Posted by rizitis View Post
As you can see we have big problem https://www.phoronix.com/news/systemd-255
Slackware need to move more fast ... before its to late.

--snip--
You had me going there for a second... I was horrified XD
 
Old 12-10-2023, 07:53 PM   #8
chrisretusn
Senior Member
 
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 2,979

Rep: Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556Reputation: 1556
@rizitis, Love it.
 
Old 12-11-2023, 03:14 AM   #9
ZenwalkerGod
LQ Newbie
 
Registered: Apr 2023
Location: Portugal
Distribution: Zenwalk
Posts: 17

Rep: Reputation: 8
I trust Pat and his team, so I feel safe away from systemd.

I'm just perplexed and why most distros have adopted systemd.

In my opinion, this work comes from outside to try to destabilize Linux in general and the distros themselves.

Let's see what the future holds, but for my part I will remain faithful to Slackware.
 
1 members found this post helpful.
Old 12-11-2023, 03:46 AM   #10
teoberi
Member
 
Registered: Jan 2018
Location: Romania
Distribution: Slackware64-current (servers)/Windows 11/Ubuntu (workstations)
Posts: 614

Rep: Reputation: 357Reputation: 357Reputation: 357Reputation: 357
Why the hell was systemd invented, most distributions have already adopted it, especially the big/commercial ones, but here I have a solution, there are still distributions without systemd (even if not at the qualitative and quantitative level of the big ones Debian, Ubuntu, Fedora, RHEL, SUSE).
My problem is on the antivirus part for the e-mail server where, apart from Clamav, which has many serious problems (from all points of view, i.e. management, allocation of human and financial resources, strategy, etc.) even though it is under the umbrella of CISCO, no there is no solution that does not have systemd as a mandatory requirement.
There is only one alternative, an SDK from IKARUS, but it is expensive and difficult to purchase.
 
Old 12-11-2023, 04:08 AM   #11
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,506

Rep: Reputation: Disabled
'Commercial interests' - they want to sell maintenance/support contracts, so they are 'forcing' through these abnoxious new ways of doing things - totally unnecessary, & not 'the unix way' of doing things at all!
 
3 members found this post helpful.
Old 12-11-2023, 04:45 AM   #12
commandlinegamer
Member
 
Registered: Dec 2007
Posts: 163

Rep: Reputation: 51
I am wary of systemd, but not so foolish as to condemn something of which I don't know the full details.

It's possible that software which depends on it may prove to be problematic in future, but there are other operating systems out there which don't use it, so I'm not yet convinced disaster is imminent.

And I don't think hyperbole helps.
 
Old 12-11-2023, 04:46 AM   #13
teoberi
Member
 
Registered: Jan 2018
Location: Romania
Distribution: Slackware64-current (servers)/Windows 11/Ubuntu (workstations)
Posts: 614

Rep: Reputation: 357Reputation: 357Reputation: 357Reputation: 357
Quote:
Originally Posted by fatmac View Post
'Commercial interests' - they want to sell maintenance/support contracts, so they are 'forcing' through these abnoxious new ways of doing things - totally unnecessary, & not 'the unix way' of doing things at all!
I agree with you but unfortunately this is the reality.
 
Old 12-11-2023, 09:19 AM   #14
zeebra
Senior Member
 
Registered: Dec 2011
Distribution: Slackware
Posts: 1,834
Blog Entries: 17

Rep: Reputation: 642Reputation: 642Reputation: 642Reputation: 642Reputation: 642Reputation: 642
Quote:
Originally Posted by GazL View Post
but when you consider that the systemd folks have been encouraging unit
Unit files are annoying, and they tend to have very conformant and easy to use names like this:
Code:
This.Is.MY.SYSTEMd.unit.FIle.org@Commset.nOw
No wonder I got into the habit of always using grep -i.

And likewise the syntax inside the files don't follow any simple norms. What's next? Html files as config files? Ooh, I forgot, those already exist. Where are the days of simple config files?
Old format:
function=off
New format:
This.Function.IS_theNEW.function.enable?is_set-to=this_function_is_OFF

Last edited by zeebra; 12-11-2023 at 09:29 AM.
 
1 members found this post helpful.
Old 12-11-2023, 10:09 AM   #15
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,

I'm old and set in my ways therefore trust PV & team to keep things working. Newest it not always the best. Macro-management is not something that I'm in favor of so threads of this type are just noise to me and in the Slackware community. My systems are stable and secure therefore why jump ship to something that can be broken at any time.

Quote:
"Life's tough...It's even tougher if you're stupid." - John Wayne
 
4 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
plz plz plz help me firoz Linux - Newbie 2 06-20-2011 07:08 AM
[B][RED]Critical - Help Needed Immediately PLZ PLZ PLZ[/B][/RED] zoomzatag Linux - Newbie 4 10-07-2010 01:25 PM

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

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