Blog: 2024-10-02: Difference between revisions

From razwiki
Jump to navigation Jump to search
(Created page with "Had good luck with unpinning libheif and ffmpeg. Maybe it had to do with my jank PKG_CONFIG_PATH. Also spent a while doing random upgrades, trying to get zenity installed so winetricks would have a gui, and eventually succeeding. Still can't run my 3d game in wine but crossover could actually run it fine immediately. Then I tried to upgrade podman, and got a simple "not supported on this version of macos" error. Checking the brew definition took me to https://github.c...")
 
No edit summary
Line 40: Line 40:
man/podman-machine-default-gvproxy.sock"
man/podman-machine-default-gvproxy.sock"
</pre>
</pre>

Also learned this ruby debugger, works in homebrew without any dependencies

binding.irb

Revision as of 15:42, 2 October 2024

Had good luck with unpinning libheif and ffmpeg. Maybe it had to do with my jank PKG_CONFIG_PATH. Also spent a while doing random upgrades, trying to get zenity installed so winetricks would have a gui, and eventually succeeding. Still can't run my 3d game in wine but crossover could actually run it fine immediately.

Then I tried to upgrade podman, and got a simple "not supported on this version of macos" error. Checking the brew definition took me to

https://github.com/containers/podman/issues/22121

I was able to compile podman locally anyways, but I got seemingly a different error when starting the podman machine with the 5.x development version:

podman $ ./bin/podman run -it debian
Cannot connect to Podman. Please verify your connection to the Linux system using `podman system conn
ection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VM
Error: unable to connect to Podman socket: failed to connect: dial tcp 127.0.0.1:53473: connect: conn
ection refused
podman $ ./bin/podman system connection list
Name                         URI                                                         Identity    
                              Default     ReadWrite
podman-machine-default       ssh://[email protected]:53473/run/user/501/podman/podman.sock  /Users/razzi
/.ssh/podman-machine-default  true        false
podman-machine-default-root  ssh://[email protected]:53473/run/podman/podman.sock           /Users/razzi
/.ssh/podman-machine-default  false       false
podman $ ./bin/podman machine start
Error: podman-machine-default: VM does not exist
podman $ ./bin/podman machine init
Looking up Podman Machine image at quay.io/podman/machine-os:5.3 to create VM
Getting image source signatures
Copying blob f085ce46599f done   | 
Copying config 44136fa355 done   | 
Writing manifest to image destination
f085ce46599f3cd707f707097f4261ca24ccb2b26bbfd738baf60ab9cea3ca47
Extracting compressed file: podman-machine-default-amd64.raw: done  
Machine init complete
To start your machine run:

        podman machine start

podman $ ./bin/podman machine start
Starting machine "podman-machine-default"
Error: unable to connect to "gvproxy" socket at "/var/folders/7v/b0z6dsqj1fx8k5rf8x121l580000gn/T/pod
man/podman-machine-default-gvproxy.sock"

Also learned this ruby debugger, works in homebrew without any dependencies

       binding.irb