Sponsored Content
Full Discussion: Console problem
Operating Systems AIX Console problem Post 302155839 by magasem on Sunday 6th of January 2008 01:40:35 AM
Old 01-06-2008
Yes this is correct
 

10 More Discussions You Might Find Interesting

1. Programming

Console IO Problem ...

Does UNIX have a header file that provide the same functions as "conio.h" in Turbo C of DOS? In Turbo C of DOS, "conio.h" provide some special console IO funtions, for example, change the text color, print out a text with a specific co-ordinate, etc ... With these special functions, I can... (1 Reply)
Discussion started by: MacMonster
1 Replies

2. SCO

login problem at console

I am running sco 5.06 open server We have encountered the problem while login into the live Online server. After putting the usr as root, the system is taking time(20 Sec) to show me ‘Password:'. Sometimes the system shows login time out. Again sometimes the system is showing password:, after... (3 Replies)
Discussion started by: rahmanm
3 Replies

3. IP Networking

netscape console auth problem

:( hi all , i have installed netscape console on my local pc to connect to webmail server using LDAP . when i try to login from my console i get an error "Http Exception: Response: Http/1.1 500 Server Error Status 500" i was told that i need to add my IP to the local.conf file. ... (1 Reply)
Discussion started by: ppass
1 Replies

4. UNIX for Advanced & Expert Users

Problem regarding :::: Xen virtual console

hello, I am using fedora core 6. and there is Xen Virtual Console installed in my system ....due to which I am not able to use my serial ports....... What is thi Xen virtual console and what it does????? So, Can I unintall this Xen virtual Console..... or any method so that I can use my... (3 Replies)
Discussion started by: arunchaudhary19
3 Replies

5. Solaris

Help me with console login problem

Hi, I have solaris 10 installed on my computer and when try to login in console mode, it would give output something like this. login:root Password: Last login: Thu May 29 10:00:55 on console -sh: syntax error: `(' unexpected -sh: grep: not found -sh: uname: not found -sh: test:... (1 Reply)
Discussion started by: eamani_sun
1 Replies

6. Shell Programming and Scripting

output console problem

kill -s KILL 0 ----------------------- ----------------------- i have used this command in a script...it is showing "killed" in output console. i don't want that.plz help what to do.i have tried --kill -s KILL 0 >/dev/null it is still showing "killed" in the output console...what to do? (1 Reply)
Discussion started by: arghya_owen
1 Replies

7. Solaris

T5220 Console Problem

Hi Peeps, Apologies if this is the wrong forum for this, if it is can someone point me in the direction of the right one? Problem: I've dropped an XVR-300 Graphics card into a T5220, configured it to output and input from the screen and keyboard instead of the virtual console. It... (3 Replies)
Discussion started by: callmebob
3 Replies

8. Solaris

Ultra 5 serial console problem

Hi I have a stupid problem with ultra 5 console connection. I can't connect to serial port with my laptop. I made these configurations from ok prompt: OK setenv input-device ttya OK setenv output-device ttya OK setenv auto-boot? false I tried to connect to machine with cisco rollover... (5 Replies)
Discussion started by: noizer`
5 Replies

9. Solaris

Problem with Console Connection

I'm having a problem establishing a console connection between a V240 and a V440. I verified and re verified the connection was in the correct places. Commands: # tip hardwire connected Nothing happens after that. Other V440's work fine with the receiving the connection. Is there a... (8 Replies)
Discussion started by: adelsin
8 Replies

10. Solaris

Problem in intiating x11 console

Hello, I have a Solaris-10 non global zone. I am using MobaXterm. I login on box with root and then "su - caddrd" and then "/usr/local/bin/sudo -u cadwebppc /cad/envs/qa-cm/cadwccDomain/ucm/cs/bin/UserAdmin". This is supposed to open a GUI console, but it is failing and I am not able to figure... (2 Replies)
Discussion started by: solaris_1977
2 Replies
SCALBN(3)						   BSD Library Functions Manual 						 SCALBN(3)

NAME
scalbn, scalbnf, scalbnl -- exponent using FLT_RADIX LIBRARY
Math Library (libm, -lm) SYNOPSIS
#include <math.h> double scalbn(double x, int n); float scalbnf(float x, int n); long double scalbnl(long double x, int n); DESCRIPTION
The scalbn(), scalbnf(), and scalbnl() functions compute x * r^n, where r is the radix of the machine's floating point arithmetic, defined by the FLT_RADIX constant in <float.h>. The rationale is efficiency; r^n is not computed explicitly. RETURN VALUES
As described above, upon successful completion, the described functions return the exponent computed using FLT_RADIX. Otherwise the follow- ing may occur: 1. When the result would cause an overflow, a range error occurs and +-HUGE_VAL, +-HUGE_VALF, or +-HUGE_VALL is returned according to the sign of x and the return type of the corresponding function. 2. When the correct value would cause an underflow and it is not representable, a range error occurs and either 0.0 or an implementa- tion-defined value is returned. When an underflow occurs but the correct value is representable, a range error occurs but the correct value is returned. 3. If x is +-0 or +-Inf, x is returned. Likewise, if n is zero, x is returned. If x is NaN, NaN is returned. SEE ALSO
exp(3), frexp(3), ldexp(3), math(3) STANDARDS
The described functions conform to ISO/IEC 9899:1999 (``ISO C99''). BSD
September 18, 2011 BSD
All times are GMT -4. The time now is 09:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy