Enable Linux compatibility and linprocfs Add linux_enable=”YES” to /etc/rc.conf. Add compat.linux.osrelease=2.6.16 to /etc/sysctl.conf. Add OVERRIDE_LINUX_BASE_PORT=f8 to /etc/make.conf. Add this line to /etc/fstab: linproc /usr/compat/linux/proc linprocfs rw 0 0 After run these commands: mkdir -p /usr/compat/linux/proc mount /usr/compat/linux/proc /etc/rc.d/abi start /etc/rc.d/sysctl start Update ports and install all the needed software Now you need to install the [...]
Tag Archives: freebsd flash player
How to add FreeBsd Flash Plugin
January 9, 2010
Firefox and Macromedia® Flash™ Plugin Macromedia® Flash™ plugin is not available for FreeBSD. However, a software layer (wrapper) for running the Linux version of the plugin exists. This wrapper also supports Adobe® Acrobat® plugin, RealPlayer® plugin and more. According to the version of FreeBSD you run various steps are required: Under FreeBSD 7.XInstall the www/nspluginwrapper port. [...]
FreeBsd Adobe Flash (shell script)
January 8, 2010
#!/bin/sh #(c) 2008 Sokolov Alexey [TrueBSD Project] check_file() { if [ ! -f $1 ]; then echo “file $1 not found. Please install port ‘$2′” exit fi } usage_func() { echo “usage: flashpluginctl [on | off]” exit } check_file “/usr/local/lib/npapi/linux-flashplugin/libflashplayer.so” “www/linux-flashplugin9″ check_file “/usr/local/bin/nspluginwrapper” “www/nspluginwrapper” if [ $# -ne 1 ]; then usage_func fi if test [...]

February 24, 2010
2 Comments