Frequently Asked Questions
Version 1.5
(last modified: May 07, 1998)
Index:
Section 0: The Basics Q0.0: What is "lxrun"? Q0.1: How can I get started using lxrun! Q0.2: How does lxrun work? Q0.3: That's brilliant. Who was the genius who came up with lxrun? Q0.4: What documentation for lxrun exists? Section 1: Using lxrun Q1.0: What binary formats does lxrun support? Q1.1: What does lxrun need in order to work? Q1.2: How can I run Linux(R) applications that use audio? Q1.3: What sorts of Linux binaries work well with lxrun? Q1.4: How can i run StarOffice with lxrun? Section 2: Adding System Calls to lxrun Q2.0: How complete is lxrun? Q2.0.1: Which system calls does lxrun support? Q2.1: What if I find a Linux binary that lxrun doesn't support? Section 3: Troubleshooting Q3.0: What does "linuxemul: fatal error: program load failed: No such file or directory" mean? Q3.1: What does "progname: can't load library 'some_library_name.so'" mean? Q3.2: Why are my Linux binaries unable to find their data files? Q3.3: What should i do if i find a problem with lxrun ? Q3.4: What does the following error message mean? myprog: can't resolve symbol '__iob' myprog: can't resolve symbol '__iob' myprog: can't resolve symbol '__ctype' === Section 0: The Basics === Q0.0: What is "lxrun"? A: It is a Linux emulator for SCO OpenServer and UnixWare machines. Q0.1: How can I get started using lxrun! A: Follow these steps: 0. Unpack the latest pre-compiled distribution, available at the lxrun home page (http://www.ugcs.caltech.edu/~steven/lxrun/) and at the SCO Skunkware site (http://skunkware.dev/skunkware/emulators/index.html#lxrun). Do this as "root" from the root directory (/). Issue the commands (assuming you downloaded into /tmp) : # cd / # gzcat /tmp/lxrun-x.x.x.tar.gz | tar xf - (where x.x.x is the version you downloaded.) The lxrun distribution should extract into the /etc and /usr/local directories. 1. Copy a Linux binary to the /usr/local/linux/bin directory If you don't have a Linux system at hand, use one of the mirrors at ftp://sunsite.unc.edu/pub/Linux/welcome.html to download an app off the net. Let's say the Linux binary is called "lyap". 2. Create a symbolic link to "lxfront" as follows : # ln -s /usr/local/linux/bin/lxfront /usr/local/bin/lyap 3. Type "/usr/local/bin/lyap" or simply "lyap" if /usr/local/bin is in your execution search path. 3b. Optionally, set the environment variable LINUX_ROOT to "/usr/local/linux" and execute your Linux applications by running "lxrun (app-pathname)" where "(app-pathname)" refers to the Linux application path (lxfront does this for you). Q0.2: How does lxrun work? A: It works by remapping system calls on the fly. As it turns out, there's not much difference between Linux and SCO binaries. The main difference is the way in which system calls are handled. In Linux, an "int $0x80" instruction is used, which jumps to the system-call-handling portion of the Linux kernel. On SCO systems, "int $0x80" causes a SIGSEGV signal. lxrun intercepts these signals and calls the SCO equivalent of the system call that the Linux program attempted. The result is that the Linux binary runs (with the help of lxrun) on the SCO platform with a small (usually negligible) performance penalty. All this is accomplished without modifying the kernel. Q0.3: That's brilliant. Who was the genius who came up with lxrun? A: Michael Davidson, an engineer at SCO. Q0.4: What documentation for lxrun exists? A: A good starting point is the paper presented at the 1998 USENIX technical conference in New Orleans. This is available in a variety of formats - HTML Postscript SGML DVI Info RTF TeX Text In addition, check the doc subdirectory of the lxrun source. === Section 1: Using lxrun === Q1.0: What binary formats does lxrun support? A: lxrun understands Intel Linux a.out and ELF format binaries. Q1.1: What does lxrun need in order to work? A: To run most Linux programs, lxrun requires the help of the Linux dynamic loader (ld.so) and whatever Linux shared libraries are required by the program. Follow the steps in Q0.1 above to set up lxrun. Q1.2: How can I run Linux applications that use audio? If you want to run a program that uses audio, get a copy of the OSS drivers from: http://skunkware.dev/skunkware/audiovis/index.html#4front for 100% soundblaster compatible cards or: http://www.4front-tech.com/ for other sound cards. Q1.3: What sorts of Linux binaries work well with lxrun? A: Most programs that do not rely on Linux-specific quirks or deal directly with hardware should work under lxrun. Users of lxrun have reported success with raplayer (RealAudio client), xquake, the StarOffice suite, gcc (the GNU C compiler), and a myriad of smaller apps and utilities. While running most apps is usually straightforward, installing them and getting everything set up correctly can be tricky. See the official lxrun WWW site (http://www.ugcs.caltech.edu/~steven/lxrun/) for hints on getting some of the more troublesome apps working. Q1.4: How can i get StarOffice to run with lxrun? A: Robert Lipe has written a fairly detailed account of his exercise in getting StarOffice 3.1 running under lxrun 0.8.8. If you attempt this, or better, StarOffice 4.0 with lxrun 0.8.9 or later, please forward your experiences to rr@ronrecord.com. === Section 2: Adding System Calls to lxrun === Q2.0: How complete is lxrun? A: Somewhat complete. Obviously, the more system calls lxrun is able to translate, the more complete its emulation capabilities. In recent releases of lxrun, there are still quite a few unimplemented system calls, but they are calls that are not used very often. So lxrun can successfully run _many_ Linux binaries. Q2.0.1: Which system calls does lxrun support? A: If you have the lxrun source (release 0.9.0 or later), you can run the SyscallScript utility and it will produce a list of supported, partially supported, and unsupported system calls in the file SyscallTable.html. Q2.1: What if I find a Linux binary that lxrun doesn't support? A: Follow these simple steps: 0. Go to http://skunkware.dev/skunkware and make sure you have the most recent version of lxrun. If not, download the latest one and try it. We are updating lxrun with new system calls all the time. 1. Recompile lxrun with the TRACE option enabled. (This requires modifying one line in the Makefile.) This will cause lxrun to produce a history of all system calls used by the binary as it was run (similar to the "truss" and "trace" commands). The trace dump will be created in a file called "/tmp/lxrun.nnn" where "nnn" is the process id. 2. Try to narrow down exactly which system call failed. Most likely, the failure will be due to a system call that has not yet been implemented in lxrun. 3. Implement the system call mapping. This is usually pretty easy to do. The vast majority of lxrun's code does mappings of this sort, so you can pick out almost any source file to see how it is done. Chances are, the system call you need to remap is already in one of the lxrun source files, but its code looks something like this: int lx_flock() { errno=ENOSYS; return -1; } This means that you're the first person who has gotten around to mapping that particular system call. 4. After making your modification, recompile lxrun and see if it works. You may have to remap more than one system call to get your binary working! 5. E-Mail your changes to skunkware@ronrecord.com. This way, we can put your changes into the next release of lxrun. 6. If steps 1-5 seem are beyond your programming ability, contact skunkware@ronrecord.com and maybe one of the Skunk team will have time to give you a hand with it. Make sure to tell us exactly what program you're having trouble with, and if possible, tell us where you got it. === Section 3: Troubleshooting === Q3.0: What does "linuxemul: fatal error: program load failed: No such file or directory" mean? A: It probably means you have your LINUX_ROOT environment variable set up incorrectly. Q3.1: What does "progname: can't load library 'some_library_name.so'" mean? A: It means you're missing a shared library that is needed to run a particular binary. You can either try to find a compiled version of the library from a Linux ftp site (such as ftp://sunsite.unc.edu/pub/Linux/libs/) or if you have access to a running Linux system, you can copy the library directly. You should put the library in $LINUX_ROOT/lib on your SCO system (/usr/local/linux/lib by default). Q3.2: Why are my Linux binaries unable to find their data files? A: To aid in the emulation process, lxrun prepends the contents of the $LINUX_ROOT variable too many common pathnames. Try putting your program's data files in $LINUX_ROOT/whatever instead of /whatever. Q3.3: What should i do if i find a problem with lxrun ? A: Please report any difficulty you have with lxrun by e-mailing skunkware@ronrecord.com. Feel free to include suggestions, comments, code modifications, extensions, ... Q3.4: What does the following error message mean? myprog: can't resolve symbol '__iob' myprog: can't resolve symbol '__iob' myprog: can't resolve symbol '__ctype' A: It means the Linux dynamic loader found a native SCO library and is using it instead of the corresponding Linux binary. (You can find out exactly which library is causing the problem by examining the lxrun.log file produced by a debugging version of lxrun.) This glitch will only show up if you have native libraries installed that have the same names as a needed Linux binaries. If you have XFree86 installed, the /usr/X11R6/lib libraries are common culprits. The best solution is to make sure no native libraries are available anywhere under the directory pointed to by $LINUX_ROOT.
Visit the lxrun web site at http://www.ugcs.caltech.edu/~steven/lxrun/ or the lxrun source download areas at ftp://dontask.caltech.edu/pub/lxrun/ and ftp://ftp.sco.com/skunkware/src/emulators.
(R) Linux is a trademark or registered trademark of Linus Torvalds in Australia, Germany, Japan, the United States, and other countries.