LINUX.ORG.RU

История изменений

Исправление Shushundr, (текущая версия) :

https://superuser.com/questions/502875/linux-named-sockets-howto

A Unix/Linux socket file is basically a two-way FIFO. Since sockets were originally created as a way to manage network communications, it is possible to manipulate them using the send() and recv() system calls. However, in the Unix spirit of “everything is a file”, you can also use write() and read().

В общем, ничего непонятно.

Я хочу добиться того, чтобы с одной стороны (на хосте) работал xorg-сервер и часть DE, а с другой стороны (в lxc-контейнере) работала прикладная программа, специально туда собранная со всеми её зависимостями. И сделать это без использования сетевого стека.

Исходная версия Shushundr, :

https://superuser.com/questions/502875/linux-named-sockets-howto

A Unix/Linux socket file is basically a two-way FIFO. Since sockets were originally created as a way to manage network communications, it is possible to manipulate them using the send() and recv() system calls. However, in the Unix spirit of “everything is a file”, you can also use write() and read().

В общем, ничего непонятно.

Я хочу добиться того, чтобы с одной стороны (на хосте) работал xorg-сервер и часть DE, а с другой стороны (в lxc-контейнере) работала прикладная программа, специально туда собранная со всеми её зависимостями.