草庐IT

directory1

全部标签

linux - libpulse.so.0 : cannot open shared object file: No such file or directory

我在尝试安装服务器时遇到此错误。libpulse.so.0:无法打开共享对象文件:没有那个文件或目录我运行了一个ldd,并且有libpulse.so.0,但是脚本不支持它root@mas:~/Velneo-vServer#sudosh./vServer.sh-i./vServer:errorwhileloadingsharedlibraries:libpulse.so.0:cannotopensharedobjectfile:Nosuchfileordirectoryroot@mas:~/Velneo-vServer#ldd`whichpulseaudio`linux-vdso.so.

linux - 在 bash 脚本中查找命令导致目录出现 "No such file or directory"错误?

2014年3月21日更新所以我意识到我没有尽可能高效,因为我需要“清理”的所有磁盘都在/media下并命名为“disk1,disk2,disk3等”这是最终脚本:DIRTY_DIR="/media/disk*"find$DIRTY_DIR-depth-typed-name.AppleDouble-execrm-rf{}\;find$DIRTY_DIR-depth-typed-name.AppleDB-execrm-rf{}\;find$DIRTY_DIR-depth-typed-name.AppleDesktop-execrm-rf{}\;find$DIRTY_DIR-typef-na

Linux 狂欢 : Move multiple different files into same directory

作为一个相当新手的Linux用户,我似乎无法找到如何做到这一点。我正在尝试将一个目录中的所有唯一文件移动到另一个目录中。示例:$lsvehiclecar.txtbicycle.txtairplane.htmltrain.docx(morefiles)我想要车内的car.txt、bicycle.txt、airplane.html和train.docx。现在我通过单独移动文件来做到这一点:$mvcar.txtvehicle$mvbicycle.txtvehicle...如何在一行中完成此操作? 最佳答案 你可以做到mvcar.txtbi

linux - RTNETLINK 回答 : No such file or directory

当我运行这个命令时:tcqdiscadddeveth0rootredlimit51200000min128000max512000avpkt1024burst200ecnprobability0.5我明白了RTNETLINKanswers:Nosuchfileordirectory我已经为netfilters配置了内核,并且在menuconfig中配置了所有网络选项。我不明白为什么会出现这个错误。我正在使用iproute2-2.6.23和Fedora8。这在我的笔记本电脑上运行良好,但在我的台式电脑上运行不正常? 最佳答案 错误可能

linux - g++ conio.h : no such file or directory

我正在尝试使用g++编写一个程序,该程序使用conio.hheader。我实际上想做的是调用我在Borland编译器和Windows操作系统中使用的gotoxy函数。所以第一个问题是:在g++中是否有gotoxy函数或等效函数?第二:为什么我不能包含conio.h?我读了一些东西说我应该安装libstdc++包,我试过了,但似乎我已经有了它(它伴随着gcc)。 最佳答案 g++没有直接的等价物。conio.h特定于某些DOS编译器。但是你可以使用ncurses库来得到你想要的,它的功能与conio.h中的类似。这是一个非常详尽的教程

python -/usr/bin/env : python2: No such file or directory

关闭。这个问题是off-topic.它目前不接受答案。想改进这个问题吗?Updatethequestion所以它是on-topic用于堆栈溢出。关闭10年前。Improvethisquestion我正尝试在Ubuntu上为我的Emacs配置Python,但出现以下错误:/usr/bin/env:python2:Nosuchfileordirectory有人可以帮我吗?我能做些什么来解决它?

Java 已安装,在 list 中,但执行产生 "./java: No such file or directory"

我刚刚运行了下面的脚本,它获取JDK并将其解压缩到正确的位置。问题是每个java命令(复制到/urs/bin)都会出错。然后,我通过cd进入JDK安装目录(我现在在JDK/bin中)并键入:./java-version并得到:./java:没有这样的文件或目录,但是java在那里!JDK上的ls-l显示所有java客户端都在bin中。#!/bin/bash#Author:YuccaNelhttp://thejarbar.org#Willrestartsystem#Modifythesevariablesasneeded...tempWork=/tmp/worklocBin=/usr/l

zend-framework - nginx php5-fpm 失败(2 : No such file or directory)

问题:我错过了什么或做错了什么?我正在尝试将功能齐全的ZendFramework应用程序从带有mod_php5的Apache2迁移到带有php5-fpm的nginx。我收到这种错误:2012/06/2712:08:04[error]1986#0:*1open()"/var/www/public/sales/live-trials-json"失败(2:没有这样的文件或目录),客户端:*.*.*.*,服务器:www.mydomain.com,请求:“POST/sales/live-trials-jsonHTTP/1.1”,主机:“www.mydomain.com”,推荐人:“https:/

php - Composer /WordPress : wp-content directory should or should not be committed

所以我最近开始在基于this的WordPress上使用Composer。教程。这是我的composer.json文件:{"repositories":[{"type":"package","package":{"name":"wordpress","type":"webroot","version":"4.3","dist":{"type":"zip","url":"https://github.com/WordPress/WordPress/archive/4.3.zip"},"require":{"fancyguy/webroot-installer":"1.0.0"}}}],"r

php - 如何解决错误 "[ErrorException] file_get_contents(/var/www/laravel/.env): failed to open stream: No such file or directory"?

我在我的机器上使用Ubuntu14.04。我在文档根目录中安装了composer和laravel即/var/www我还授予了-R777文件夹laravel的权限,该文件夹存在于目录/var/www然后我使用cd/var/www/laravel进入目录laravel并运行以下命令phpartisan我看到了那里有所有可用的命令。然后我输入phpartisankey:generate得到了错误[ErrorException]file_get_contents(/var/www/laravel/.env):failedtoopenstream:Nosuchfileordirectory在这里