UltiMaker uses functional, analytical and tracking cookies. Tracking cookies enhance your experience on our website and may also collect your personal data outside of Ultimaker websites. If you agree with the use of tracking cookies, click “I agree, continue browsing”. You can withdraw your consent at any time. If you do not consent with the use of tracking cookies, click “Refuse”. You can find more information about cookies on our Privacy and Cookie Policy page.
Running Linux on a Chromebook is more of a "Google wants you to be able to run Android Studio" thing than a "Google wants you to use this as a daily driver" thing so they're not too concerned about making changes which might break other things. I'm pretty sure the Linux development environment that gets installed on a Chromebook is based on Debian (or one of its children). If I'm wrong then these commands will do nothing (probably just give give you an error about not being able to find apt) so not really going to cause any harm (other than me having to do more research).
First, the simple: just try downloading the appimage for another version of Cura (5.3.1 is a good choice) and see if that works. If not, some more advanced troubleshooting:
Let's try reinstalling the package it seems to have a problem with (assuming it's installed in the first place, it might have had just libraries needed, in which case there should be no harm installing it)
apt update
sudo apt reinstall xcb
That will fetch a list of the latest packages available, then reinstall the one that's causing the error. It sounds like it might be outside of the system's PATH environment variable, but I don't know, I don't use Linux on my Chromebook much. Anyway, try that, reboot, try Cura again. If that doesn't work, let's go for the kitchen sink approach. Run these commands:
apt update
sudo apt reinstall *xcb*
That will (again) make sure we have the latest list of packages and then it will reinstall (or install if missing, which a lot of them might be) anything with "xcb" in its name. Reboot, run Cura again. See if it works.
Whether or not it works, it'll probably leave you with stuff you don't need installed. Clean it up with this:
sudo apt --purge autoremove
That just uninstalls any packages you don't need (and deletes any configuration files they might have made and their downloads from the package cache). If the system is wrong about you not needing something and it breaks, just run sudo apt reinstall *xcb* again.
Unfortunately if all that doesn't work... I'm out of ideas for now. I don't really have an equivalent setup to you (my Chromebook is arm64 so a lot of packages aren't available or need to be compiled from source, and on my desktop I'm rocking openSUSE Tumbleweed).
P.S. You don't need to run ls before you run Cura. All that does is list files in the current directory. Just type ./Ultimaker and press tab (which should autocomplete the filename, or if you have more than one file that starts with that, keep pressing tab until it comes up with the right one).
Thank you for your insight. I downloaded the newest Cura again, made it a file that I could open, and once again it crashed after i opened it. After it crashed i went to the terminal and saw the following message:
And so I tried the:
apt update
sudo apt install xcb
multiple times, here is the result:
after that i tried to run both versions of cura. For the old one, still had the same core dumped message. For the new one, still crashed almost immediately. Next I tried the
apt update
sudo apt reinstall *xcb*
which opened up a long list, asked me if I could download some packages, which I replied "Y" to. At this point i was feeling optimistic, but after it took a while to download it said I had no space. I was planning on re sizing my disk and checking storage management, but decided to try my new cura one more time (It's 5.4.0 BTW). As usual it loaded, and I tried to open a file, it failed. I opened it one more time, but instead of pressing the folder icon I went to File > Open Recent and was actually able to load a file. It sliced and in theory I should be fine. I would prefer a permanent fix, but this temporary solution will have to do for now. Thanks again, I really appreciate your effort I wasn't expecting a response, I'm impressed. Thank you.
Edited by WylieM accidentally saved early.
Link to post
Share on other sites
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
The full stable release of UltiMaker Cura 5.4 is here and it makes it easier than ever to remove brims and supports from your finished prints. UltiMaker S series users can also look forward to print profiles for our newest UltiMaker PET CF composite material!
Recommended Posts
Slashee_the_Cow 22
Running Linux on a Chromebook is more of a "Google wants you to be able to run Android Studio" thing than a "Google wants you to use this as a daily driver" thing so they're not too concerned about making changes which might break other things. I'm pretty sure the Linux development environment that gets installed on a Chromebook is based on Debian (or one of its children). If I'm wrong then these commands will do nothing (probably just give give you an error about not being able to find apt) so not really going to cause any harm (other than me having to do more research).
First, the simple: just try downloading the appimage for another version of Cura (5.3.1 is a good choice) and see if that works. If not, some more advanced troubleshooting:
Let's try reinstalling the package it seems to have a problem with (assuming it's installed in the first place, it might have had just libraries needed, in which case there should be no harm installing it)
apt update
sudo apt reinstall xcb
That will fetch a list of the latest packages available, then reinstall the one that's causing the error. It sounds like it might be outside of the system's PATH environment variable, but I don't know, I don't use Linux on my Chromebook much. Anyway, try that, reboot, try Cura again. If that doesn't work, let's go for the kitchen sink approach. Run these commands:
apt update
sudo apt reinstall *xcb*
That will (again) make sure we have the latest list of packages and then it will reinstall (or install if missing, which a lot of them might be) anything with "xcb" in its name. Reboot, run Cura again. See if it works.
Whether or not it works, it'll probably leave you with stuff you don't need installed. Clean it up with this:
sudo apt --purge autoremove
That just uninstalls any packages you don't need (and deletes any configuration files they might have made and their downloads from the package cache). If the system is wrong about you not needing something and it breaks, just run sudo apt reinstall *xcb* again.
Unfortunately if all that doesn't work... I'm out of ideas for now. I don't really have an equivalent setup to you (my Chromebook is arm64 so a lot of packages aren't available or need to be compiled from source, and on my desktop I'm rocking openSUSE Tumbleweed).
P.S. You don't need to run ls before you run Cura. All that does is list files in the current directory. Just type ./Ultimaker and press tab (which should autocomplete the filename, or if you have more than one file that starts with that, keep pressing tab until it comes up with the right one).
Edited by Slashee_the_CowAdded P.S.
Link to post
Share on other sites
WylieM 0
Thank you for your insight. I downloaded the newest Cura again, made it a file that I could open, and once again it crashed after i opened it. After it crashed i went to the terminal and saw the following message:
And so I tried the:
apt update
sudo apt install xcb
multiple times, here is the result:
after that i tried to run both versions of cura. For the old one, still had the same core dumped message. For the new one, still crashed almost immediately. Next I tried the
apt update
sudo apt reinstall *xcb*
which opened up a long list, asked me if I could download some packages, which I replied "Y" to. At this point i was feeling optimistic, but after it took a while to download it said I had no space. I was planning on re sizing my disk and checking storage management, but decided to try my new cura one more time (It's 5.4.0 BTW). As usual it loaded, and I tried to open a file, it failed. I opened it one more time, but instead of pressing the folder icon I went to File > Open Recent and was actually able to load a file. It sliced and in theory I should be fine. I would prefer a permanent fix, but this temporary solution will have to do for now. Thanks again, I really appreciate your effort I wasn't expecting a response, I'm impressed. Thank you.
Edited by WylieMaccidentally saved early.
Link to post
Share on other sites