Questions tagged [multipass]

73 questions
1
vote
1 answer

How to view live file system of Multipass VM using LXD driver externally?

I am using Canonical's Multipass on a Raspberry Pi with LXD driver to start virtual machines (VMs). Given my configuration, I need to view real-time changes/updates happening in the virtual machine on the host, i.e. externally from the virtual…
1
vote
1 answer

How to run custom install commands/scripts with cloudinit

I am running multipass with cloudinit and I have a bash script which I need to run after the VMs have been deployed once but for each user account. It has simple commands in it mostly for customising vim and bash.rc. How can I achieve this? I tried…
1
vote
0 answers

is there an option to update multipass image version

i am using multipass (version 1.6.2) to launch ubuntu instances. when looking at multipass find output, it lists the version of each image. $ multipass find Image Aliases Version Description snapcraft:core18 …
Mr.
  • 9,429
  • 13
  • 58
  • 82
1
vote
1 answer

Kubernetes: Skaffold with Multipass

I'm developping an application which is splitted in 15 micro services. I've been using Minikube with skaffold for development. Now, I want to migrate to multipass nodes. Is it possible to use skaffold with multipass on Ubuntu 18.04 ?
T00rk
  • 2,178
  • 3
  • 17
  • 23
1
vote
0 answers

Which BI tools can easily generate correct queries when combining multiple fact tables on shared dimensions?

When combining multiple fact tables using shared dimensions you need to use a drill-across query or a multi-pass query to get the correct results. I'm looking for a BI tool that does this correctly based on recognising which tables are fact tables…
1
vote
3 answers

Multipass timing out on ssh

I made a multipass server with ssh and it says it timed out. I'm using the ipv4 they supplied me, and openssh is already installed
roan
  • 21
  • 1
  • 3
1
vote
1 answer

WebGL drawBuffer outputs black textures

I am trying to write simple webgl multipass program with the help of drawBuffers. I create 2 drawBuffer textures and assign color to them in fragmentShaderPass1. Texture1 should be green and Texture2 should be brown. Then I pass these textures as a…
royalBlue
  • 95
  • 3
  • 9
1
vote
2 answers

OpenGL glDrawBuffer and glBindTexture

I'm still new on opengl3 and I'm trying to create a multipass rendering. In order to do that, I created FBO, generated several textures and attached them to it with unsigned index_col = 0; for (index_col = 0; index_col < nbr_textures; …
Raph Schim
  • 528
  • 7
  • 30
1
vote
0 answers

Decrypting the Multipass

I want to use Multipass to implement SSO between two PHP websites. I have found a function to generate multipass at following link: https://github.com/rps-repo/Redmine-PHP-MultiPass/blob/master/multipass.php I have used the following function to…
Rajat Varlani
  • 456
  • 1
  • 4
  • 19
1
vote
2 answers

How do you add light with multiple passes in OpenGL?

I have two functions that I want to combine the results of: drawAmbient drawDirectional They each work fine individually, drawing the scene with the ambient light only, or the directional light only. I want to show both the ambient and directional…
Curyous
  • 8,716
  • 15
  • 58
  • 83
1
vote
1 answer

OpenGL: Multipass Rendering using Frame Buffer Objects

While developing a small 2D engine, I stumbled across a little design problem which I'm unfortunately with my level of knowledge unable to solve without the help of you. Let me explain: The game I'm developing the 2D engine for should contain…
cafaxo
  • 187
  • 8
1
vote
1 answer

Multi-pass shading using render-to-texture

I'm trying to implement a multi-pass rendering method using OpenSceneGraph. However, I'm not entirely certain my problem is theoretical or due to a lack of applied knowledge of OSG. Thus far, I've successfully implemented multi-pass shading by…
Joel Graff
  • 239
  • 6
  • 14
0
votes
0 answers

How to setup Multipass VM on Mac and integrate it with Vscode for running Linux remotely

I recently mailed my TA on how to setup Linux on a Mac for a Computer Systems course to which I received the steps highlighted below- (I am stuck in the 6th and 7th step) I have some idea of what is happening like Multipass is used to create a…
SilianRail
  • 29
  • 4
0
votes
0 answers

How do I pass environment variables into a multipass INSTANCE?

So I have a token on my mac: export T1=K10a9440xua4 Which I want to make into a variable INSIDE a multipass container with: multipass exec test-multipass8660 -- sh -c "export TVAR=$T1" But when I run the following I get nothing: multipass exec…
Mark Wagner
  • 1,011
  • 6
  • 11
0
votes
1 answer

How to set flutter version in snapcraft.yaml?

My application is developed based on flutter3.3.10 version. I build and publish it as a Linux application to the Snap Store, but using the snapcraft command will automatically download the latest version of flutter. How do I set the flutter…