Skip to content

Troubleshooting

Common Virtualbox Issues & Solutions

Error Message:

Virtualbox kernel driver not installed (rc=-1908) Ubuntu 22.04 LTS

Solution:

Terminal window
sudo apt install virtualbox-dkms
sudo modprobe vboxdrv

Common Android Studio Issues & Solutions

Error Message:

Process "/app/extra/android-studio/bin/studio" (2) is still running.
If the process is an instance of the IDE, please collect the logs and contact support.
If it isn't, please delete the stale "/home/.var/app/com.google.AndroidStudio/config/Google/AndroidStudio2024.3/.lock" file and restart the IDE.

The message appears because Android Studio detects that there are still processes running (possibly from a previous session), and therefore the .lock file is not deleted normally.

Solution:

Terminal window
$ ps aux | grep studio
Terminal window
$ killall studio
or
$ pkill -f studio
Terminal window
rm ~/.var/app/com.google.AndroidStudio/config/Google/AndroidStudio<VERSION>/.lock
Terminal window
rm ~/.var/app/com.google.AndroidStudio/config/Google/AndroidStudio2024.3/.lock