Recent content by mj1240

  1. M

    Customize Ubuntu User Setting Add/Edit Dialog Layout and controls

    Hi, I am just new in Linux Programming. Is there anyone who know how to edit Add User Dialog of Ubuntu? or at least access if there is a *.conf file and run scripts upon user add/edit events. My goal is, I created a Face Log-in and I want to integrate a Face registration on built in setting...
  2. M

    Writing Log during greeter login

    I found more efficient way here: https://stackoverflow.com/questions/158457/daemon-logging-in-linux
  3. M

    Writing Log during greeter login

    temporarily, this works for me: Terminal: logger [My Logs] Programmatically in my user-space program: system("logger [My Logs..]"); Then I can fin my logs at /var/logs/syslogs I can just grep my keyword in the logs i think. so far I could not yet find a way how can I make it variable. But...
  4. M

    Writing Log during greeter login

    Hi, I am new to Linux programming. I am trying to add a module that will be run as additional rule to PAM. My current goal is to create a logging system, but I am having problem on permission on writing my log. PAM_EXTERN int pam_sm_authenticate( pam_handle_t *pamh, int flags,int argc, const...
Top