[SOLVED] /etc/issue wrap-around on boot 08 May 2021, 08:26:49 I have a minor issue where I'm trying to display ascii art in /etc/issue at agetty.After I log in and log out, the contents are displayed correctly, but on boot there's a weird wrap-around thing going on where it seems as if agetty isn't using the full width (or length) of the screen. I had this issue on systemD and OpenRC, so I assume it has something to do with the screen resolution not being fully initialized before agetty is called.Is there any way to easily fix this so that on boot, the text can go on for longer before word-wrapping?On boot agetty:https://forum.artixlinux.org/index.php?action=dlattach;topic=2554.0;attach=1185;imageAfter logging in and out agetty:https://forum.artixlinux.org/index.php?action=dlattach;topic=2554.0;attach=1187;image Last Edit: 08 May 2021, 17:56:05 by rocketeer
Re: /etc/issue wrap-around on boot Reply #1 – 08 May 2021, 14:16:00 What if you delay agetty service startup? Like editing /etc/init.d/agetty and add "after consolefont"?If that doesn't do the trick, change 'consolefont' to 'local'.
Re: /etc/issue wrap-around on boot Reply #2 – 08 May 2021, 14:40:42 https://wiki.archlinux.org/title/GRUB/Tips_and_tricks#Visual_configurationWould Grub gfxpayload and related setup help?
Re: /etc/issue wrap-around on boot Reply #3 – 08 May 2021, 16:16:58 In my experience, modesetting is usually done after udev finishes settling.
Re: /etc/issue wrap-around on boot Reply #4 – 08 May 2021, 17:55:52 Thanks so much guys. Changing my config toCode: [Select]GRUB_GFXPAYLOAD_LINUX=textin /etc/default/grub did the trick!