如何创建socket类型的特殊文件?
我需要为 kgdb-gdb 远程连接创建串行端口套接字。
正如mkfifo
在您的系统上创建一个FIFO一样,我们如何创建套接字文件?
I need to create serial port socket for kgdb-gdb remote connection.
Just as mkfifo
creates a FIFO on your system, how can we create socket files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试编写一个使用套接字的应用程序,@cidermonkey 接受的答案中的链接非常有用。如果你真的只是想创建一个,你可以用 python 来完成:
或者使用一个小小的 C 程序,例如,将以下内容保存到
create-a-socket.c
:然后安装gcc,编译它,然后ta-da:
The link in the accepted answer by @cidermonkey is great if you're trying to write an app that uses sockets. If you literally just want to create one you can do it in python:
Or with a tiny C program, e.g., save the following to
create-a-socket.c
:Then install gcc, compile it, and ta-da: