You are not logged in.
Pages: 1
Hi,
I am attempting to remove as much startup information from display as possible. Other then the initial GRUB information that I don't seem to be able to remove I was wondering if it was possible to hide the message "Loading initramfs...". From searching the internet it does not appear that this is possible, however I thought I would throw this out here.
Thanks.
Offline
Why don't you just use a splash screen or something. That way there is no text and its pretty.
Archi686 User | Old Screenshots | Old .Configs
Vi veri universum vivus vici.
Offline
Why don't you just use a splash screen or something. That way there is no text and its pretty.
I do use a splash screen (splashy) that hides everything except for "Loading initramfs..." which displays for a second. It doesn't matter really, just a little polish if possible.
Edit: Idea, perhaps there is a way to change the console's colour to black on black, that would effectively hide it. I'll reply if I find anything along this line.
Edit2: It would appear you can't change that without recompiling the kernel which would be dumb to do for something this trivial.
Last edited by Maskawanian (2009-03-12 21:26:32)
Offline
disable the message in 3 easy steps:
1. open (as root) the file /lib/initcpio/init
2. comment out line 6
3. rebuild initramfs (mkinitcpio blabla)
all done
PS: when pacman updates the mkinitcpio package, it will overwrite this file.
EDIT: Instead of commenting out line 6, you can also move it right before this line (just after that big case statement that parses the kernel cmdline:
if [ -n "${disablehooks}" ]; then
This way, if you ever decide to remove "quiet" from the kernel command-line, the message will be printed again...
Last edited by klixon (2009-03-12 22:15:08)
Stand back, intruder, or i'll blast you out of space! I am Klixon and I don't want any dealings with you human lifeforms. I'm a cyborg!
Offline
Ah thanks! That worked perfectly!
Offline
Is there anything this man doesn't know?
It's a very deadly weapon to know what you're doing
--- William Murderface
Offline
Pages: 1