Fonte Counter Strike

0

Eu recebo erro de instalação da fonte Counter Strike com vinho: Eu digitei o seguinte comando no terminal:

wine Counter Strike Source.exe 

Abaixo está o meu progresso.

wine: created the configuration directory '/home/monojit/.wine'
fixme:storage:create_storagefile Storage share mode not implemented.
err:mscoree:LoadLibraryShim error reading registry key for installroot
err:mscoree:LoadLibraryShim error reading registry key for installroot
err:mscoree:LoadLibraryShim error reading registry key for installroot
err:mscoree:LoadLibraryShim error reading registry key for installroot
fixme:storage:create_storagefile Storage share mode not implemented.
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:iphlpapi:NotifyAddrChange (Handle 0x103e368, overlapped 0x103e380): stub
fixme:storage:create_storagefile Storage share mode not implemented.
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:iphlpapi:NotifyAddrChange (Handle 0x10fe8a0, overlapped 0x10fe8ac): stub
wine: configuration in '/home/monojit/.wine' has been updated.
wine: cannot find L"C:\windows\system32\Counter.exe"

Alguma sugestão?

    
por Monojit Sarkar 12.01.2018 / 09:58

2 respostas

0

Caracteres de espaço são usados como caracteres delimitadores entre palavras separadas no bash. Você obteve o erro wine: cannot find L"C:\windows\system32\Counter.exe" porque cada caractere de espaço no nome do arquivo precisa ser precedido por um caractere de barra invertida precedente \ ou então o nome do arquivo que contém espaços em branco deve ser colocado entre aspas para que seja analisado como um nome de arquivo único.

Altere os diretórios usando o comando cd para o diretório que contém o arquivo Counter Strike Source.exe para que Counter Strike Source.exe possa ser executado por vinho sem precisando digitar o caminho completo para ele. Coloque a string Counter Strike Source.exe em um par de caracteres de citação para que ela seja avaliada como uma única palavra em vez de três palavras separadas como esta:

wine 'Counter Strike Source.exe' 
    
por karel 12.01.2018 / 10:08
0

Para remover o erro no Ubuntu 16.04.4 LTS:

02ae:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.

Isso fez o truque para mim:

sudo apt-get install winebind
    
por PJ_Finnegan 22.03.2018 / 10:59