Sponsored Content
Full Discussion: vm ware linux
Top Forums Shell Programming and Scripting vm ware linux Post 302640091 by prabhu_kumar on Monday 14th of May 2012 05:30:12 AM
Old 05-14-2012
vm ware linux

HI I am using vmware on my windows system and I had the red hat linux working on my system.But the problem I'm facinf certain commands are not working in lunux.
i don't know the reason why

ex : echo $shell

this should dispaly the shell.but system responds with blank line.

ex : echo $HOME
again blnk line

kindly help do i need to change any settings?
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

SCO Unix Ware 7

I have Installed SCO UnixWare 7 on to a 13 gig hd and up on istallation I noticed that that only 8gs where detected. I went ahead and continued the install just to see what I could learn from this. I'd like to know what happend. Also I used a free none comersial single user licenses that I had... (1 Reply)
Discussion started by: kikkin
1 Replies

2. UNIX for Advanced & Expert Users

Question - Does anyone know a good forum for selling Unix H/ware?

Hi ... apologies for posting in this section ... I figured this would be the best place to pose this question - does anyone know a good forum for selling Unix related hardware - I have a handful of HP C3750's that I would like to sell. I am located in Toronto. Thx. (2 Replies)
Discussion started by: krs1
2 Replies

3. What is on Your Mind?

Middle ware application in Solaris

Hi Friends I need ur suggestions. I have 3+ experience in solaris10. Iam planning for study Web sphere in UNIX. Is this the right choice can i do that. how is the market value for WEBSPHERE. Waiting for the replys (0 Replies)
Discussion started by: suresh_krish
0 Replies

4. Solaris

Having solaris installed over VM ware machine in windows

I have installed solaris 10 over VM ware in windows machine. now i want to share the files from windows to solaris. how can i do so.. and pls tell if through putty i can access the solaris from windows machine without logging onto VMware. (4 Replies)
Discussion started by: jain_sharad143
4 Replies

5. Solaris

Solaris 10 SPARC for VM Ware

Hi All, Actually i need to install solaris 10 version over VMWare which is installed over my windows machine. On that solaris version i need to install Weblogic application server, I need to know where can i download SOLARIS 10 for this and also what is the difference in SPARC and x86 version and... (10 Replies)
Discussion started by: jain_sharad143
10 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 04:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy