どのAppImageをインストールする必要がありますか(.AppImageとmodern.AppImage)?

どのAppImageをインストールする必要がありますか(.AppImageとmodern.AppImage)?

ここからUltimaker Cura 3Dプリンタスライシングプログラムをインストールします(https://github.com/Ultimaker/Cura/releases/tag/5.1.0)をLinux Ubuntu 20.04に変更します。

  1. Ultimaker-Cura-5.1.0-linux-modern.AppImageこれらとそしての違いは何ですかUltimaker-Cura-5.1.0-linux.AppImage?どちらを使うべきですか?なぜ?彼らはどう違いますか?

私は持っていますまた、自分のフォーラムにこの記事を投稿しました。

アップデート:私と他の人にとって重要なインストール通知:

以下の許可された回答に従って、オペレーティングシステムに必要なAppImageをダウンロードして実行可能にしてください。その後、ファイルブラウザでダブルクリックして実行できます。

例:Linux Ubuntu 20.04にCuraをインストールする方法:

# download it
wget https://github.com/Ultimaker/Cura/releases/download/5.3.0/UltiMaker-Cura-5.3.0-linux.AppImage

# Make it executable
chmod +x UltiMaker-Cura-5.3.0-linux.AppImage

# Now run it. 
# Option 1: double-click the file in a GUI file manager
# Option 2: run it from the command-line:
./UltiMaker-Cura-5.3.0-linux.AppImage    # run in foreground
./UltiMaker-Cura-5.3.0-linux.AppImage &  # run in background

関連:

  1. 私の質問:.asc PGP署名ファイルを使用してpgp / gpg署名を確認または確認する方法は?

ベストアンサー1

~によるとcura-installer.ymlファイルどちらも同じAppImageですが、1つはUbuntu 20.04を使用してビルドされ、もう1つはUbuntu 22.04を使用してビルドされます。

include:
    - { os: macos-11, os_id: 'mac' }
    - { os: windows-2022, os_id: 'win64' }
    - { os: ubuntu-20.04, os_id: 'linux' }
    - { os: ubuntu-22.04, os_id: 'linux-modern' } # <==========

ここで最近述べたすべてのコンテンツをリポジトリから検索できますlinux-modernhttps://github.com/Ultimaker/Cura/search?q=linux-modern

これはAppImageですが、これは通常、glibcや他のライブラリへのABIの変更によって引き起こされる問題を回避するために行われます。ほとんどのソフトウェアは最も古いLTSに基づいて構築されるのが一般的であるため、通常のAppImageを実行することをお勧めします。 Curaが提供する「現代」ビルドは大きな例外です。問題がある場合にのみ「現代」バージョンを実行してください。

おすすめ記事