English 中文(简体)
是否有办法在军械64安装防bian11的ongo。
原标题:Is there a way to install mongodb-tools on debian11 on arm64

I need to use a Docker image based on Debian 11, that runs on a Macbook M1 so on ARM64. In the Mongo download centre https://www.mongodb.com/try/download/bi-connector at "MongoDB Command Line Database Tools Download" there is no option for Debian-ARM64, only x86_64 Is it possible? Any alternatives?

增 编

Tried. In Dockerfile:

RUN wget -nv https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2004-arm64-100.7.0.deb && 
apt-get install --no-install-recommends -y ./mongodb-database-tools-ubuntu2004-arm64-100.7.0.deb && 
rm ./mongodb-database-tools-ubuntu2004-arm64-100.6.1.deb

<><0>

以下一揽子计划尚未满足需要:

mongodb-database-tools:arm64 : 
Depends: libc6:arm64 but it is not installable. 
                                
Depends: libgssapi-krb5-2:arm64 but it is not installable. 
                                
Depends: libkrb5-3:arm64 but it is not installable. 
                                
Depends: libk5crypto3:arm64 but it is not installable. 
                                
Depends: libcomerr2:arm64 but it is not installable. 
                                
Depends: libkrb5support0:arm64 but it is not installable. 
                                
Depends: libkeyutils1:arm64 but it is not installable. 
E: Unable to correct problems, you have held broken packages.  
问题回答

这可能有助于:

RUN curl -fsSL https://pgp.mongodb.com/server-6.0.asc | gpg -o /usr/share/keyrings/mongodb-server-6.0.gpg --dearmor 
    && echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-6.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-6.0.list 
    && apt-get update && apt-get install -y mongodb-org




相关问题
Eclipse for android on Debian Lenny

I have installed Eclipse on Debian Lenny after having installed java (apt-get install sun-java6-jre sun-java6-plugin sun-java6-jdk). When I run Eclipse, I have the following message when it comes to ...

Problem during JBoss Launch

I ve a problem with JBoss 3.2.6. When I try to launch it, I get this error. 09:19:22,449 ERROR [StatefulSessionContainer] Starting failed jboss.j2ee:jndiName=TypicalBean,service=EJB java.rmi....

debian package creating needed directories in preinst

I have the following debian structure: debian/usr/share/test debian/usr/share/test/test debian/usr/share/test/test/a debian/usr/share/test/test/b After building the package using dpkg-deb --build ...

About compiling Linux kernel in Debian Live

This is my first time compiling Linux kernel. I am using Debian Live. I used kernel-package to compile and I also added a new system call to return an arbitrary integer value greater than zero. ...

.deb package conffiles problem

I am distributing one of my applications using a .deb package, but have a problem relating to one of the files. The distribution includes a database file which is constantly updated by the app, on a ...

热门标签