Re: 3.0 Tuner on Linux
On Mon, Jul 06, 1998 at 04:14:53PM -0700, Luiz Otavio L. Zorzella wrote:
> Paul, were you able to unpack the tuner_300d_products_enus.bin file
> usin iBCS or something or you just happen to have a Solaris box were
> you did that?
>
> Any suggestion for someone who does not have a solaris box?
>
this worked for 2.0 .bin packages,
i didn't test it on tuner 3.0 yet
Regards
Luca
--
Luca Berra -- [EMAIL PROTECTED]
System and Network Manager - CoMedia s.r.l.
#!/usr/bin/perl
#pkgrextract - extracts Marimba .bin files
#No Copyright 1997 Luca Berra <[EMAIL PROTECTED]>
#
#This program is free software; you can do anything you want
#with it, I don't give a damn.
#By using this piece of crap you agree that I (Luca Berra)
#cannot be held responsable for any damage that it may cause.
#
#Note: it would also be trivial to make it actually
#extract in the correct directory, run the script, and
#do any cleanup.
$oldfdh=select(STDOUT);$|=1;select($oldfdh);
$oldfdh=select(STDERR);$|=1;select($oldfdh);
sub usage {
$prgname=$0;
$prgname =~ s,.*/,,;
print("Usage: $prgname file.bin\n");
print("\tIt will extract the package in the current directory\n");
print("\tand overwrite anything witout asking, so beware\n");
exit(pop(@_));
}
usage(-1)
if (!defined($ARGV[0]) || defined($ARGV[1]));
SKIP_EXE:
while (<>) {
last SKIP_EXE
if (/^#-%SCTN /);
}
while (/^#-%SCTN (.*?) (\d*)$/) {
$filename=$1;
$filesize=$2;
print("$filename ($filesize bytes)\n");
open(OUTPUT,">$filename");
select(OUTPUT);
DUMP_FILE:
while (<>) {
last DUMP_FILE
if (/^#-%SCTN /);
print;
}
select(STDOUT);
close(OUTPUT);
}
RE: When will JDK 1.2 beta be released?
Hi Seth, On 07-Jul-98 Seth Bank wrote: > I want to use a package that requires Java2D and Java3D which are > new for JDK 1.2 beta, so I was wondering two things (1) when/if do you > think you will release version 1.2? (2) is it possible to just download > the Java2D and Java3D classes and stick them in my classpath? > > thanks, > Seth The JDK for 1.2 has not been released for non-commercial licenses yet. And so those of us working on the port don't have the source code in hand. So until Sun releases it, we can do nothing about it. About the 2d and 3d classes I can not answer that question, I am not sure what was added to support those classes. There may be things added in the JDK and in the class library to support them. But it is worth a try and see what happens! BTW for those interested, we are working on a "native_threads" port of the JDK, taking advantage of the pthreads in the glibc package, which does include linuxthreads and the libraries libpthreads.so and libpthreads.a. We are hoping to have this as a release in the not too distant future. Hope this helps. Cheers, Bruce... -- E-Mail: Bruce J. Carter <[EMAIL PROTECTED]> Date: 07-Jul-98 Time: 17:06:50 -- It is better to be silent and thought a fool, than to speak and remove all dount. - Benjamin Franklin
Re: Startup problems
You need to get the newest glibc (2.0.7-x) RPM from RedHat. Also, it's NOT important to compile the kernel for Java binaries; you only need to do this if you don't want to type 'java HelloWorld' and just 'chmod a+x HelloWorld.class ; HelloWorld.class'. Without kernel Java binary support, 'java HelloWorld' works just fine. --troy On Tue, 7 Jul 1998, Michael Ash wrote: > I run RedHat 5.0, and I am using the glibc version of jdk. Also, I assume > it's important to compile the kernel for Java binaries? I did this. > > Per request, here is the output of ldconfig -D > > /sbin/ldconfig: version 970402 > /usr/i486-linuxaout/lib: > libvga.so.1 => libvga.so.1.2.7 > libtk.so.3 => libtk.so.3.1.1 > libtcl.so.3 => libtcl.so.3.1 > libm.so.4 => libm.so.4.6.27 > libdb.so.1 => libdb.so.1.85.1 > libcurses.so.0 => libcurses.so.0.1.2 > libc.so.4 => libc.so.4.7.2 > libXt.so.6 => libXt.so.6.0 > libXt.so.3 => libXt.so.3.1.0 > libXpm.so.4 => libXpm.so.4.2 > libXaw.so.6 => libXaw.so.6.0 > libXaw.so.3 => libXaw.so.3.1.0 > libXIE.so.6 => libXIE.so.6.0 > libX11.so.6 => libX11.so.6.0 > libX11.so.3 => libX11.so.3.1.0 > /usr/i486-linux-libc5/lib: > libvgagl.so.1 => libvgagl.so.1.2.11 > libvga.so.1 => libvga.so.1.2.11 > libtermcap.so.2 => libtermcap.so.2.0.8 > libstdc++.so.27 => libstdc++.so.27.1.4 > libpanel.so.3.0 => libpanel.so.1.9.9e > libncurses.so.3.0 => libncurses.so.1.9.9e > libmenu.so.3.0 => libmenu.so.1.9.9e > libm.so.5 => libm.so.5.0.6 > libg++.so.27 => libg++.so.27.1.4 > libform.so.3.0 => libform.so.1.9.9e > libc.so.5 => libc.so.5.3.12 > libXtst.so.6 => libXtst.so.6.1 > libXt.so.6 => libXt.so.6.0 > libXpm.so.4 => libXpm.so.4.9 > libXmu.so.6 => libXmu.so.6.0 > libXi.so.6 => libXi.so.6.0 > libXext.so.6 => libXext.so.6.3 > libXaw3d.so.6 => libXaw3d.so.6.1 > libXaw.so.6 => libXaw.so.6.1 > libXIE.so.6 => libXIE.so.6.0 > libX11.so.6 => libX11.so.6.1 > libSM.so.6 => libSM.so.6.0 > libPEX5.so.6 => libPEX5.so.6.0 > libICE.so.6 => libICE.so.6.3 > /usr/X11R6/lib: > libXpm.so.4 => libXpm.so.4.10 > libXtst.so.6 => libXtst.so.6.1 > libXt.so.6 => libXt.so.6.0 > libXp.so.6 => libXp.so.6.2 > libXmu.so.6 => libXmu.so.6.0 > libXi.so.6 => libXi.so.6.0 > libXext.so.6 => libXext.so.6.3 > libXaw.so.6 => libXaw.so.6.1 > libXIE.so.6 => libXIE.so.6.0 > libX11.so.6 => libX11.so.6.1 > libSM.so.6 => libSM.so.6.0 > libPEX5.so.6 => libPEX5.so.6.0 > libICE.so.6 => libICE.so.6.3 > libXaw3d.so.6 => libXaw3d.so.6.1 > libMagick.so.3.9 => libMagick.so.3.9.1 > /usr/lib: > libtk8.0.so => libtk8.0.so > libtkx8.0.0.so => libtkx8.0.0.so > libtclx8.0.0.so => libtclx8.0.0.so > libtcl8.0.so => libtcl8.0.so > libvgagl.so.1 => libvgagl.so.1.2.11 > libvga.so.1 => libvga.so.1.2.11 > libreadline.so.3 => libreadline.so.3.0 > libhistory.so.3 => libhistory.so.3.0 > libmh.so.3.2 => libmh.so.3.2 > libtiff.so.3 => libtiff.so.3.4 > libpng.so.0 => libpng.so.0.96 > libjpeg.so.6 => libjpeg.so.6.0.1 > librle.so.1 => librle.so.1.0.0 > libppm.so.1 => libppm.so.1.0.0 > libpnm.so.1 => libpnm.so.1.0.0 > libpgm.so.1 => libpgm.so.1.0.0 > libpbm.so.1 => libpbm.so.1.0.0 > libfbm.so.1 => libfbm.so.1.0.0 > libstdc++.so.2.7.2 => libstdc++.so.2.7.2.8 > libg++.so.2.7.2 => libg++.so.2.7.2.8 > libgtk.so.1 => libgtk.so.1.0.0 > libglib.so.1 => libglib.so.1.0.0 > libgdk.so.1 => libgdk.so.1.0.0 > libgpm.so.1 => libgpm.so.1.11 > libgdbm.so.2 => libgdbm.so.2.0.0 > libexpect5.24.so => libexpect5.24.so > libopcodes.so.2.8.1.0.1 => libopcodes.so.2.8.1.0.1 > libbfd.so.2.8.1.0.1 => libbfd.so.2.8.1.0.1 > libpanel.so.3.0 => libpanel.so.1.9.9e > libncurses.so.3.0 => libncurses.so.1.9.9e > libmenu.so.3.0 => libmenu.so.1.9.9e > libform.so.3.0 => libform.so.1.9.9e > libz.so.1 => libz.so.1.0.4 > libnewt.so.0.20 => libnewt.so.0.21 > libslang.so.0 => libslang.so.0.99.38 > /lib: > libpwdb.so.0 => libpwdb.so.0.54 > libproc.so.1.2 => libproc.so.1.2 > libpam_misc.so.0 => libpam_misc.so.0.59 > libpam.so.0 => libpam.so.0.59 > libncp.so.1 => libncp.so.1.0 > libdl.so.1 => libdl.so.1.9.5 > ld-linux.so.1 => ld-linux.so.1.9.5 > libuuid.so.1 => libuuid.so.1.1 > libss.so.2 => libss.so.2.0 > libext2fs.so.2 => libext2fs.so.2.3 > libe2p.so.2 => libe2p.so.2.3 > libcom_err.so.2 => libcom_err.so.2.0 > libutil.so.1 => libutil-2.0.5.so > libresolv.so.2 => libresolv-2.0.5.so > libpthread.so.0 => libpthread-0.6.so > libnss_nis.so.1 => libnss_nis-2.0.5.so > libnss_files.so.1 => libnss_files-2.0.5.so >
Your Home Town Provides Everything You Need
YOUR HOME TOWN WILL DO 100% OF THE WORK FOR YOU WE OFFER: You the chance to own your own Home Based Business. WE OFFER: To build your Home Based Business for you. WE OFFER You financial independence. WE OFFER: You life saving and life changing products. WE OFFER: You the easiest way we know to, improve your Health, your Wealth and your Happiness. For more information Call: Our toll free 24 hr message center at 888-771-9338 Our toll free 24 hr recorded message at 888-771-9340. Reference # 1007698 our research showed you would be interested in this subject. If this is not true and you would like to be removed from our data base please call 888-771-9338 and leave your e-mail address for removal. Thank You
interNet Presence - we'll do the work
EXPOSURE to YOUR MARKET
Have you captured your Internet Market ?
THE INTERNET
There are currently over 45 million Internet users and thousands are
joining each day. Currently, the Internet is experiencing both a
phenomenal and exponential growth rate. Imagine the amount of
prospects increasing daily.
DO YOU HAVE A PRODUCT OR SERVICE ?
IS YOUR MARKET BEING REACHED OR LIMITED BY:
* Geographic boundaries or location
* Lack of prospects
* Lack of exposure
DO YOU BELIEVE YOU HAVE A VIABLE PRODUCT OR SERVICE ?
Did you know that there is a method of marketing that costs pennies
but have the same effect as direct postal mail? This can be made
possible through recent Internet technology breakthroughs. You can
now compete with the big boys, with exposure in MASSIVE NUMBERS,
without expensive investments such as those associated with
television commercials, radio advertising, direct postal mail, or
telemarketing.
THE SOLUTION - Direct E-mail Marketing
Direct E-mail marketing is a proven and profitable method with a
global market, incurring a small investment. It is more advantageous
than conventional marketing and the risk is minimal. The prospects
are millions worldwide and can be reached for much less than
conventional methods. We specialize in Direct E-mail and can send
your Ad to thousands of general prospects nationwide or worldwide.
WE CAN SEND YOUR ADVERTISEMENT..
TO THOUSANDS.OR.MILLIONS - Targeted OR General
Targeted Mailings Available !!
If your product or service demands a targeted market such as
nationality, gender, age, hobby, occupation or anything, we can send
your Ad to targeted recipients using our own advanced software
technology. Our technology can gather fresh and targeted or general
email addresses of your prospects. This unique and powerful
technology also gives us the capability to gather other important
contact information such as postal addresses, telephone and facsimile
numbers. If your firm is involved in direct mail or telemarketing,
this technology is worth asking about.
HIGHEST QUALITY SERVICE at the BEST PRICE !!!
Let the Pro's help YOU !!!
Like numerous businesses and organizations,
we can help you GET THE WORD OUT.
__
MORE INFO (24 hrs): 626-839-3835 (US)
__
*** end ***
TYA archive @dragon
Hi, got some mails by users reporting a broken TYA archive at dragon site (tya.home.ml.org). So perhaps you might better access ftp://gonzalez.cyberus.ca/pub/Linux/java/tya07.tgz BTW, the original archive size is 103927 byte. keep swingin' Albrecht
Some problems with jdk1.1.6v2 and Debian 2.0 Beta
Hi, Recently I have update my Debian 1.1.3 system to Debian 2.0 Beta. In this current version Debian has migrated to libc6. Therefore I have installed jdk1.1.6v2 for glibc. Now the problem is that some package, like Sun JavaWorkShop 2.0 have a change of color. Before the system upgrade, with jdk1.1.6v2 for lib5 all worked fine Have you any idea ? Paolo Sommaruga Garda Access Internet Service Garda (Vr) Italy
When will JDK 1.2 beta be released?
I want to use a package that requires Java2D and Java3D which are new for JDK 1.2 beta, so I was wondering two things (1) when/if do you think you will release version 1.2? (2) is it possible to just download the Java2D and Java3D classes and stick them in my classpath? thanks, Seth
JMAPI
I was wondering what I would need to do to get JMAPI working under Blackdown's jdk1.1.6v2 which I already have installed? All, I really want is access to some of the SNMP interface functionality. Thanks! -Dan -- -- Daniel David Benson[EMAIL PROTECTED] System Administratorhttp://wwwcsif.cs.ucdavis.edu/~bensond Social Science Data Service pgp - finger [EMAIL PROTECTED] University of California, Davis Linux User --
Startup problems
I am having some trouble with jdk-1.1.6 for linux. I installed the tar files and put the bin/ directory on my path. But: $ javac HelloWorldApp.java Segmentation fault (core dumped) I run RedHat 5.0, and I am using the glibc version of jdk. Also, I assume it's important to compile the kernel for Java binaries? I did this. Per request, here is the output of ldconfig -D /sbin/ldconfig: version 970402 /usr/i486-linuxaout/lib: libvga.so.1 => libvga.so.1.2.7 libtk.so.3 => libtk.so.3.1.1 libtcl.so.3 => libtcl.so.3.1 libm.so.4 => libm.so.4.6.27 libdb.so.1 => libdb.so.1.85.1 libcurses.so.0 => libcurses.so.0.1.2 libc.so.4 => libc.so.4.7.2 libXt.so.6 => libXt.so.6.0 libXt.so.3 => libXt.so.3.1.0 libXpm.so.4 => libXpm.so.4.2 libXaw.so.6 => libXaw.so.6.0 libXaw.so.3 => libXaw.so.3.1.0 libXIE.so.6 => libXIE.so.6.0 libX11.so.6 => libX11.so.6.0 libX11.so.3 => libX11.so.3.1.0 /usr/i486-linux-libc5/lib: libvgagl.so.1 => libvgagl.so.1.2.11 libvga.so.1 => libvga.so.1.2.11 libtermcap.so.2 => libtermcap.so.2.0.8 libstdc++.so.27 => libstdc++.so.27.1.4 libpanel.so.3.0 => libpanel.so.1.9.9e libncurses.so.3.0 => libncurses.so.1.9.9e libmenu.so.3.0 => libmenu.so.1.9.9e libm.so.5 => libm.so.5.0.6 libg++.so.27 => libg++.so.27.1.4 libform.so.3.0 => libform.so.1.9.9e libc.so.5 => libc.so.5.3.12 libXtst.so.6 => libXtst.so.6.1 libXt.so.6 => libXt.so.6.0 libXpm.so.4 => libXpm.so.4.9 libXmu.so.6 => libXmu.so.6.0 libXi.so.6 => libXi.so.6.0 libXext.so.6 => libXext.so.6.3 libXaw3d.so.6 => libXaw3d.so.6.1 libXaw.so.6 => libXaw.so.6.1 libXIE.so.6 => libXIE.so.6.0 libX11.so.6 => libX11.so.6.1 libSM.so.6 => libSM.so.6.0 libPEX5.so.6 => libPEX5.so.6.0 libICE.so.6 => libICE.so.6.3 /usr/X11R6/lib: libXpm.so.4 => libXpm.so.4.10 libXtst.so.6 => libXtst.so.6.1 libXt.so.6 => libXt.so.6.0 libXp.so.6 => libXp.so.6.2 libXmu.so.6 => libXmu.so.6.0 libXi.so.6 => libXi.so.6.0 libXext.so.6 => libXext.so.6.3 libXaw.so.6 => libXaw.so.6.1 libXIE.so.6 => libXIE.so.6.0 libX11.so.6 => libX11.so.6.1 libSM.so.6 => libSM.so.6.0 libPEX5.so.6 => libPEX5.so.6.0 libICE.so.6 => libICE.so.6.3 libXaw3d.so.6 => libXaw3d.so.6.1 libMagick.so.3.9 => libMagick.so.3.9.1 /usr/lib: libtk8.0.so => libtk8.0.so libtkx8.0.0.so => libtkx8.0.0.so libtclx8.0.0.so => libtclx8.0.0.so libtcl8.0.so => libtcl8.0.so libvgagl.so.1 => libvgagl.so.1.2.11 libvga.so.1 => libvga.so.1.2.11 libreadline.so.3 => libreadline.so.3.0 libhistory.so.3 => libhistory.so.3.0 libmh.so.3.2 => libmh.so.3.2 libtiff.so.3 => libtiff.so.3.4 libpng.so.0 => libpng.so.0.96 libjpeg.so.6 => libjpeg.so.6.0.1 librle.so.1 => librle.so.1.0.0 libppm.so.1 => libppm.so.1.0.0 libpnm.so.1 => libpnm.so.1.0.0 libpgm.so.1 => libpgm.so.1.0.0 libpbm.so.1 => libpbm.so.1.0.0 libfbm.so.1 => libfbm.so.1.0.0 libstdc++.so.2.7.2 => libstdc++.so.2.7.2.8 libg++.so.2.7.2 => libg++.so.2.7.2.8 libgtk.so.1 => libgtk.so.1.0.0 libglib.so.1 => libglib.so.1.0.0 libgdk.so.1 => libgdk.so.1.0.0 libgpm.so.1 => libgpm.so.1.11 libgdbm.so.2 => libgdbm.so.2.0.0 libexpect5.24.so => libexpect5.24.so libopcodes.so.2.8.1.0.1 => libopcodes.so.2.8.1.0.1 libbfd.so.2.8.1.0.1 => libbfd.so.2.8.1.0.1 libpanel.so.3.0 => libpanel.so.1.9.9e libncurses.so.3.0 => libncurses.so.1.9.9e libmenu.so.3.0 => libmenu.so.1.9.9e libform.so.3.0 => libform.so.1.9.9e libz.so.1 => libz.so.1.0.4 libnewt.so.0.20 => libnewt.so.0.21 libslang.so.0 => libslang.so.0.99.38 /lib: libpwdb.so.0 => libpwdb.so.0.54 libproc.so.1.2 => libproc.so.1.2 libpam_misc.so.0 => libpam_misc.so.0.59 libpam.so.0 => libpam.so.0.59 libncp.so.1 => libncp.so.1.0 libdl.so.1 => libdl.so.1.9.5 ld-linux.so.1 => ld-linux.so.1.9.5 libuuid.so.1 => libuuid.so.1.1 libss.so.2 => libss.so.2.0 libext2fs.so.2 => libext2fs.so.2.3 libe2p.so.2 => libe2p.so.2.3 libcom_err.so.2 => libcom_err.so.2.0 libutil.so.1 => libutil-2.0.5.so libresolv.so.2 => libresolv-2.0.5.so libpthread.so.0 => libpthread-0.6.so libnss_nis.so.1 => libnss_nis-2.0.5.so libnss_files.so.1 => libnss_files-2.0.5.so libnss_dns.so.1 => libnss_dns-2.0.5.so libnss_db.so.1 => libnss_db-2.0.5.so libnss_compat.so.1 => libnss_compat-2.0.5.so libnsl.so.1 => libnsl-2.0.5.so libm.so.6 => libm-2.0.5.so
Re: JClassPatch
On Mon, 6 Jul 1998 [EMAIL PROTECTED] wrote: > > > On Tue, 7 Jul 1998, Kurt Huwig wrote: > > > -BEGIN PGP SIGNED MESSAGE- > > > > Hello! > > > > I made a small script to patch ZIPped or JARed classfiles. It is currently very > > broken, because it just can handle absolute paths, but you should be able to do > > something like > > > > JClassPatch /usr/lib/java-classes/swingall.jar /home/kurt/Win32PlafOnLinux.diff > > > > and get a new swingall.jar with the Win32 Look & Feel enabled with Linux. > > > > Please comment on a program like this. > > > > Kurt > > > Very interesting. The only problem is that I received a ...tar.bz2 file > that I dont seemed to be able to decompress. Excuse my ignorence but could > you clue me into untaring this file. > Thank you everyon who have answered my first post. In that journey I discovered: 1. Jad wich is the fastest and most powerfull java decompiler I've seen 2. bzip2 a very powerfull zip comp/decompresser 3. JClassPatch with the Win32PlaOnLinux.diff. Now I got windows look and feel on my Linux swing apps. These utilities have enrich my tools box significantly. Keep posting this kind of info. Richard
Re: When will JDK 1.2 beta be released?
Bruce J. Carter wrote: BTW for those interested, we are working on a "native_threads" port of the JDK, taking advantage of the pthreads in the glibc package, which does include linuxthreads and the libraries libpthreads.so and libpthreads.a. We are hoping to have this as a release in the not too distant future. Yeah! -- Grace and peace to you from God our Father and the Lord Jesus Christ, David Guthrie
