linux中no such job是什么意思

来源:百度知道 编辑:UC知道 时间:2024/07/04 06:49:46
比如说configuer命令
还有tar
[root@localhost squid-2.5.STABLE14]# tar -xzvf squid-2.5.STABLE14.tar.gz
tar: squid-2.5.STABLE14.tar.gz:无法 open: 没有那个文件或目录
tar: 错误不可恢复:现在退出
tar: Child returned status 2
tar: 由于前面延迟的错误而退出
[root@localhost squid-2.5.STABLE14]# tar xzvf squid-2.5.STABLE14.tar.gztar: squid-2.5.STABLE14.tar.gz:无法 open: 没有那个文件或目录
tar: 错误不可恢复:现在退出
tar: Child returned status 2
tar: 由于前面延迟的错误而退出
[root@localhost squid-2.5.STABLE14]# tar xzvf squid-2.5.STABLE14.tar.gz
tar: squid-2.5.STABLE14.tar.gz:无法 open: 没有那个文件或目录
tar: 错误不可恢复:现在退出
tar: Child returned status 2
tar: 由于前面延迟的错误而退出
[root@localhost squid-2.5.STABLE14]# % ./configure --prefix=/usr/local/squid
bash: fg: %: no such job
[root@localhost squid-2.5.STABLE14]# % make all
bash: fg: %: no such job
[root@localhost squid-2.5.STABLE14]# % make
bash: fg: %: no such job
[root@localhost squid-2.5.STABLE14]# configure
bash: configure

> [root@localhost squid-2.5.STABLE14]# tar -xzvf squid-2.5.STABLE14.tar.gz
> tar: squid-2.5.STABLE14.tar.gz:无法 open: 没有那个文件或目录

意思是,你要打开的那个压缩包 squid-2.5.STABLE14.tar.gz
不在当前目录里。对此你可以用
ls -l squid-2.5.STABLE14.tar.gz
看看。
因为我看到你的prompt是[root@localhost squid-2.5.STABLE14]# ,
那么,可以想象,squid-2.5.STABLE14.tar.gz是在上一级目录里,你可以用ls -l ../squid-2.5.STABLE14.tar.gz 查看。

没有这个程序。