23d23
![]() |
|
|
|
|
|||||||
| Multimedia Having problems running your new shiny and blinking gadget or watching DVDs, listening to CDs etc.? |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hello,
I installed flash with nspluginwrapper on freebsd 7.2. It worked perfectly only one time on a computer. I have 3 computers with freebsd and i can't repeat installation with successful. With aragorn tutorial : linux_enable="YES" in rc.conf, I modify sysctl ... make install clean on : linux-flashplugin9 - nspluginwrapper i tested with linux_base-fc4, linux_base-f8, linux_base-f10 ... Well, the result is a black screen on youtube. I am discouraged. How to work flash all time on freebsd 7.x ? Thanks verry much
|
|
#2
|
|||
|
|||
|
Without linux emulation, I can use flash (youtube)
with /gnash/ and /seamonkey/ (and maybe, maybe not additional configuration steps). (Discovered by chance.) |
|
#3
|
||||
|
||||
|
Try looking at this post.
On 7.2 I'm using linux_base-fc-4 without touching the sysctl, as in 7.2 support for newer osrelease is not complete (and probably it will never be). The flash plugin version is 9. On 8 it's a different story. Sometimes the browser freezes, especially when I have many windows opened with flash content. Usually I wait for some seconds (10-30) and if the browser windows are still stuck, from a console I run $ pkill -9 npviewer.
|
|
#4
|
|||
|
|||
|
gnash can run only with youtube, i tried it with others web sites and it doesn't work.
Ok, i will try install flashplugin 9 with fc4 monday. But with this method i have the feeling that it work only once on three times. I installed it on my computer number 2, it works , and after i installed it on my computer number 3 with the same method and it don't work ![]() thanks for the freeze solve problem. Well, someone tried bsd 8.0 with flash plugin 10 ? I'm afraid with version 8, is it stable ? Thanks everybody. |
|
#5
|
||||
|
||||
|
Quote:
It works more or less the same compared to the configuration I have for 7. Even if sometimes on 7 I get a warning about the old plugin version it never happened to me to find something which doesn't work with 9 yet. What I can see on both, is that if the system is doing something else which uses a lot of I/O, the plugin freeze the whole browser for a while. Sometimes it continues, sometimes it dumps huge cores and dies, sometimes I pkill it. |
|
#6
|
||||
|
||||
|
Here:
FreeBSD 8.0-RC1 (i386) linux-f10-flashplugin-10.0r32 nspluginwrapper-1.2.2_4 linux_base-f10-10_2 firefox-3.5.3,1 Flawless. No freezes.
__________________
FreeBSD Forums: Information for New Members | FreeBSD Forums Rules FreeBSD Resources: The FreeBSD Handbook | Manuals | FAQ | Wiki Before you post: How to ask questions the smart way If you must know .. So, what does an Adminstrator/Moderator do? ---> Do not PM me with FreeBSD questions. I do not work here. <--- |
|
#7
|
||||
|
||||
|
Quote:
I kept all the debugging options in my kernconf until they have been removed. I thought that this was increasing the freezes as I had often messages about lor running flash. Anyway if my memory is not failing I read somewhere in some ml that there is a problem about threads in the emulation layer that could be the cause of the problem. I'll post again if I found the url. |
|
#8
|
|||
|
|||
|
Quote:
|
|
#9
|
|||
|
|||
|
Hello,
I'm back after trying a new bsd. I make new bsd from 8.0 kernel, (with linux emulator in kernel options and more options) in /etc/make.conf : Code:
OVERRIDE_LINUX_BASE_PORT=f10 OVERRIDE_LINUX_NONBASE_PORTS=f10 xorg firefox3 in /etc/fstab : Code:
linproc /usr/compat/linux/proc linprocfs rw 0 0 Code:
mount /usr/compat/linux/proc /etc/rc.d/abi start /etc/rc.d/sysctl start Code:
cd /usr/ports/www/linux-f10-flashplugin10 && make install clean cd /usr/ports/www/nspluginwrapper && make install clean Code:
adduser alex Code:
nspluginwrapper -v -i /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so Code:
startx firefox3 It's black black black ![]() all times it's the same prolem. Last edited by DutchDaemon; October 20th, 2009 at 13:09. Reason: added 400 code tags |
|
#10
|
||||
|
||||
|
Try running
nspluginwrapper -v -a -i as the user, and/or copy libflashplayer.so to the /usr/local/lib/firefox/plugins directory (then retry the command).
__________________
FreeBSD Forums: Information for New Members | FreeBSD Forums Rules FreeBSD Resources: The FreeBSD Handbook | Manuals | FAQ | Wiki Before you post: How to ask questions the smart way If you must know .. So, what does an Adminstrator/Moderator do? ---> Do not PM me with FreeBSD questions. I do not work here. <--- |
|
#11
|
|||
|
|||
|
Thanks DutchDaemon, but the result is :
Code:
adduser alex2 Code:
nspluginwrapper -v -a -i in root : Code:
cp /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so /usr/local/lib/firefox3/plugins firefox3 ( no plugins )
Last edited by DutchDaemon; October 20th, 2009 at 17:29. |
|
#12
|
|||
|
|||
|
killwin, this is perhaps a stupid observation, however the handbook states that you should provide a symlink, NOT a copy of the plugin.
Also that it should go in /usr/local/lib/browser_plugins, not firefox3/plugins. Replace your cp command with # ln -s /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so \ /usr/local/lib/browser_plugins/ ^^^^^^^^^^^^^^^ before running the nspluginwrapper command. Or, mark this post as useless. But it worked when I did it. |
|
#13
|
||||
|
||||
|
What is the output of
nspluginwrapper in -v -a -i? It should give you an indication of where it is looking for the plugin.Something like Code:
Auto-install plugins from /usr/local/lib/browser_plugins Looking for plugins in /usr/local/lib/browser_plugins Auto-install plugins from /usr/local/lib/firefox/plugins Looking for plugins in /usr/local/lib/firefox/plugins Install plugin /usr/local/lib/firefox/plugins/libflashplayer.so into /home/alex2/.mozilla/plugins/npwrapper.libflashplayer.so Auto-install plugins from /home/alex2/.mozilla/plugins Looking for plugins in /home/alex2/.mozilla/plugins
__________________
FreeBSD Forums: Information for New Members | FreeBSD Forums Rules FreeBSD Resources: The FreeBSD Handbook | Manuals | FAQ | Wiki Before you post: How to ask questions the smart way If you must know .. So, what does an Adminstrator/Moderator do? ---> Do not PM me with FreeBSD questions. I do not work here. <--- |
|
#14
|
||||
|
||||
|
Quote:
Code:
/usr/local/lib/firefox/plugins Code:
/usr/local/lib/firefox3/plugins
__________________
FreeBSD Forums: Information for New Members | FreeBSD Forums Rules FreeBSD Resources: The FreeBSD Handbook | Manuals | FAQ | Wiki Before you post: How to ask questions the smart way If you must know .. So, what does an Adminstrator/Moderator do? ---> Do not PM me with FreeBSD questions. I do not work here. <--- |
|
#15
|
||||
|
||||
|
As wnsi-m2 says, just follow 6.2.3 (Firefox and Macromedia® Flash™ Plugin) of the Handbook browser's section. Follow the 8.X instructions if you use 7.2-STABLE. There's a thread on the Howto's that address this same issue.
__________________
Just another crazy UNIX snob. FreeBSD 7.2-STABLE graedus@aspireone:/usr/obj/usr/src/sys/GENERIC i386 |
|
#16
|
|||
|
|||
|
in root :
Code:
mkdir /usr/local/lib/browser_plugins ln -s /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so /usr/local/lib/browser_plugins/ adduser alex3 Code:
nspluginwrapper -v -a -i Code:
Auto-install plugins from /usr/local/lib/browser_plugins Looking for plugins in /usr/local/lib/browser_plugins Install plugin /usr/local/lib/browser_plugins/libflashplayer.so into /home/alex3/.mozilla/plugins/npwrapper.libflashplayer.so Auto-install plugins from /home/alex3/.mozilla/plugins Looking for plugins in /home/alex3/.mozilla/plugins
|
|
#17
|
||||
|
||||
|
By any chance did you ran nspluginwrapper as root previously?
__________________
Just another crazy UNIX snob. FreeBSD 7.2-STABLE graedus@aspireone:/usr/obj/usr/src/sys/GENERIC i386 |
|
#18
|
|||
|
|||
|
Yes... it's the same problem
Hmmm perhaps a material problem ... i don't know. |
|
#19
|
|||
|
|||
![]() I found the problem. It works now perfectly. problem 1 : the slide ( / ) was verry short and linux_base tried to install into /compat. problem 2 : After installation, and solved this first problem i was with two folders /compat and /usr/compat. Well i put all /compat/linux into /usr/compat/linux without /usr/compat/linux/proc and flash works now ![]() monday i will try a new installation. ![]() What's do you think ? I did'nt read this problem in a forum. |
|
#20
|
|||
|
|||
|
I was suffering from the same problem, and ultimately found that I had forgotten to
Code:
mount -t linprocfs linproc /compat/linux/proc |
|
#21
|
|||
|
|||
|
Got sound working. Turns out freebsd doesn't enable the sound driver I need on boot, probably because my laptop is pretty old. I needed to add the following to loader.conf:
Code:
snd_ich_load="YES" "/dev/mixer: No such file or directory" Now mixer works okay. So, if you are reading this, and mixer isn't working for you, try to research the experiences other people have had installing FreeBSD on your model of computer. Next on my list: compile my own tpb, since the one in ports uses ACPI, and I use a laptop which uses APM. |
|
#22
|
|||
|
|||
|
FreeBSD doesn't load any sound drivers by default. It doesn't matter if the computer is old or new.
|
|
#23
|
|||
|
|||
|
Quote:
Thanks, dennylin93.
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Freebsd 7.1 + adobe flash player 10 | xnl96 | Multimedia | 18 | December 4th, 2009 23:42 |
| Flash and VirtualBox on FreeBSD | overmind | Feedback | 3 | September 28th, 2009 18:34 |
| freebsd 7.2 and firefox 3 and flash 9 | cmc4bsd | Installing & Upgrading | 5 | March 9th, 2009 15:00 |
| Flash 9 FreeBSD 8-Current | nikobordx | Multimedia | 1 | March 5th, 2009 13:58 |
| FreeBSD on Desktop - flash | darkshadow | Multimedia | 16 | December 8th, 2008 23:48 |