我正在从这里开始在LinuxUbuntu20.04上安装Ultimaker Cura 3D打印机切片程序(https://github.com/Ultimaker/Cura/releases/tag/5.1.0)。
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发布于 2022-08-01 03:24:11
根据cura-installer.yml文件,它们都是相同的AppImage,但是一个是使用Ubuntu20.04构建的,另一个是使用Ubuntu22.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-modern的所有最新提到:https://github.com/Ultimaker/Cura/search?q=linux-modern
尽管它是一个AppImage,但这通常是为了防止glibc和其他库的ABI更改而产生的问题。我建议运行普通的AppImage,因为在最古老的LTS上构建对于大多数软件来说是非常普遍的;Cura提供一个“现代”的构建是规范的一个很大的例外。只有在遇到困难的时候,才能运行“现代”建筑。
发布于 2022-10-04 00:20:51
首先尝试modern,如果不起作用,那么使用另一个。
Debian 11 / Devuan Chimera无法使用此错误运行现代文件,这不会造成任何损害:
[29776] Error loading Python lib '/tmp/.mount_Ultimae7Etxc/libpython3.10.so.1.0': dlopen:
/lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.35' not found (required by
/tmp/.mount_Ultimae7Etxc/libpython3.10.so.1.0)但是另一个appimage文件运行得很完美。
https://unix.stackexchange.com/questions/711975
复制相似问题