Questions tagged [crostini]

Linux application support on Chrome OS

Crostini is the umbrella term for making Linux application support easy to use and integrating well with Chrome OS. It largely focuses on getting you a Terminal with a container with easy access to install whatever developer-focused tools you might want.

27 questions
0
votes
0 answers

Without unset, compiling GCC on Crostini fails with unknown spec function: dumps

If I want to try some new features of GCC (tip from the GCC git repo, and also Release 12.2) on my Ubuntu (22.10) machine I often use: unset LIBRARY_PATH CPATH C_INCLUDE_PATH PKG_CONFIG_PATH CPLUS_INCLUDE_PATH INCLUDE LD_LIBRARY_PATH ../configure…
user2023370
  • 10,488
  • 6
  • 50
  • 83
0
votes
1 answer

Simple GStreamer Program Error on Crostini Debian

I'm following the "Hello World" GStreamer tutorial from here. I first installed GStreamer via sudo apt-get install libgstreamer1.0-dev, and I compile the program using g++ -Wall gstreamer-hello-world.cpp $(pkg-config --cflags --libs gstreamer-1.0)…
user2023370
  • 10,488
  • 6
  • 50
  • 83
0
votes
0 answers

Is there a way to install unity on Ubuntu without using Unity Hub?

I am trying to install Unity on my Chromebook, and UnityHub running on Crostini doesn't show the full size of my removable media. I've tried to install the binary from the archive website but I don't know what to do next. I tried to run it and got…
0
votes
1 answer

vs code not installing on Chromebook

I was trying to install vs code on Chromebook with Linux but i get it off the website and go into the file and it says "apt is not install able" and things like it for about five rows of text I hope someone knows the answer.
0
votes
1 answer

I'm getting an error when installing Vue.js 3 on Chrome OS

I'm trying to use Vue.js 3 on Chrome OS (64-bit, v99) using code-server, using the official Vue installation guide, but when I run npm init vue@latest I get the following error: user@penguin ~/vue-project> npm init…
0
votes
0 answers

fatal IO error 11 (Resource temporarily unavailable) on X server ":0"

I'm unable to get Linux GUI apps to run on my self-built CloudReady workstation. I have a Pixelbook Go where I am able to use Linux GUI apps without a problem. Steps Immediately After Enabling Linux and Starting Terminal jacob@penguin:~$ sudo apt…
Jacob Zwang
  • 71
  • 1
  • 4
0
votes
1 answer

How can I detect the active window in Crostini?

I would like to programmatically detect the active window, and its meta data -- like app name and title -- in Chromebook's Linux Crostini. Does anyone know how this can reliably be done? FWIW, I've already tried the following three methods in python…
gcdev
  • 1,406
  • 3
  • 17
  • 30
0
votes
2 answers

How to take screenshot of Chromebook in Linux command-line?

In Linux on my Chromebook, I am trying to take a screenshot using the command line, but nothing seems to be working. I have tried ImageMagick... sudo apt-get install imagemagick import -window root filename.png # "unable to read X window image…
gcdev
  • 1,406
  • 3
  • 17
  • 30
0
votes
1 answer

Crostini View Localhost On Another Computer

I want to run a live server on crostini and access it on another computer so I can see the website as I develop it. How can I accomplish this? Is there a way I can expose localhost as long as I’m on the same WiFi?
Michael
  • 127
  • 1
  • 13
0
votes
1 answer

Django runserver on Chromebook (Crostini)

I'm using a Chromebook HP 11 G5 EE and try to develop with Django. I use Crostini (Linux terminal into Chrome OS with no developper mode). I've created a virtualenv inside my home directory and installed with pip all my requirements. When I try to…
Arthur C-G
  • 1,481
  • 4
  • 16
  • 23
-1
votes
1 answer

running .x86_64 file on linux chromebook returns error: no such file or directory

I am trying to run a linux game on my chromebook(the game can be found here https://bitbrain.itch.io/cave/download/eyJleHBpcmVzIjoxNjM3MjU1OTkwLCJpZCI6NzExNTc5fQ%3d%3d.hggqT%2fhX%2bV6ybeo2kdXBWZa4xCQ%3d) I have executed the following commands: sudo…
-4
votes
1 answer

Hello, I am getting some errors unknown to me in Python for my Program, I have explained everything below

I wanted to make a Audio Transcriber(as a base) in Python for my Chromebook. I wanted to upgrade it to a Chatbot too later so I want to keep it as simple as possible. Here is the code: import speech_recognition as sr r =…
1
2