Saturday, August 28, 2010

Flash Player updates, fail

Links Flashplayer

In Zenwalk (mini-Slack), I run Iceweasel for a browser. This is just a stripped Firefox that doesn't use copyrighted code, a nice touch. However, it means the User Agent string is typically unrecognized at mainstream sites like Hulu. When there is, for example, a periodic Flash update that sites like Hulu want us to install, Adobe provides a warning message that I have an unrecognized or unsupported system.

In spite of the ominous warning message, Adobe provides the latest libflashplayer.so module at their their site. Wipe out the old directory and the two softlinks. Put in the latest libflashplayer.so and create two softlinks to the new module. Right as rain.

download the module
Go to the Adobe Flashplayer page, which has a sniffer to determine the OS is Linux. I took the basic tar.gz version which is pre-compiled (can we say "proprietary"?). Unpack it. That's it. However, there are times when Flash updates have entirely broken my browser and this then requires an OS update. We never want to update an OS for any reason. We want a stable, 30 year installation.



remove the old stuff...
To be reasonably sure older versions didn't linger and cause conflicts:

# rm -rf /usr/lib/flashplugin*
# rm /home/foo/.mozilla/plugins/libflashplayer.so
# rm /usr/lib/mozilla-firefox/plugins/libflashplayer.so
# rm /usr/lib/mozilla/plugins/libflashplayer.so

...and in with the new stuff
The softlink commands are wrapping here in the blog's narrow column; there are just two of them.

# mkdir /usr/lib/flashplugin
# cp /home/foo/downloads/libflashplayer.so /usr/lib/flashplugin/
# ln -s /usr/lib/flashplugin/libflashplayer.so /usr/lib/mozilla/plugins/libflashplayer.so
# ln -s /usr/lib/flashplugin/libflashplayer.so /usr/lib/mozilla-firefox/plugins/libflashplayer.so

Friday, August 6, 2010

TI-89

Links: TiLP   TiEmu   TiCalc.org


basics
The effort to get a Ti-89 connected to the laptop. Didn't want the Windows stuff that came with the calculator. Located the TiLP Project for Linux. All good. All the files are linked from the site.

Versions installed during this blog entry:
  • tilp2 - 1.16
  • libticables2 - 1.3.3
  • libticalcs2 - 1.1.7
  • libticonv - 1.1.3
  • libtifiles2 - 1.1.5

The program comes in two packages, the program itself and a package of libs. Obviously install the libs package first, which will do the libticables2, libticalcs2, libticonv, and libtifiles2.

bugs
When compiling be sure to use

$ configure --prefix=/usr

Otherwise hell to pay with subsequent library location. Libs seem to have to be installed in a certain order. Sussed this out from the README's...
  1. libticonv
  2. libtifiles
  3. libticables
  4. libticalcs
...which worked.

loading applications
Take the stats program, for example. Download it from the Ti Site, its name is tistatl.89k.
  1. Connect the Ti-89 w/usb
  2. $ tilp
  3. libticables
  4. libticalcs


I also installed Group File Manager v. 1.06.
TiEmu
Haven't installed or played with this yet. I'll add the info and edit this portion of the page one of these weekends.