Невозможно использовать VMWare Workstation 12

Этот код, использующий PAM, работал на меня:

#include <security/pam_appl.h>
#include <security/pam_misc.h>
#include <stdio.h>
#include <string.h>

// Define custom PAM conversation function
int custom_converation(int num_msg, const struct pam_message** msg, struct pam_response** resp, void* appdata_ptr)
{
    // Provide password for the PAM conversation response that was passed into appdata_ptr
    struct pam_response* reply = (struct pam_response* )malloc(sizeof(struct pam_response));
    reply[0].resp = (char*)appdata_ptr;
    reply[0].resp_retcode = 0;

    *resp = reply;

    return PAM_SUCCESS;
}

int main (int argc, char* argv[]) 
{
    if (argc > 2)
    {
        // Set up a custom PAM conversation passing in authentication password
        char* password = (char*)malloc(strlen(argv[2]) + 1);
        strcpy(password, argv[2]);        
        struct pam_conv pamc = { custom_converation, password };
        pam_handle_t* pamh; 
        int retval;

        // Start PAM - just associate with something simple like the "whoami" command
        if ((retval = pam_start("whoami", argv[1], &pamc, &pamh)) == PAM_SUCCESS)
        {
            // Authenticate the user
            if ((retval = pam_authenticate(pamh, 0)) == PAM_SUCCESS) 
                fprintf(stdout, "OK\n"); 
            else 
                fprintf(stderr, "FAIL: pam_authentication failed.\n"); 

            // All done
            pam_end(pamh, 0); 
            return retval; 
        }
        else
        {
            fprintf(stderr, "FAIL: pam_start failed.\n"); 
            return retval;
        }
    }

    fprintf(stderr, "FAIL: expected two arguments for user name and password.\n"); 
    return 1; 
}
1
05.11.2015, 16:41
2 ответа

Проблема с запуском графического интерфейса возникает, потому что Debian переместился в библиотеки, созданные с помощью boost. У меня такая же проблема с моим нестабильным ноутбуком Debian с ним.

0
28.01.2020, 01:31

Возможно, вы могли бы попробовать запустить более новую версию VMWare, например 15.5.6. Версия 12 действительно устарела и может быть несовместима с вашими дистрибутивами.

VMWare также требует, чтобы ее собственные модули ядра были скомпилированы и запущены, что еще больше усложняет задачу обеспечения совместимости старых версий с более новыми версиями Linux.

0
29.06.2020, 06:45

Теги

Похожие вопросы