Virtualbox crash

Questions about virtualization software
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
mrmajik45

Virtualbox crash

Post by mrmajik45 »

My PC hangs/crashes when i run a virtual machine. Note it doesn't happen when i open the app. Only when i open a VM.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

I mean this error appears randomly as well.

Code: Select all

Unable to save bookmarks in /home/ghostslayer989/.local/share/user-places.xbel. Reported error was: Existing file /home/ghostslayer989/.local/share/user-places.xbel is not writable. This error message will only be shown once. The cause of the error needs to be fixed as quickly as possible, which is most likely a full hard drive.
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: Virtualbox crash

Post by Cosmo. »

The end of the error message points you to the free space on your drive - more precisely to the partition, where your home resides. How much space is free?

Besides that: You missed to give any technical details: Host: Version of Mint (or what you have) and desktop environment, version of VB?
Guest: Again: Which OS / distro / version / desktop?
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

333.1 GB free. SYS INFO:
Linux mint 18.3 / KDE / VB: 5.0.40-dfsg-0ubuntu1.16.04.2
User avatar
MrEen
Level 23
Level 23
Posts: 18343
Joined: Mon Jun 12, 2017 8:39 pm

Re: Virtualbox crash

Post by MrEen »

What does this return:

Code: Select all

ls -l /home/ghostslayer989/.local/share/user-places.xbel
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

-rw-rw-r-- 1 root root 7108 Dec 8 19:13 /home/ghostslayer989/.local/share/user-places.xbel
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: Virtualbox crash

Post by Cosmo. »

So space is not the problem, but wrong ownership of the file; the effect is the same as missing space. As it appears likely, that the same fault exists also on other places, do a more extensive investigation (in the host):
Mark the following command and press ctrl-c

Code: Select all

find $HOME ! -user $USER -type f
open a terminal and press ctrl-shift-V Mark the complete result inclusive the command with the mouse and press ctrl-shift-C
In the forum click the Code-button above the text box, than press ctrl-v.
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

Code: Select all

/home/ghostslayer989/.config/Emteria/Installer.conf
/home/ghostslayer989/.config/trashrc
/home/ghostslayer989/kernel/linux-headers-4.13.5-041305_4.13.5-041305.201710050600_all.deb.1
/home/ghostslayer989/kernel/linux-headers-4.13.5-041305-generic_4.13.5-041305.201710050600_amd64.deb.1
/home/ghostslayer989/kernel/linux-image-4.13.5-041305-generic_4.13.5-041305.201710050600_amd64.deb.1
/home/ghostslayer989/.local/share/log-191917-05102017.txt
/home/ghostslayer989/.local/share/Emteria/Installer/rpi3-v0.2.4/boot.zip
/home/ghostslayer989/.local/share/Emteria/Installer/rpi3-v0.2.4/system.zip
/home/ghostslayer989/.local/share/Emteria/Installer/rpi3-v0.2.4/package.json
/home/ghostslayer989/.local/share/user-places.xbel
/home/ghostslayer989/.local/share/user-places.xbel.bak
/home/ghostslayer989/.local/share/user-places.xbel.tbcache
/home/ghostslayer989/pulseway_x64.deb
/home/ghostslayer989/.directory
/home/ghostslayer989/.git/objects/09/f370e38f498a462e1ca0faa724559b6630c04f
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/aa325bb97bab460abec54327639ca27b0f8c5fc4.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/817a251c75b4be3428527d19b8259a7ffbdd5c12.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/8f0060681e9a7ffb5c76d3d1d01ea6dee460a8da.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/bf90cc4ccab75bd1636084923937ff5348e6e107.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/fa742cc2c22721a65adb7a25fd912ffccb5c89fa.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/30168ad71bc983e588736a85f1fba358617130d9.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/2bd4883bf028732589057c45ec79a9cf0fc324ec.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/2fa2a6c8c2df56a7932cf8b7368b907b95cf99c7.qmlc
/home/ghostslayer989/.cache/thumbnails/normal/f0e97816eb2b3b58e3e59b023dcd0d4b.png
/home/ghostslayer989/.cache/dconf/user
/home/ghostslayer989/.wget-hsts
/home/ghostslayer989/Downloads/backup/back
/home/ghostslayer989/Downloads/backup/backup
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

