https://bugs.kde.org/show_bug.cgi?id=376280
--- Comment #4 from Bronson <bronsonmath...@gmail.com> --- attached screen shots. First is what happens when the script is finished. Second one shows hitting enter a few times... No command prompt returns. Its a very intermittent bug. But possibly related to changing the user fonts from the kde fonts app? This was after running a sh script with the following: #!/bin/sh # append to end of file if doesnt exist LINE='deb http://download.virtualbox.org/virtualbox/debian xenial contrib\n' FILE=/etc/apt/sources.list grep -q "$LINE" "$FILE" || echo $LINE | sudo tee -a $FILE # install key wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - # update & install sudo apt-get update sudo apt-get install linux-headers-generic sudo apt-get install virtualbox-5.1 dkms -y -- You are receiving this mail because: You are watching all bug changes.