I mentioned this in passing on another post, but I was having trouble with FF loading any largish picture* on a fresh install of 32-bit 6.5.22. Instead of displaying the image, it would give a message like:
I suspected this was an 'rqs' problem (later confirmed with a little work with 'par'). The first time around (hummingbird, first link) a thorough 'rqsall' fixed it. Later I tried to view an even larger picture (Raphael's School of Athens, second link) and it broke again. Trying another complete 'rqsall' didn't fix that.
So I tried this instead, and all seems to be OK:
I just typed that so probably worth check for typos. If anyone else hits the same thing, I hope this will help. I had tried requickstarting a library at a time, but gave up and just moved them all as above. For more details on the fundamental problem, try searching for rqsall and 0xa000000. There are some old posts lurking around that gave me the idea to begin with.
*Links:
https://upload.wikimedia.org/wikipedia/ ... 1-edit.jpg
https://upload.wikimedia.org/wikipedia/ ... zio_01.jpg
Code:
Image "xyz.jpg" cannot be displayed because it contains errors.
I suspected this was an 'rqs' problem (later confirmed with a little work with 'par'). The first time around (hummingbird, first link) a thorough 'rqsall' fixed it. Later I tried to view an even larger picture (Raphael's School of Athens, second link) and it broke again. Trying another complete 'rqsall' didn't fix that.
So I tried this instead, and all seems to be OK:
Code:
#use sh or bash
ldd /usr/nekoware/lib/firefox-bin | grep neko | cut -d'>' -f2- > /tmp/fflibs.txt
#stop and examine the contents of fflibs.txt before running this
for f in `cat /tmp/fflibs.txt`; do
rqs -m -f -l 0xa000000 $f
done
ldd /usr/nekoware/lib/firefox-bin | grep neko | cut -d'>' -f2- > /tmp/fflibs.txt
#stop and examine the contents of fflibs.txt before running this
for f in `cat /tmp/fflibs.txt`; do
rqs -m -f -l 0xa000000 $f
done
I just typed that so probably worth check for typos. If anyone else hits the same thing, I hope this will help. I had tried requickstarting a library at a time, but gave up and just moved them all as above. For more details on the fundamental problem, try searching for rqsall and 0xa000000. There are some old posts lurking around that gave me the idea to begin with.
*Links:
https://upload.wikimedia.org/wikipedia/ ... 1-edit.jpg
https://upload.wikimedia.org/wikipedia/ ... zio_01.jpg
_________________