Como instalar o Cygserver

0

Estou programando no UNIX, então estou usando o Cygwin. Mas as funções do IPC não funcionam nele, apenas no Cygserver. Como posso instalar? Eu olhei no google e não encontrei nenhuma informação concreta.

Obrigado pelo seu tempo:)

    
por Nelson 05.04.2014 / 18:15

3 respostas

2

O Cygserver é, na verdade, parte do pacote cygwin de base que cada usuário do Cygwin instalou.

Prova:

$ cygcheck -f /usr/sbin/cygserver
cygwin-1.7.35-1

$ cygcheck -f /usr/bin/cygserver-config
cygwin-1.7.35-1

Você já o instalou, mas precisa configurá-lo:

  1. Inicie o "Terminal Cygwin" "como administrador"

  2. $ cygserver-config

Saída:

$ cygserver-config
Generating /etc/cygserver.conf file


Warning: The following function requires administrator privileges!

Do you want to install cygserver as service?
(Say "no" if it's already installed as service) (yes/no) yes

The service has been installed under LocalSystem account.
To start it, call 'net start cygserver' or 'cygrunsrv -S cygserver'.

Further configuration options are available by editing the configuration
file /etc/cygserver.conf.  Please read the inline information in that
file carefully. The best option for the start is to just leave it alone.

Basic Cygserver configuration finished. Have fun!

Observe que, além das instruções To start it :

  1. Ele será iniciado automaticamente na inicialização
  2. Você pode iniciar e pará-lo (ou desativá-lo) em services.msc
por 22.04.2015 / 12:06
1

O uso e a instalação de cygserver são totalmente explicados na sua própria página do Cygwin Guia do usuário.

    
por 06.04.2014 / 06:45