2021-01-01から1ヶ月間の記事一覧

vmplayer を起動すると polkit-agent-helper-1: pam_authenticate failed: Authentication というエラーがでる

vmplayer を起動すると polkit-agent-helper-1: pam_authenticate failed: Authentication や vmware-setup-helper requires root access というエラーが出るだけで vmplayer が起動できない場合の対処方法 症状 具体的には ==== AUTHENTICATING FOR org.fre…

LD_PRELOADで複数のライブラリを指定する方法

LD_PRELOADで共有ライブラリを複数指定する場合は,ファイル名を":"で区切って列挙する LD_PRELOAD=ライブラリ1:ライブラリ2 例 LD_PRELOADを使って,malloc()を自作関数に差し替える ソースコード main.c #include <malloc.h> int main() { void *p = malloc(1024); f</malloc.h>…