ChinaUnix.net
相关文章推荐:

Cannot find or open the PDB file

执行makefile,生成exe的时候出现问题 ld: 0706-006 cannot find or open library file: -l clntsh ld:open(): A file or directory in the path name does not exist. make: 1254-004 The error code from the last command is 255. make中是这么写的 /opt/oracle/product/9.2/bin/oraxlc -q64 -o hldCT -qcpluscmt -DAIX=51 -D _Xopen_SOURCE cli_main.o cli_drv.o assist.o tcpcom.o -L/usr/lib -L//opt/orac...

by goodbyefaith - Oracle - 2007-03-29 16:47:31 阅读(8329) 回复(1)

相关讨论

cscope的新手,看到网上说,按照绝对路径搜索,可以使用环境变量来告诉vim cscope的DB在哪里,这样就方便了 我写的脚本如下:[code]#! /bin/bash PWD=`pwd` find $PWD -name "*.h" -o -name "*.c" -o -name "*.cc" -o -name "*.hxx" -o -name "*.cxx" -o -name "*.cpp" > cscope.files[/code]生成了cscop.files文件,但是我在使用 cscope -bq 的时候,却报错说 cscope: cannot find file XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX...

by alexandnpu - C/C++ - 2011-07-25 17:48:34 阅读(6052) 回复(3)

all: has has: gcc hash.c Lhash.c -o has .PHONY: clean clean: rm -rf has 上面的makefile用make has 执行的时候 提示 /usr/bin/ld:cannot open output file has:Permission denied collect2:ld returned 1 exit status 把has 改成别的名字也不行 请问这个是什么原因?

by mousexqshe - C/C++ - 2007-07-27 10:23:45 阅读(6979) 回复(3)

Unable to start program 'c:\documents and settings\owner\my documents\visual studio 2005\projects\aaa\debug\aaa.exe'. The system cannot find the file specified.

by zhshqzyc - C/C++ - 2006-04-28 08:52:33 阅读(1013) 回复(0)

[root@3843228 squid]# sarg SARG: Records in file: 1975, reading: 100.00% SARG: (download) cannot open file: /var/www/sarg/ONE-SHOT/2008Oct21-2008Oct22/period 装上之后第一次使用 sarg -o /var/www/html/hours -l /var/log/squid/access.log成功了, 但是后来在怎么也不好使了.高手请指教.

by root001 - 服务器应用 - 2008-10-28 11:49:15 阅读(2715) 回复(4)

在一个目录下,$make program时,出现错误: /usr/lib/ld:cannot open output file program:Permission denied ls -l program.c(显示:-rwxrwxr-x,权限够啊) 最后发现原来是这个程序所在目录没有写权限,呵呵,看来以后得注意这些细节问题呢... 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/28736/showart_240408.html

by Nicole2006 - Linux文档专区 - 2007-01-30 18:53:01 阅读(646) 回复(0)

os 5.05 telnet x.x.x.x 110 出現-ERR cannot find password file. 不知道是否少了一支password file thanks!!

by ddscsg - 其他UNIX - 2003-01-23 12:22:34 阅读(1134) 回复(1)

我在执行命令vsftpd start时报错: 500 OOPS: vsftpd: cannot open config file:start 请问高手这是什么错?

by light511 - Linux系统管理 - 2008-07-01 09:42:46 阅读(5473) 回复(6)

userdel: cannot open shadow group file 添加删除用户和组都出现这个,上次在论坛上看到有人解决过这个问题,请赐教一下,谢谢了 系统是redhatAS3

by luxinjun - Linux系统管理 - 2006-03-16 18:51:54 阅读(1389) 回复(3)

求教?? 我已经执行过: chattr -i /etc/passwd chattr -i /etc/shadow chattr -i /etc/group ---------------------------- useradd test 错提示: useradd: error opening shadow group file 同样:userdel test 也是同样的错误提示???

by 微笑的牛 - Linux论坛 - 2006-03-16 17:24:48 阅读(1271) 回复(7)

有可能是权限的问题。即:你的普通用户在hello.c目录下没有写的权限。如果让你的普通用户在hello.c所在目录有写权限,应该就没问题了。 测试: root用户在/home目录下创建文件hello.c root可成功在该目录下编译hello.c,生成可执行文件hello。 然后切换到系统中某普通用户,假设为Wang, 但是Wang在/home目录没有写权限。 gcc hello.c -o hello 经历了预处理、编译、汇编、链接的过程才生成hello二进制文件。 你可以用-v选项, gcc ...

by bensonliao - Linux文档专区 - 2009-08-06 00:00:12 阅读(2806) 回复(0)