Changes between Version 2 and Version 3 of 64BitIssues
- Timestamp:
- Mar 9, 2011 11:46:57 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
64BitIssues
v2 v3 29 29 30 30 The 64bit version of flash-plugin is currently unsupported by adobe, it's available on labs.adobe.com at http://labs.adobe.com/downloads/flashplayer10.html 31 This is however unsupported at this point, the last update was November 30th, 2010 as of March 9, 2011. 31 32 33 The recommended method of using flash is to use the 32bit version and the 64bit wrapper on it. This can be achieved using the helper package *flash-plugin64* which has appropriate requires lines to get the flash-plugin wrapped properly. 32 34 35 == skype == 33 36 37 Skype also requires sssd-client.i686. It also requires libv4l.i686 to properly use a webcam. The following script should be used as a wrapper to start skype. 38 {{{ 39 #!sh 40 #!/bin/bash 41 42 if [ -x /usr/bin/skype ]; then 43 LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype 44 fi 45 }}} 46