Sponsored Content
Full Discussion: UNIX emulators
Special Forums UNIX Desktop Questions & Answers UNIX emulators Post 41053 by norsk hedensk on Sunday 28th of September 2003 08:12:48 PM
Old 09-28-2003
well, here is a good one:
cygwin (search google)

it is not so much an emulator, but actually a posix unix layer between the win32 kernel. but many software that runs on linux is available to run on cygwin.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Windows UNIX emulators?

Is there some way I could run UNIX in a window by itself on a Win2K PC? I have to use this PC at work, and I'd like to run UNIX in the background, so I can learn the system during the inevitable lulls (my job is boring as hell). Any help would be appreciated...thanks! (7 Replies)
Discussion started by: liquidcross
7 Replies

2. Solaris

Sun OS 3 Emulators?

Hi all, I guess I'm going to get lots of annoyed people asking about windows on a unix forum but here goes. I have a win XP machine and need to run some sofware that was written on and compiled on a sun os 3 machine. Does anyone know of any emulators that will run in the windows enviromment to... (2 Replies)
Discussion started by: northernalex
2 Replies

3. UNIX for Dummies Questions & Answers

any emulators

iam new to unix , i would like to practice unix commands at home, can anyone help me to know if there are any emulators that i can download to practice or any trial versions that can be installed to practice. Regards dep (1 Reply)
Discussion started by: dep
1 Replies

4. Solaris

8&16bit emulators

Hi to everybody!! Being an Amiga junkie for almost 20 years, I recently decided to start learning a couple of thing about UNIX. My first hardware choice was a Sun U10 and than a U60! Have managed so far to set up the machines to work well with Solaris9, they really are very good but I miss my... (0 Replies)
Discussion started by: kokkiklhs
0 Replies

5. Windows & DOS: Issues & Discussions

Windows Terminal Emulators

I have been using NetTerm on various Windows flavors for a while and have just run into a problem with printer passthru (transparent printing) that I can analyse but not resolve. The setup is a Epson TM60 POS Label Printer connected XON/XOFF via COM1 on a Win98SE system. This is controlled... (3 Replies)
Discussion started by: MickZA
3 Replies

6. UNIX for Dummies Questions & Answers

Looking for Unix Emulators on Windows XP

Hello all, Forgive me if this question was asked before, I'm unable to find an answer to it on this forum upon searching "windows unix". I have Windows XP at home, and I want to practice Unix, I want to re-learn all Unix commands, Shell script programming and the Vi Editor. I'm looking... (11 Replies)
Discussion started by: thoughts
11 Replies

7. UNIX for Dummies Questions & Answers

Advanced info on CPU Emulators

I have searched and searched this topic but without looking at source code ; my next step maybe , I find the same ambiguous information. My main question is how is the target code translated? It is stated that there are variables created that hold the data that the emulated CPU would hold in... (12 Replies)
Discussion started by: theKbStockpiler
12 Replies

8. Shell Programming and Scripting

File Transfer from Window server to UNIX and UNIX to UNIX

Dear All, Can someone help to command or program to transfer the file from windows to Unix server and from one unix server to another Unix server in secure way. I would request no samba client. (4 Replies)
Discussion started by: yadavricky
4 Replies
LINUX(4)                                                   BSD Kernel Interfaces Manual                                                   LINUX(4)

NAME
linux -- Linux ABI support SYNOPSIS
To compile support for this ABI into an i386 kernel place the following line in your kernel configuration file: options COMPAT_LINUX for an amd64 kernel use: options COMPAT_LINUX32 Alternatively, to load the ABI as a module at boot time, place the following line in loader.conf(5): linux_load="YES" DESCRIPTION
The linux module provides limited Linux ABI (application binary interface) compatibility for userland applications. The module provides the following significant facilities: o An image activator for correctly branded elf(5) executable images o Special signal handling for activated images o Linux to native system call translation It is important to note that the Linux ABI support it not provided through an emulator. Rather, a true (albeit limited) ABI implementation is provided. The following sysctl(8) tunable variables are available: compat.linux.osname Linux kernel operating system name. compat.linux.osrelease Linux kernel operating system release. Changing this to something else is discouraged on non-development systems, because it may change the way Linux programs work. Recent versions of GNU libc are known to use different syscalls depending on the value of this sysctl. compat.linux.oss_version Linux Open Sound System version. The linux module can be linked into the kernel statically with the COMPAT_LINUX kernel configuration option or loaded as required. The fol- lowing command will load the module if it is neither linked into the kernel nor already loaded as a module: if ! kldstat -v | grep -E 'linux(aout|elf)' > /dev/null; then kldload linux > /dev/null 2>&1 fi Note that dynamically linked Linux executables will require a suitable environment in /compat/linux. Specifically, the Linux run-time linker's hints files should be correctly initialized. For this reason, it is common to execute the following commands to prepare the system to correctly run Linux executables: if [ -x /compat/linux/sbin/ldconfig ]; then /compat/linux/sbin/ldconfig -r /compat/linux fi For information on loading the linux kernel loadable module automatically on system startup, see rc.conf(5). This information applies regardless of whether the linux module is statically linked into the kernel or loaded as a module. FILES
/compat/linux minimal Linux run-time environment /compat/linux/proc limited Linux process file system /compat/linux/sys limited Linux system file system SEE ALSO
brandelf(1), elf(5), linprocfs(5), linsysfs(5) HISTORY
Linux ABI support first appeared in FreeBSD 2.1. BSD February 8, 2010 BSD
All times are GMT -4. The time now is 11:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy