LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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-18-2016, 10:21 PM   #1
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,097

Rep: Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275
Boot Splash.


In another thread I mentioned how I found the sign-on/splash screen used by Alien BOB for Slackware Live to be quite attractive. The largest font on the screen is, of course, "Slackware Linux," but what I really liked was what it says in the bottom right-hand corner, "When you get serious."
I tried converting it to a bitmap file and using it with -current, but it didn't work.
So, after searching around I found one I like even better and thought of "sharing" it with other Slackware64 users.
Since it is a bitmap file it won't attach, so here you go, a Slackware64 lilo boot splash screen,

http://kde-look.org/content/show.php...content=124827

Of course, to use this you need to copy it to your /boot directory, edit your lilo.conf file accordingly and re-run lilo.
Enjoy.

Last edited by cwizardone; 06-18-2016 at 10:57 PM.
 
Old 06-18-2016, 11:17 PM   #2
chrisretusn
Senior Member
 
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 2,969

Rep: Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548
Hey that is nice.
 
1 members found this post helpful.
Old 06-18-2016, 11:27 PM   #3
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
That's a much nicer splash screen thanks cwizardone.-

Like this guys?

Quote:
bitmap = /boot/124827-slack.bmp
bmp-colors = 255,0,255,0,255,0
bmp-table = 60,6,1,16
bmp-timer = 65,27,0,255

Last edited by Ztcoracat; 06-18-2016 at 11:45 PM. Reason: Question
 
1 members found this post helpful.
Old 06-19-2016, 12:42 AM   #4
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,097

Original Poster
Rep: Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275
Quote:
Originally Posted by Ztcoracat View Post
That's a much nicer splash screen thanks cwizardone.-

Like this guys?
I just looked at my lilo.conf and your second, third and fourth lines are already there, you just need to change the name of the image.

Last edited by cwizardone; 06-19-2016 at 12:45 AM.
 
1 members found this post helpful.
Old 06-19-2016, 06:44 AM   #5
Qury
Member
 
Registered: Feb 2004
Location: Naas,IE
Distribution: Slackware
Posts: 212

Rep: Reputation: 184Reputation: 184
Now the only thing I miss is a working howto on how to implement plymouth or some other bootsplash to hide the kernel messages.
(there are a few desktop users in the wider family who do not care about those messages)
 
Old 06-19-2016, 07:41 AM   #6
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
OK cwizardone, I could not leave that unanswered...
I wrote a script that takes any image as input and writes a LILO bitmap file: http://www.slackware.com/~alien/tools/img2lilobmp.sh

After conversion, the script outputs the color palette of the generated image file, because it's the indices in this color palette that are used in the 'bmp-colors' and 'bmp-timer' entries of lilo.conf:
Code:
-- Converting 'liveslak/syslinux/swlogov.png' to './swlogov.bmp'
-- LILO's 'bmp-colors' and 'bmp-timer' need to use these palette indices:
         0: (  0,  0,  0) #000000 black
         1: ( 20, 24, 43) #14182B rgb(20,24,43)
         2: ( 27, 34, 59) #1B223B rgb(27,34,59)
         3: ( 31, 38, 67) #1F2643 rgb(31,38,67)
         4: ( 37, 46, 81) #252E51 rgb(37,46,81)
         5: ( 48, 58,103) #303A67 rgb(48,58,103)
         6: ( 55, 68,119) #374477 rgb(55,68,119)
         7: ( 61, 75,131) #3D4B83 rgb(61,75,131)
         8: ( 69, 85,149) #455595 rgb(69,85,149)
         9: ( 75, 93,164) #4B5DA4 rgb(75,93,164)
        10: ( 85,104,184) #5568B8 rgb(85,104,184)
        11: (  0,  0,  0) #000000 black
        12: (  0,  0,  0) #000000 black
        13: (  0,  0,  0) #000000 black
        14: (  0,  0,  0) #000000 black
        15: (  0,  0,  0) #000000 black
The following can be used together with the "When you get serious" bitmap, using only palette incices '0' (black) and '2' (dark purple). Using one of the palette indices 3 to 10 instead of 2 would give you a somewhat lighter color for the menu and the timer:
Code:
  bitmap = /boot/swlogov.bmp
  bmp-colors = 2,0,2,0,2,0
  bmp-table = 60,13,1,16
  bmp-timer = 65,27,0,2
 
4 members found this post helpful.
Old 06-19-2016, 07:52 AM   #7
elcore
Senior Member
 
Registered: Sep 2014
Distribution: Slackware
Posts: 1,753

Rep: Reputation: Disabled
Quote:
Originally Posted by Qury View Post
Now the only thing I miss is a working howto on how to implement plymouth or some other bootsplash to hide the kernel messages.
(there are a few desktop users in the wider family who do not care about those messages)
What's the point having plymouth when booting into xdm takes 4 seconds, it will only extend boot time, plus it only makes sense with framebuffer enabled.
You can pass "quiet" to kernel command line to reduce messages if you don't want them, no?
 
