09-25-2009
Try scanning a known LO100 card for any special open ports. Or grab the login HTML page and grep it for any identifying strings.
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hi all,
Im new to linux... Im in need to write a shell script to check wthr JRE in linux machine... Wtz de best way to find thru BASH?? Plz help me out to solve this issue...
Thanks (3 Replies)
Discussion started by: XivaX
3 Replies
2. UNIX for Dummies Questions & Answers
There are two servers where my machine is connected. Is there any type of link formed between my machine and server machine? (1 Reply)
Discussion started by: palash2k
1 Replies
3. Solaris
Hi,
I need to find out which type of Apache is installed.
following is the list of Apache types
Covalent,
IBM HTTP,
HP Apache-based,
Oracle,
Stronghold
and may be some other as well.
If anyone know how to figure out this, please share it with me.
Thanks
Sarwan (3 Replies)
Discussion started by: sarwan
3 Replies
4. UNIX for Advanced & Expert Users
Hi all,
How to findout the file sytem type which is NFS and which is Local?
Suppose i have 5 different folders my in Root directory. dir 4 and 5 are mounted on different file system and dir 1,2 and 3 are mounted on different fild system
Now i wanted know which file sytem is Local and which... (1 Reply)
Discussion started by: psiva_arul
1 Replies
5. Shell Programming and Scripting
I currently have a statistics gathering script i run on my Linux servers. One of the stat i gather is total memory in the machine. The script is all perl with the exception of gathering the memory for that i use the following command:
$ram = (`cat /proc/meminfo | grep "MemTotal" | awk... (1 Reply)
Discussion started by: insania
1 Replies
6. Linux
Hi.
Here's my setup:
a workstation with an X server
a CentOS server with no X server installed (development, security is not a concern)
a GUI application installed on the server
When I ssh to that machine, I get:
ssh -Xl root 192.168.x.x
Warning: untrusted X11 forwarding setup... (4 Replies)
Discussion started by: flj
4 Replies
7. Ubuntu
How can I learn what time OS installed time and release information. (4 Replies)
Discussion started by: getrue
4 Replies
8. Emergency UNIX and Linux Support
Hi All,
So we added a new HP-UX 11.31 machine. Copied OS via Ignite-UX (DVD)over from this machine called machine_a. It was supposed to be named machine_c. And it is when you log in...however when I'm in the ILO console before logging in, it says:
It should say:
What gives? And how do... (4 Replies)
Discussion started by: zixzix01
4 Replies
9. Solaris
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
10. Red Hat
Hi,
i am trying to grab all the installed packages on linux machine,and only want to grab "Name" "Version" "Release" "Vendor" information
i am using below command to do so :
rpm -qa --info | grep -e 'Name' -e 'Version' -e 'Release' -e 'Vendor'
the output contains lot other info... (3 Replies)
Discussion started by: omkar.jadhav
3 Replies
LEARN ABOUT DEBIAN
sorghr.f
sorghr.f(3) LAPACK sorghr.f(3)
NAME
sorghr.f -
SYNOPSIS
Functions/Subroutines
subroutine sorghr (N, ILO, IHI, A, LDA, TAU, WORK, LWORK, INFO)
SORGHR
Function/Subroutine Documentation
subroutine sorghr (integerN, integerILO, integerIHI, real, dimension( lda, * )A, integerLDA, real, dimension( * )TAU, real, dimension( * )WORK,
integerLWORK, integerINFO)
SORGHR
Purpose:
SORGHR generates a real orthogonal matrix Q which is defined as the
product of IHI-ILO elementary reflectors of order N, as returned by
SGEHRD:
Q = H(ilo) H(ilo+1) . . . H(ihi-1).
Parameters:
N
N is INTEGER
The order of the matrix Q. N >= 0.
ILO
ILO is INTEGER
IHI
IHI is INTEGER
ILO and IHI must have the same values as in the previous call
of SGEHRD. Q is equal to the unit matrix except in the
submatrix Q(ilo+1:ihi,ilo+1:ihi).
1 <= ILO <= IHI <= N, if N > 0; ILO=1 and IHI=0, if N=0.
A
A is REAL array, dimension (LDA,N)
On entry, the vectors which define the elementary reflectors,
as returned by SGEHRD.
On exit, the N-by-N orthogonal matrix Q.
LDA
LDA is INTEGER
The leading dimension of the array A. LDA >= max(1,N).
TAU
TAU is REAL array, dimension (N-1)
TAU(i) must contain the scalar factor of the elementary
reflector H(i), as returned by SGEHRD.
WORK
WORK is REAL array, dimension (MAX(1,LWORK))
On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
LWORK
LWORK is INTEGER
The dimension of the array WORK. LWORK >= IHI-ILO.
For optimum performance LWORK >= (IHI-ILO)*NB, where NB is
the optimal blocksize.
If LWORK = -1, then a workspace query is assumed; the routine
only calculates the optimal size of the WORK array, returns
this value as the first entry of the WORK array, and no error
message related to LWORK is issued by XERBLA.
INFO
INFO is INTEGER
= 0: successful exit
< 0: if INFO = -i, the i-th argument had an illegal value
Author:
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date:
November 2011
Definition at line 127 of file sorghr.f.
Author
Generated automatically by Doxygen for LAPACK from the source code.
Version 3.4.1 Sun May 26 2013 sorghr.f(3)