Uname command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Uname command
# 1  
Old 11-28-2009
Uname command

Hi,

Can anyone let me know the -n option in uname command in unix?

Gone through the man pages of uname, but unable to interpret.

Thanks in advance.
# 2  
Old 11-28-2009
There's no standard "uname". While I suspect that all uname's probably do implement -n somewhat identically, you can't be certain because there is variance on other options across different implementations.

Therefor, I can't imagine what in the man page confused you. I don't mean that sarcastically - I mean that because I don't know what man page you read, I don't know why it was confusing.

For example, on my OS X box here, it says

Quote:
-n print the nodename (the nodename may be a name that the system is
known by to a communications network).
On a nearby BSD box, man is more terse.

Quote:
-n Write the name of the system to standard output.
A Linux box says:

Quote:
-n, --nodename
print the network node hostname
An old SCO box tries to be more helpful:

Quote:
-n
Print the hostname (formerly also known as the ``node name''); that is, the first part (up to the first "." character) of the hostname parameter.
But it's not just the man pages. Implementation is different also. That BSD box prints out everyhing:

So does the Mac:

Quote:
$ uname -n
macbook.home
A SCO box:

Quote:
scosysv
And that's just -n, which is fairly dependable. Move into other flags and things can get very different.

Last edited by TonyLawrence; 11-28-2009 at 11:31 AM.. Reason: left out a word
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

uname -a

bssmsrv223:/ 53 ] uname -a SunOS bssmsrv223 5.10 Generic_118833-36 sun4u sparc SUNW,Sun-Fire-V245 bssmsrv223:/ 54 ] what does 118833-36 denotes in Generic_118833-36 (2 Replies)
Discussion started by: hiten.r.chauhan
2 Replies

2. UNIX for Advanced & Expert Users

tr command with uname -n

Using the command : echo $eup_terminal_code | tr -s 'mil vrn qcm' 'mci pql qcm' it works,but this translation changes depending on the system. I'd like to define the following variables ,one for each system : mil22h_from='mil vrn frl' mil22h_to='mci vci fci' ... (4 Replies)
Discussion started by: Pierluigi.sala
4 Replies

3. Solaris

uname help

hi all, Operating System Name : Unix Sun Solaris Operating system release level : 5.10 Operating system version : Generic_137111-06 i know the release level that is kernel version Generic_137111-06 what is number... (6 Replies)
Discussion started by: coxmanchester
6 Replies

4. UNIX for Advanced & Expert Users

RedHat, Solaris - what is uname command ??

Hi ! All I'm big fan of Unix/Linux . I want understand the basics of linux/unix version and How they are related to Vendor ... releases. uname -a will give the OS details. But can somebody provide me a pointer , to understand the very BASICS of these terminology like Million Thanks.!!! (2 Replies)
Discussion started by: dashok.83
2 Replies

5. Solaris

small doubt reg uname command

Am new to solaris can anyone explain the fields in the below command. Also let me know the difference between nodename and hostname. Here osnask2 is the hostname and type SUNOS. What abt the remaining fields.? #uname -a SunOS osnska2 5.8 Generic_117350-47 sun4u sparc SUNW,Sun-Fire-480R (1 Reply)
Discussion started by: rogerben
1 Replies

6. UNIX for Advanced & Expert Users

uname info

Hi all, on my linux i typed uname -a which gave me Linux dell.domain.net 2.6.13-1.1526_FC4smp #1 SMP Wed Sep 28 19:30:04 EDT 2005 i686 i686 i386 GNU/Linux I was checking kernel version i also didnt know what linux i have... So if i undersood this correctly , i have fedora core 4 ? Also ,... (3 Replies)
Discussion started by: ttoni
3 Replies

7. Shell Programming and Scripting

ssh and remote command exec `uname -r`

Hi guys, I am trying to do a ssh for performing a set of actions. Find it below: I need to put the user/ kernel/ DISTRO variables before I complete this operation. what I observed is when ever I put a `command` in those quotes, it performs thta action in local system rather than remote one.... (5 Replies)
Discussion started by: jbmukund
5 Replies

8. Linux

Uname

what is the difference between uname -m and uname -i what it actually means (2 Replies)
Discussion started by: Dileepsp
2 Replies

9. AIX

uname -S

hi , i have made a mistake :( on the production enviourment by change tha host name . after that i returned back the old name. but i think this will not afeect the system until reboot the machine. laso i tried to telnet the syetem by the host name not by the IP address and it works fine. ... (2 Replies)
Discussion started by: habuzahra
2 Replies
Login or Register to Ask a Question