General Linux OS/2 Java Graphics
Always test your new computer memory with a good memory test program. I prefer memtest from Alexander Grigoriev, that does excellent stress testing under adverse conditions and has proved many SIMM modules defect here at work. Even if HIMEM.SYS or the BIOS test have not reported any problems but the system was unstable, it was shown that the memory had certain defect bits, even new modules we just bought.
You can download it from the authors home-page AleGr, or from a local copy from me here
Another program is called memtest86 and can be downloaded from memtest86.
cdrecord -v -speed=2 dev=0,6,0 -multi -data cdfile.raw
mkisofs -R -J /master/tree | cdrecord -v -speed=4 dev=0,4,0 -multi -data -dummy fs=20m -
mkisofs -R -J /master/tree | cdrecord -v -speed=4 dev=0,4,0 -multi -data fs=20m -
Writing subsequent session on the fly from a src directory:
First you need to get the info about the previous sessions from the CD-R by issuing:
cdrecord -msinfo dev=0,4,0
Then you take the last two numbers of the output and supply them to the "-C" command of mkisofs. They are the beginning sector of the last session and the starting sector of the next session. In this example 0,109098.
mkisofs -R -J -M 0,4,0 -C 0,109098 ./ | cdrecord -v -speed=4 dev=0,4,0 -multi -
Note: the options "-R -J" add Joliet and RockRidge extensions to the CD-R, such that Unix and Windows systems can read long filenames etc.
inspc48:18:16~#cdrecord -dummy -speed=2 dev=0,6,0 -data -isosize /dev/hda7 Cdrecord release 1.6.1 Copyright (C) 1995-1998 Jörg Schilling scsidev: '0,6,0' scsibus: 0 target: 6 lun: 0 Device type : Removable WORM Version : 2 Response Format: 2 Capabilities : SYNC LINKED Vendor_info : 'SONY ' Identifikation : 'CD-R CDU924S ' Revision : '1.1d' Device seems to be: Sony CDU-924S. Using driver for Sony CDU-924 (sony_cdu924). Driver flags : SWABAUDIO Starting to write CD/DVD at speed 2 in dummy mode for single session. Last chance to quit, starting dummy write in 1 seconds. cdrecord: Cannot allocate memory. Cannot send SCSI cmd via ioctl
mkdir objdir cd objdir ../configure --prefix=/own --enable-shared make CFLAGS='-O2' LIBCFLAGS='-O2' LIBCXXFLAGS='-O2 -fno-implicit-templates' bootstrap-lean
xmodmap -e 'keycode 75 = EuroSign cent'
and change all fonts that you use to iso8859-15 instead of iso8859-1 (most of them are defined in .Xdefaults). Then for XEmacs (that doesn't know 'EuroSign') in .xemacs/init.el;; eurosign
(define-key global-map '(currency) '[€])
(define-key global-map '(EuroSign) '[€])
IFS=C:\OS2\BOOT\CDFS.IFS /W
Ich benutzte zusätzlich immer den Parameter /O, da OS/2 manchmal alte Dateien reanimiert. Den Grund kenne ich nicht, bzw. ich kann diesen nicht reproduzieren.
michasetenv CLASSPATH $CLASSPATH:/tmp java Pack1.App1to run it (assuming CLASSPATH is already set), i.e. set the CLASSPATH to the base of the package directory. The Java interpreter then looks for the class in the package directory plus the class name. The . (dot) of the complete class name stands for the / (slash) in the path. The above line means: "start class App1 from subdirectory Pack1".