Views:
442
Votes: 1
✅ Solution
Tags:
boot
18.04
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1159496
Title:
Ubuntu 18.04 stuck on verbose screen on startup
ID:
/2019/07/19/Ubuntu-18.04-stuck-on-verbose-screen-on-startup
Created:
July 19, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
After logging into the console look edit this file:
/usr/share/pyshared/lsb_release.py
And around line 41 you will see:
RELEASES_ORDER.sort(key=lambda n: float(n[0]))
Change it to:
RELEASES_ORDER.sort(key=lambda n: float(n[0].split()[0]))
Source: lsb_release - could not convert string to float: '8.04 LTS'