我想在WindowsServer-2022上运行一个Linux Docker容器,而不需要登录到Windows并启动Desktop。我成功地创建了。但是在那里我不能创建Linux容器。错误消息:
docker: image operating system "linux" cannot be used on this platform.
当码头作为Windows运行时,我不能用dockerCLI来改变引擎,或者我也不知道怎么做。为我的Windows更改引擎,但不更改Windows。在我的Windows用户上,我可以毫无问题地运行Linux容器。
我的问题是:不需要登录Windo
我最近运行了conda update --all,现在每当我打开一个新的终端时,都会看到下面的错误行:
ERROR: This cross-compiler package contains no program /bin/x86_64-conda_cos6-linux-gnu-addr2line
ERROR: activate-binutils_linux-64.sh failed, see above for details
ERROR: This cross-compiler package contains no program /bin/x86_64-conda_cos6-linux
我第一次尝试使用BuildYourOwnKernel指南安装内核。要下载一些包,我运行了以下命令:
sudo apt-get build-dep linux linux-image-$(uname -r)
Reading package lists... Done
Picking 'linux-signed-hwe-5.13' as source package instead of 'linux-image-5.13.0-30-generic'
E: Unable to find a source package for linux-image-5.13.0-
我运行了sudo apt-get upgrade,我得到了这个:
The following packages have been kept back:
linux-generic-hwe-16.04 linux-headers-generic-hwe-16.04 linux-image-generic-hwe-16.04 linux-signed-generic-hwe-16.04 linux-signed-image-generic-hwe-16.04
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
我担
我有一个运行在linux上的c程序。在关闭终端后,我在后台应用了一些命令来运行进程。
1. Pause program with `Ctrl-Z`,
2. Pull it into the background with `bg`
3. Then disown it.
现在我想看看这个仍在运行的程序的控制台输出。
在linux中怎么做?