我想解压缩一个文件,我写了这个命令:
bunzip2 linux-source-4.15.0.tar.bz2
我得到了这个:
bunzip2: Input file linux-source-4.15.0.tar.bz2 is not a normal file.
我想知道到底是什么问题。
我运行了linux-source-4.15.0.tar.bz2文件,得到:
linux-source-4.15.0.tar.bz2: symbolic link to linux-source-4.15.0/linux-source-4.15.0.tar.bz2
我正在尝试使用apt-get。我运行以下命令
apt-get update
但我知道这个错误
Err http://all.repository.backtrack-linux.org revolution Release.gpg
Could not connect to all.repository.backtrack-linux.org:80
我试过命令:
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
我该怎么办?
我已经在SD卡上安装了linux,我使用以下命令安装了rootfs
tar xpjf rootfs.tar.bz -C /mnt/rootfs/
现在,我对rootfs做了一些更改,我想创建一个备份,我可以在上面的命令中使用,我尝试使用:
tar cpjf rootfs.tar.bz2 /mnt/rootfs
and
tar cpjf rootfs.tar.bz2 -C / mnt/rootfs
I also tried
tar cpjf rootfs.tar.bz2 /mnt/rootfs/*
并尝试:
cd /mnt/rootfs
tar -cvpjf rootfs.tar.bz2 --e
我有一个安装了Docker的CentOS 7.2虚拟机。Docker服务和Docker容器之前工作正常。但当我试图拉取docker映像时,VM突然关闭。重启虚拟机后,Docker服务无法启动: [root@AY13091717064020986bZ ~]# service docker start
Redirecting to /bin/systemctl start docker.service
Job for docker.service failed because the control process exited with error code. See "system
我正在尝试将我的angularjs应用程序部署到一个码头容器中:
myapp/web/Dockerfile
FROM node:latest
RUN mkdir /myapp
ADD . /myapp
WORKDIR /myapp
RUN npm install -g phantomjs-prebuilt
RUN npm install -g grunt-cli
RUN npm install -g grunt
RUN npm install -g bower
RUN npm install
RUN bower install --allow-root
RUN npm run v2
E
看起来Python2.6.1默认情况下并不从源代码编译bz2库。
我没有lib-dynload/bz2.so
添加它的最快方法是什么(不需要从头开始安装Python )?
OS is Linux 2.4.32-grsec+f6b+gr217+nfs+a32+fuse23+tg+++opt+c8+gr2b-v6.194 #1 SMP Tue Jun 6 15:52:09 PDT 2006 i686 GNU/Linux
IIRC我只使用了--prefix标志。
我按照以下步骤在我的Debian中安装GHDL编译器,但是现在我需要卸载这个编译器来安装x64版本,但我不能。
By downloading the binaries and unpacking them manually:
$ wget http://ghdl.free.fr/site/uploads/Main/ghdl-i686-linux-latest.tar
$ sudo tar xvf ghdl-i686-linux-latest.tar
(这将生成文件ghdl-0.29-i 686-pc-linux.tar.bz 2)
$ cd ghdl-0.29-i686-pc-lin
我在Ubuntu 16.04 LTS上有Anaconda 4.3.23。当我试图安装pydot软件包时,请使用
conda install pydot-ng
我得到以下错误:
UnsatisfiableError: The following specifications were found to be in conflict:
- pydot-ng -> python 2.7* -> openssl 1.0.1*
- python 3.6*
Use "conda info <package>" to see the dependencies for
我的问题是,我不明白为什么当我运行脚本时,如果我写"yes“或"no”,它总是说我正在退出脚本。我知道它不承认$reply和“是”是相等的,但是为什么呢?(我是bash编程的新手)。谢谢!
#!/bin/bash
clear
echo 'This script will install: Firefox 17.0.1 (language: enGB or itIT or enUS) and flash 11 in Firefox17.0.1, continue?'
read reply
if (( "$reply" = "yes"