wine
我一直在使用( )的开发版本wine-staging 9.21
进行音频制作。但是,我使用的软件似乎找不到wine
。这是我遇到的特定错误:
$ yabridgectl sync
Setting up VST2, VST3, and CLAP plugins using:
- /home/alex/.local/share/yabridge/libyabridge-chainloader-vst2.so
- /home/alex/.local/share/yabridge/libyabridge-chainloader-vst3.so
- /home/alex/.local/share/yabridge/libyabridge-chainloader-clap.so
Finished setting up 8 plugins (8 new), skipped 0 non-plugin .dll files
Error: Could not run 'wine', make sure Wine is installed
Caused by:
No such file or directory (os error 2)
系统信息:Ubuntu 24.04.01 LTS,在 Dell XPS 15 7590 上运行。
我之前一直在使用最新的开发版本,但由于一些问题,我需要从 v10 降级到 v9.21。我通过以下方式进行了降级
$ sudo apt-get install wine-staging-i386=9.21~noble-1 wine-staging-amd64=9.21~noble-1
$ sudo apt-get install wine-staging=9.21~noble-1
当我跑步时whereis
,我能找到它
$ whereis wine
wine: /usr/lib/x86_64-linux-gnu/wine /usr/lib/wine /usr/share/wine /opt/wine-staging/bin/wine
当我在命令行中运行时wine
,计算机找不到它——它正在一个不存在的地方寻找。
$ wine --version
bash: /usr/bin/wine: No such file or directory
$ ls /usr/bin/wi*
/usr/bin/winicontopam /usr/bin/winicontoppm /usr/bin/wireplumber /usr/bin/wish /usr/bin/wish8.6
看起来该/opt
位置确实存在:
$ /opt/wine-staging/bin/wine --version
wine-9.21 (Staging)
我该怎么办?我应该在 中指定什么吗apt-get
?只需添加一个符号链接吗?