Old 06-19-2016, 09:37 AM   #8
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,097

Original Poster
Rep: Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275Reputation: 7275
Quote:
Originally Posted by Alien Bob View Post
OK cwizardone, I could not leave that unanswered...
I wrote a script that takes any image as input and writes a LILO bitmap file......
Many Thanks. Once again your work is, "...above and beyond the call..."

Last edited by cwizardone; 06-19-2016 at 11:33 AM. Reason: Typo.
 
Old 06-19-2016, 04:14 PM   #9
Tonus
Senior Member
 
Registered: Jan 2007
Location: Paris, France
Distribution: Slackware-15.0
Posts: 1,405
Blog Entries: 3

Rep: Reputation: 514Reputation: 514Reputation: 514Reputation: 514Reputation: 514Reputation: 514
Boot Splash.

I always wonder what can be the specs of a machine booting in less than 10s...

Or I am really missing something.
 
Old 06-19-2016, 04:55 PM   #10
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
Quote:
Originally Posted by Tonus View Post
I always wonder what can be the specs of a machine booting in less than 10s...

Or I am really missing something.
From reports I've read, an SSD + that which shall not be named will boot in ~5 seconds. Not that boot time really matters to me, as long as I can be using my computer to its full capacity within a couple minutes of powering on.

Last edited by montagdude; 06-19-2016 at 04:57 PM.
 
1 members found this post helpful.
Old 06-19-2016, 05:03 PM   #11
notKlaatu
Senior Member
 
Registered: Sep 2010
Location: Lawrence, New Zealand
Distribution: Slackware
Posts: 1,077

Rep: Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732
With SSD, honestly, ANYTHING boots in about 5 seconds. I run Slack on SSD and there basically is no boot time.
 
1 members found this post helpful.
Old 06-19-2016, 05:06 PM   #12
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
Quote:
Originally Posted by notKlaatu View Post
With SSD, honestly, ANYTHING boots in about 5 seconds. I run Slack on SSD and there basically is no boot time.
I figured as much. It's just that the boot time war discussions I've seen have usually been by people on distros that use systemd (woops, I just named it).
 
1 members found this post helpful.
Old 06-19-2016, 07:19 PM   #13
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Hmmm ...

That whole boot-time discussion loses meaning when one factors in the POST time.

I am running SSDs and for sure, Linux boots PDQ.

OTOH I spend a relatively long time waiting for POST to hand over control to lilo.

Once lilo starts the actual boot, I am up in a few seconds.

Maybe if I was to go EFI boot, it might go faster but I imagine the POST time will still be the larger part of boot time.

-- kjh
 
1 members found this post helpful.
Old 06-20-2016, 12:03 AM   #14
drgibbon
Senior Member
 
Registered: Nov 2014
Distribution: Slackware64 15.0
Posts: 1,220

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
My favourite Slackware background/splash is the one that comes with this SLiM theme (preview here). Nothing too fancy, just the Linux penguin with Dobbs pipe and "Slackware Linux" underneath. The image in the source archive doesn't have the login box, should be ok for LILO.
 
1 members found this post helpful.
Old 06-20-2016, 12:07 AM   #15
elcore
Senior Member
 
Registered: Sep 2014
Distribution: Slackware
Posts: 1,753

Rep: Reputation: Disabled
Quote:
Originally Posted by Tonus View Post
I always wonder what can be the specs of a machine booting in less than 10s...

Or I am really missing something.
Well, my desktop is old BIOS machine with 14.1, static ethernet, dual core phenom with 4G DDR2@1600 and GT440. Got an SSD specially for root ext2fs however.
It's usable in 4 sec from grub > xdm. I guess it takes about 8-10 sec from cold boot into fluxbox.
From my experience, reading initrd & modules from regular HDD will cause a slight delay, but it all depends on the drive cache and sometimes network if nfs/ntp/dhcp is used.
And I'm sorry for derailing the thread. More artwork is always a good thing, except when it's plymouth, thing doesn't mix well with nvidia module and needs framebuffer to briefly display an image for couple of seconds before xdm displays another image.
 
  


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
Don't show boot messages during Clonezilla boot-up. Splash screen? Perd Linux - Newbie 4 07-18-2010 02:49 PM
Boot splash image with various boot loaders kumarkumar Linux - Software 4 06-10-2008 07:06 PM
Dual Boot = No Boot (hangs at bios splash screen) nedwardss Debian 4 12-03-2004 04:09 AM
Boot Splash dbzw SUSE / openSUSE 7 11-20-2004 02:21 AM
boot splash noobtesting Mandriva 7 07-17-2004 08:10 AM

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

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