0

我得到这个问题是在我在后台运行 countryServer 然后我杀死它之后。我尝试重新编译一个新版本,这就是我得到的

root@ubuntu:/home/baoky/shell_assignment/shell_assn2# g++ -o countryServer CountryServer.cpp
root@ubuntu:/home/baoky/shell_assignment/shell_assn2# ./countryServer &
[1] 3097
root@ubuntu:/home/baoky/shell_assignment/shell_assn2# 
Running server program 'css' ...... 

Country Directory server started

root@ubuntu:/home/baoky/shell_assignment/shell_assn2# ps
  PID TTY          TIME CMD
 2993 pts/3    00:00:00 su
 3001 pts/3    00:00:00 bash
 3097 pts/3    00:00:00 countryServer
 3098 pts/3    00:00:00 ps
root@ubuntu:/home/baoky/shell_assignment/shell_assn2# kill 3097
[1]+  Terminated              ./countryServer
root@ubuntu:/home/baoky/shell_assignment/shell_assn2# g++ -o countryServer CountryServer.cpp
/usr/bin/ld: cannot open output file countryServer: No such device or address
collect2: ld returned 1 exit status

root@ubuntu:/home/baoky/shell_assignment/shell_assn2# ls -l
total 60
-rw-r--r-- 1 baoky baoky 19545 Aug  2 10:33 Countries.txt
-rwxr-xr-x 1 root  root  14756 Aug  4 03:17 countryClient
-rw-r--r-- 1 baoky baoky  3514 Aug  4 03:19 CountryClient.cpp
-rw-r--r-- 1 baoky baoky  4740 Aug  4  2012 CountryData.c
-rw-r--r-- 1 baoky baoky  2022 Aug  2 10:33 CountryData.h
srwxr-xr-x 1 root  root      0 Aug  4 03:29 countryServer
-rw-r--r-- 1 baoky baoky  7762 Aug  4 03:18 CountryServer.cpp

我收到一个错误,返回这个 /usr/bin/ld: cannot open output file countryServer: No such device or address collect2: ld returned 1 exit status

如果我做 rm -rf countryServer 我可以修复它

但是我该如何修复它以便它可以覆盖旧的 countryServer (在我杀死它的进程并重新编译它之后)

4

3 回答 3

4

您的countryServer程序似乎正在创建一个countryServer在当前目录中调用的套接字文件,并在此过程中覆盖自身。

在编译您的代码之前删除该套接字文件,或者更好:更改您的代码,使其不会覆盖自己的可执行文件。

于 2012-08-04T10:33:40.680 回答
2

* c *ountryServer.cpp 和 * C *ountryServer.cpp 是 Linux/Unix 系统上的不同文件。

于 2012-08-04T10:26:45.330 回答
1

文件路径在 linux 中区分大小写。

countryServer.cpp 和 CountryServer.cpp 不是同一个路径。

于 2012-08-04T10:26:59.190 回答