Category Archives: Operating Systems

Windows : Enable RDP from command line

Here is a few commands to enable or disable Remote Desktop Protocol and Remote Assistance on Windows 7 and Windows Server 2008 or greater through the command line. Enable RDP : reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server” /v fDenyTSConnections /t REG_DWORD /d 0 /f Disable RDP : reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server” /v fDenyTSConnections /t REG_DWORD /d 1… Read More »

Linux : PHP Unable to load dynamic library ‘/usr/lib64/php/modules/module.so

Having this error on your RHEL/CentOS 6 Web server or issuing “php -v” command? PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib64/php/modules/module.so’ – /usr/lib64/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0 Then you probably have “php-mcrypt” module installed. Apparently, the “mcrypt.ini” file do not have… Read More »

Linux : pam_fprintd.so: cannot open shared object file

Have you recently noticed the following error message in  /var/log/secure with RHEL/CentOS 6? PAM unable to dlopen(/lib64/security/pam_fprintd.so): /lib64/security/pam_fprintd.so: cannot open shared object file: No such file or directory PAM adding faulty module: /lib64/security/pam_fprintd.so There is several bug reports regarding this. I think PAM is trying to load an inexistant module. You should be concerned only… Read More »

Windows : Symantec Ghost Application error 437

Getting this error while attempting to restore a Symantec Ghost image from DVD (or any optical media) under WinPE? Ghost Error Application error 437 cannot read from file The main causes are the following : – Image integrity check failed due to corrupted image and/or drive read error – Source image was created using compression… Read More »

Linux : Could not get shadow information for user

Having problems connecting to your server with SSH and get this error messages in the system logs? sshd[0000]: input_userauth_request: invalid user <user> sshd[0000]: error: Could not get shadow information for <user> sshd[0000]: Failed password for invalid user <user> from 0.0.0.0 port 00000 ssh2 This mean you are missing “UsePAM” directive and/or the directive is set… Read More »