Hi All: I am creating Adobe AIR Application (for Windows, Linux and MAC), which show machine's Internal IP, External IP and Host Name. I've done successfully on windows. I got host name on windows by opening the c:\windows\system32\hostname.exe application using the Native for process. But I don't know that such type of hostname application file exists in Linux or not? If it really exists, then what is its path? Please help me in how to get host name in linux through opening any executable file or through any bash command? Help me.

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

The best idea is to use

'$ uname -n'

after using

'$ uname --help'

P.S.: and yes,

$ which uname
/bin/uname
link|improve this answer
1  
@Mudasir: This answer does not refer to hostname. However, on FreeBSD, hostname, bash and uname are all in different directories (/bin, /usr/local/bin and /usr/bin, respectively), so you cannot rely on them being in the same "folder". – Johnsyweb Apr 9 '11 at 15:42
1  
@Mudasir: "I'll go for each and every directory."? This sounds like A Very Bad Idea™. – Johnsyweb Apr 9 '11 at 16:02
2  
That's the very very thing caused POSIX :) – suddnely_me Apr 9 '11 at 16:07
1  
@Johnsyweb: Yes, its sounds but what to do if there is no other way? If you know another way, then tell me :) – Mudasir Bhutto Apr 9 '11 at 16:08
1  
@Mudasir: I'm afraid I'm not an Air programmer, so I can't answer that. Sorry. My answer was to "How to get host name in Linux". It seems that typing hostname in a command-line on most OSes will give you the hostname. You just need to work out how to apply it in Air. – Johnsyweb Apr 9 '11 at 16:32
show 4 more comments
feedback

The hostname command appears in must Unixes.

Here's the path from a Mac (you mention this as one of your target platforms and I don't have a Linux host up at the moment):

% type hostname
hostname is /bin/hostname

You shouldn't need to hard-code the path, though... hostname is usually within your ${PATH} environment variable (Q.E.D.). The same should be true for Windows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.