web-dev-qa-db-ja.com

Ubuntu 18.04にCarlaをインストールできません

これは本当に馬鹿げた質問に見えるかもしれませんが、私は自分でそれを理解することはできません。

Ubuntu 18.04 LTS(64ビット)に Carla をインストールできません。 Carlaをインストールする方法は3つありますが、私にとってはまだ機能していません。

  1. ダウンロードページのレポートでDebian/Ubuntuを押す:

    carla-gitが見つかりませんでした。

    ところで: kxstudio repo がインストールされています。

  2. プリコンパイルされたバイナリは、chmod +x Carla && chmod +x CarlaConfigの後にエラーを報告します。

    $ ./Carla
    Carla: loadlocale.c:130: _nl_intern_locale_data:
      Assertion `cnt < (sizeof (_nl_value_type_LC_TIME) / sizeof (_nl_value_type_LC_TIME[0]))' failed.
    Aborted (core dumped)
    
  3. ソースからのビルドはインストール可能です。しかし、開こうとすると、何も表示されません。

私はたぶん1つの解決策に固執するべきですが、私は今、どの道を取るべきか本当に混乱しています。

Edit 2:kxstudioリポジトリを新しくクリーンインストールしました。ここに私の出力があります(関連する部分を抽出しました)

Sudo apt update


Hit:1 http://ppa.launchpad.net/kxstudio-debian/ubuntus/ubuntu bionic InRelease
Reading package lists... Done
Building dependency tree       
Reading state information... Done
All packages are up to date.

その後、カーラをインストールしよう:

Sudo apt install carla-git
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package carla-git
2
Sir hennihau

最初に試してください:

Sudo apt update

その後

Sudo apt install carla-git
1
fernandezr

Ubuntu 18.04にCarlaを正常にインストールしました。方法は次のとおりです。

  1. http://kxstudio.linuxaudio.org/Repositories に移動して、kxstudio-repos.debパッケージをインストールします。 CarlaのKXStudioリポジトリが必要です。
  2. これで http://kxstudio.linuxaudio.org/Applications:Carla に移動し、Debian/Ubuntu(KXStudioリポジトリ経由)リンクをクリックしてCarlaをインストールできます。

UbuntuでWindows VSTファイルを機能させようとしている場合、このビデオが役に立ちました: https://www.youtube.com/watch?v=PiaWozQ69eE

0
MickTravels

私は過去にkxstudioリポジトリ、特にCarlaのバンドル版で問題に遭遇しました。したがって、Githubリポジトリから実際のリリースファイルの最新バージョンをここからダウンロードします。

https://github.com/falkTX/Carla/releases

これを書いている時点での最新リリース(Carla_2.0-RC2-linux64.tar.xz)は、標準のUbuntu 18.04とUbuntu Studio 18.04の両方で非常にうまく機能しています。さらに、WindowsベースのVSTファイルを18.04(wine-3.0)に同梱されている標準バージョンのWineでロードするために正常に使用しています。

Ubuntuのバージョンを証明するには:

 $ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.1 LTS"

そして、コマンドラインで起動した場合の「./Carla」の出力は次のとおりです。

$ ./Carla
Carla self-contained executable 1.9.11 (2.0-RC1), based on UnZipSFX.
Launching: '/tmp/carla/carla'
LRDF Support disabled for static build (LADSPA-RDF will be disabled)
Carla 1.9.12 (2.0-RC2) started, status:
  Python version: 3.2.3
  Qt version:     4.8.7
  PyQt version:   4.9.1
  Binary dir:     /tmp/carla
  Resources dir:  /tmp/carla/resources
libjack.so.0 loaded sucessfully!
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jackdmp 1.9.12
Copyright 2001-2005 Paul Davis and others.
Copyright 2004-2016 Grame.
Copyright 2016-2017 Filipe Coelho.
jackdmp comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details
no message buffer overruns
no message buffer overruns
no message buffer overruns
JACK server starting in realtime mode with priority 10
self-connect-mode is "Don't restrict self connect requests"
audio_reservation_init
Acquire audio card Audio0
creating alsa driver ... hw:PCH|hw:PCH|512|2|44100|0|0|nomon|swmeter|-|32bit
configuring for 44100Hz, period = 512 frames (11.6 ms), buffer = 2 periods
ALSA: final selected sample format for capture: 32bit integer little-endian
ALSA: use 2 periods for capture
ALSA: final selected sample format for playback: 32bit integer little-endian
ALSA: use 2 periods for playback

これが役立つことを願っています!

0
Jan Henkins