Wait1ing
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: Virtualbox crash

Post by Cosmo. »

Strange output. What have kernels to do inside of your home?

To correct the ownership problems:
Mark the following command completely and make sure, that you do not miss any sign, than press ctrl-c

Code: Select all

find /home/$SUDO_USER ! -user $SUDO_USER -exec chown $SUDO_USER:$SUDO_USER '{}' \;
Open a terminal and enter

Code: Select all

sudo -i
and press the Enter-key; you get prompted for your password, enter it.
Now still in the same terminal press ctrl-shift-V
Run this command and wait until it has finished. It does not produce a readable output.
Press twice ctrl-d
Immediately log off and back into your account.
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

find: ‘-exec’ is not the name of a known user. i'll now do sudo -i
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

Did sudo -i logged in and out. now what does that do.
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: Virtualbox crash

Post by Cosmo. »

It does what I wrote - but only, if you did it exactly as I described. You can check, if this has worked by repeating this command. It should now produce an empty output, otherwise you did something wrong.
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

Code: Select all

nf
/home/ghostslayer989/.config/trashrc
/home/ghostslayer989/kernel/linux-headers-4.13.5-041305_4.13.5-041305.201710050600_all.deb.1
/home/ghostslayer989/kernel/linux-headers-4.13.5-041305-generic_4.13.5-041305.201710050600_amd64.deb.1
/home/ghostslayer989/kernel/linux-image-4.13.5-041305-generic_4.13.5-041305.201710050600_amd64.deb.1
/home/ghostslayer989/.local/share/log-191917-05102017.txt
/home/ghostslayer989/.local/share/Emteria/Installer/rpi3-v0.2.4/boot.zip
/home/ghostslayer989/.local/share/Emteria/Installer/rpi3-v0.2.4/system.zip
/home/ghostslayer989/.local/share/Emteria/Installer/rpi3-v0.2.4/package.json
/home/ghostslayer989/.local/share/user-places.xbel
/home/ghostslayer989/.local/share/user-places.xbel.bak
/home/ghostslayer989/.local/share/user-places.xbel.tbcache
/home/ghostslayer989/pulseway_x64.deb
/home/ghostslayer989/.directory
/home/ghostslayer989/.git/objects/09/f370e38f498a462e1ca0faa724559b6630c04f
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/aa325bb97bab460abec54327639ca27b0f8c5fc4.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/817a251c75b4be3428527d19b8259a7ffbdd5c12.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/8f0060681e9a7ffb5c76d3d1d01ea6dee460a8da.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/bf90cc4ccab75bd1636084923937ff5348e6e107.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/fa742cc2c22721a65adb7a25fd912ffccb5c89fa.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/30168ad71bc983e588736a85f1fba358617130d9.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/2bd4883bf028732589057c45ec79a9cf0fc324ec.qmlc
/home/ghostslayer989/.cache/Emteria/Installer/qmlcache/2fa2a6c8c2df56a7932cf8b7368b907b95cf99c7.qmlc
/home/ghostslayer989/.cache/thumbnails/normal/f0e97816eb2b3b58e3e59b023dcd0d4b.png
/home/ghostslayer989/.cache/dconf/user
/home/ghostslayer989/.wget-hsts
/home/ghostslayer989/Downloads/backup/back
/home/ghostslayer989/Downloads/backup/backup
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: Virtualbox crash

Post by Cosmo. »

Obviously no change. Read my advice very carefully and repeat it.
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

find: ‘-exec’ is not the name of a known user
find: ‘-exec’ is not the name of a known user
find: ‘-exec’ is not the name of a known user
find: ‘-exec’ is not the name of a known user
find: ‘-exec’ is not the name of a known user
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: Virtualbox crash

Post by Cosmo. »

You did not follow my advice precisely. Nobody can do it in a forum for you, you must do it yourself. The advice has been hundreds of times been tested and successfully executed by other users.
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

That list has been cleared but still crashing :p
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: Virtualbox crash

Post by Cosmo. »

Create in the host a fresh new user account, create inside of the nw account a new VM and test.

You still have not told, which OS you are running as guest.
mrmajik45

Re: Virtualbox crash

Post by mrmajik45 »

Screenfetch:
Locked

Return to “Virtual Machines”