Can yout ry the following fix:<br><br>Edit /etc/lsb-base-logging.sh<br><br>At the end of stop_splashy() edit it like:<br><br>...<br>&nbsp;&nbsp;&nbsp; # Before X starts we need to turn off the cursor to avoid artifacts:<br>&nbsp;&nbsp;&nbsp; for i in 7 8 9 10 11 12; do<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if [ -c /dev/tty$i ]; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setterm -cursor off &gt; /dev/tty$i || true<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fi<br>&nbsp;&nbsp;&nbsp; done<br>}<br><br><br>Here is a full copy of the new file (after the patch): <br><br><a href="http://git.debian.org/?p=splashy/splashy.git;a=blob_plain;f=scripts/lsb-base-logging.sh;hb=bc470df84098e1f7d8450af6f824d09003f533ab">http://git.debian.org/?p=splashy/splashy.git;a=blob_plain;f=scripts/lsb-base-logging.sh;hb=bc470df84098e1f7d8450af6f824d09003f533ab</a><br>
<br>