SOLVED: Adobe AIR installation problem on Fedora 10 x86_64

Adobe AIR installation fails on Fedora 10 x86_64 without any explanations. It just says: An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator. The reason is some missing i386 packages. You just have to run following command: yum install gtk2-devel.i386 nss.i386 libxml2-devel.i386 libxslt.i386 gnome-keyring.i386 rpm-devel.i386 …

Howto recursively add unversioned files into SVN repository

Because svn add command does not support recursive addition of unversioned files you can use this little script to do it. Create new file in /usr/local/bin with name svnadd with following content #!/bin/sh svn status | perl -ne ‘s/^\?\s+(\S.+)$/\1/g;chomp;system(“svn add \”$_\””);’ Save it. From now on you can execute svnadd command in your working directory.

VMWare Workstation 6.5 segfault on Fedora 10 x86_64

VMWare Workdstation 6.5 is causing segmentation fault on Fedora 10 x86_64 when trying to execute it. The message is: /usr/lib/vmware/bin/launcher.sh: line 231: 13748 Segmentation fault “$binary” “$@” To solve the problem you need to do this: # mv /usr/lib/vmware/modules/binary /usr/lib/vmware/modules/binary.old # vmware-modconfig –console –install-all After build is over start VMWare, it should work now. Taken …