我将xampp zip复制到桌面上,并在终端中执行此操作:
sudo tar xvfz xampp-linux-1.5.3a.tar.gz -C /opt
当我试图安装xampp时,我得到了这个
error tar (child): xampp-linux-1.5.3a.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exitin
我试过命令:
tar -xjvf FileZilla_3.7.1.1_*-linux-gnu.tar.bz2
发出此命令后,获取以下错误:
tar (child): FileZilla_3.7.1.1_*-linux-gnu.tar.bz2: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
我该怎么办?
我正在尝试安装xampp 1.8.2-1-installer.在32位Ubuntu操作系统上运行.当我从根输入时
sudo tar xvfz xampp-linux-1.8.2.tar.gz -C /opt
tar (child): xampp-linux-1.8.2.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: child returned status 2
tar: Error is not recoverable: exitin
我正试图在我的计算机上安装linux,它一直运行顺利,直到我输入以下命令
curl https://chrx.org/ | sudo tar xzfc - /usr/local && chrx
tar: You may not specify more than one '-Acdtrux', '--delete' or '--test-label' option
所以我试着移除x,然后c,然后两者
tar: Refusing to write archive contents to terminal (missing -f o
我想在dotnet核心图像中集成python,因为我需要执行python脚本。当我执行这个DockerFile时,创建了很多悬空的图像。 Dangling Images 另外,有没有合适的方法来集成python解释器?例如,我将在.net核心容器中获取一个URL,然后将该URL传递给python容器。我们怎样才能完成这个任务呢?我是Docker的新手。 FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
RUN apt-get update && apt-get install -y --no-
在项目的上下文中,我必须在Docker容器中运行sbt应用程序。这就是为什么我创建了一个Dockerfile,但当我尝试构建容器时,我得到了一个错误,但我不明白为什么。
我的代码如下所示:
FROM centos:latest
RUN curl -LO "https://nodejs.org/dist/latest/node-v10.7.0-linux-x64.tar.gz" && tar -xzf node-v10.7.0-linux-x64.tar.gz -C /usr/local --strip-components=1 && rm n
我的容器有以下Dockerfile:
FROM centos:centos7
# Install software
RUN yum -y update && yum clean all
RUN yum install -y tar gzip wget && yum clean all
# Install io.js
RUN mkdir /root/iojs
RUN wget https://iojs.org/dist/v1.1.0/iojs-v1.1.0-linux-x64.tar
我正在尝试将7下载并安装到我的Ubuntu机器上。我已经从Oracle下载了该文件(JDK-7u25-Linux64.tar.gz),但是当我尝试使用tar -xvf jdk-7u25-linux-x64.tar.gz解压缩该文件时,会得到以下错误:
tar: jdk-7u25-linux-x64.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
我做错什么了吗?如果不是,我该怎么解决呢?
我是Linux中的新手,当我想要解压缩satrap文件夹中的tar文件时,我会得到以下错误:
You may not specify more than one `-Acdtrux' or `--test-label' option
Try `tar --help' or `tar --usage' for more information.
我在Linux中编写了这个命令:
tar -xf satrap.tar.gz -c /satrap_dir
请帮帮我。
我正在尝试将tar.gz文件夹解压缩到一个新的目标中,但是它会引发以下错误?如何在Linux命令中进行更改以提取这些文件夹。
$ tar -zxvf IUS17.05_g311_lnx86_GPLV3_N20170504.tar.gz /cad/local/apps/cadence/xcelium
tar: /cad/local/apps/cadence/xcelium: Not found in archive
tar: Exiting with failure status due to previous errors
我试图提取下载文件夹中的某个文件,给我的说明如下:
在终端中键入以下内容,它将被执行
tar -xvJf tor-browser-linux32-3.6.2_enUS.tar.xz
但是,当我在终端中输入它时,它会产生错误:
tar (child): tor-browser-linux32-3.6.2_enUS.tar.xz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is
下面是关于在linux系统中安装Eclipse的文章。如何安装月食?
我提取了eclipse.tar.gz
sudo -i
cp -r eclipse /opt
在第三步,我得到了这个错误。
cp: cannot stat `eclipse': No such file or directory
tar文件的真实名称是eclipse-standard-kepler-SR1-linux-gtk.tar.gz,我将其重命名为eclipse.tar.gz
我做错什么了?谢谢。
我卸载了xampp并尝试重新安装它,但是当试图将它解压缩到/opt目录时,我得到以下错误:
$ sudo tar -xzf xampp-linux-1.8.3-2-installer.run.tar.gz -C /opt
tar (child): xampp-linux-1.8.3-2-installer.run.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is n
刚开始使用Linux并练习使用不同的命令,作为一个学习练习,我试图将一个文件附加到我使用以下命令创建的名为"test.tar“的tar存档中:
tar rvf test.tar newfile
它返回了错误:
tar: newfile: Cannot stat: No such file or directory
tar: Exiting with failure status due to previous errors
我也试过:
tar -rvf test.tar newfile
结果是一样的。
我正在审查linux脚本,这些脚本旨在对目录进行逐时备份,并将备份复制到另一台服务器。脚本由cron运行。它们都遵循如下相同的通用代码路径:
cd /path/to/parent/directory
tar -zcvf data_backup.tar.gz data
sleep 10
# scp file to server
我想知道sleep 10命令的原因是什么。我知道这会使这个过程停止10秒,但是为什么作者会把这个放在第一位呢?我假设在完成tar命令之后,文件将被正确地刷新到磁盘,scp命令可以在没有错误的情况下执行。
这些脚本运行在CentOS 6& CentOS 7系统上。写
我一直在尝试安装这个软件,但是这里没有我一直试图运行的命令。
eli-Inspiron-530 Downloads # tar -zxvf M3D-Linux-1.5.0.70.tar.gz
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors
任何帮助都是很好的,这里还有评论http://printm3d.com/files/software/linux/M3D-Linux-1.5.0.70.
我试图在我的Ubuntu13.04上安装xammpp。我所做的是从SourceForge下载xampp,然后在终端中创建如下/opt目录:
mkdir /opt
sudo tar xvfz xampp-linux-1.8.1.tar.gz -C/opt
这个错误会显示:
tar (child): xampp-linux-1.8.1.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: E
我正在尝试使用使用其他程序的Linux版本的程序。我在bash中运行了以下代码:
c3dpath=$( command -v c3d )
if [[ -z "${c3dpath}" ]]; then
echo "Command c3d was not found. Downloading and installing software to ${SCRIPTPATH}/depends/c3d. Path will be added to PATH environment variable."
mkdir -p "${SCRIPTPATH}
嗨,我已经建立和安装ziftrCoin钱包在一个ubuntu的形象。
8084e9de3c23 ubuntu:latest "/bin/bash" 25 hours ago Up About a minute 0.0.0.0:10332->10332/tcp ziftrCoin
问题是在我退出容器后,ziftrcoind就关闭了。尝试运行docker exec -it ziftrCoin /root/64/./ziftrcoind程序启动,但我会连接到容器。如果我退出也会有同样的问题。
因此,当我用"ziftrCoin /root/64/./ziftrcoin
大家好,我试着安装IB软件,但我面临一个问题,我不知道是什么!!
这里的安装过程:
从下载TWS
chmod u+x tws-最新-linux-x64.sh
./tws-最新-linux-x64.sh
面对的错误:
No suitable Java Virtual Machine could be found on your system.
Downloading JRE with wget ...
--2017-11-11 13:26:12-- https://download2.interactivebrokers.com/installers/jres/linux-