In Linux virtual terminals, the cursor may blink by default. This can be distracting.
On Linux systems, the file /sys/class/graphics/fbcon/cursor_blink contains a number. Whether the number is 1 or 0 determines whether the cursor blinks or not, respectively. The file requires root's permission to be written, and its contents are reset at reboot. Setting the contents to 0 at reboot should stop the blinking. Here is how to do that:
su -l root
echo "echo 0 > /sys/class/graphics/fbcon/cursor_blink" > stop-cursor-blinking-in-linux-virtual-terminals.sh
crontab -e
@reboot sh /root/stop-cursor-blinking-in-linux-virtual-terminals.sh
The next time you reboot, the cursor should not blink.