Help about "file" cmd


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help about "file" cmd
# 1  
Old 07-20-2012
Help about "file" cmd

Code:
 file /sbin/ifconfig.net-tools 
/sbin/ifconfig.net-tools: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.16, stripped

Does someone know what's the "x86-64" how it get this?
what's the 2.6.16, how it get this

and in some other linux os
Code:
/sbin/ifconfig: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped

what is the Intel 80386, can some one explain, how it get this
# 2  
Old 07-20-2012
file command uses (/etc/magic or /usr/share/magic or /usr/share/file/magic) and reads the first few bytes of the file. It then tries to decode The first n bytes and then does a lookup on those bytes in the magic file. The text you see is in the magic file.

The size of n depends on the OS.
# 3  
Old 07-21-2012
Quote:
Originally Posted by jim mcnamara
file command uses (/etc/magic or /usr/share/magic or /usr/share/file/magic) and reads the first few bytes of the file. It then tries to decode The first n bytes and then does a lookup on those bytes in the magic file. The text you see is in the magic file.

The size of n depends on the OS.
But I can't find where tell "2.6.16"
# 4  
Old 07-21-2012
Quote:
Originally Posted by yanglei_fage
But I can't find where tell "2.6.16"
You won't find that in the magic file. Once file determines that it is dealing with an elf executable, it examines various sections of the elf binary for information left behind by the toolchain that built the binary.

For example, the vendor information is in a PT_NOTES section, PT_INTERP/PT_DYNAMIC can be used to determine if the binary is statically or dynamically linked, etc. You can't use grep on the binary because a lot of this information is in a binary format (for example, the vendor name and ABI version numbers).

What are you trying to accomplish?

Regards,
Alister
# 5  
Old 07-22-2012
Quote:
Originally Posted by alister
You won't find that in the magic file. Once file determines that it is dealing with an elf executable, it examines various sections of the elf binary for information left behind by the toolchain that built the binary.

For example, the vendor information is in a PT_NOTES section, PT_INTERP/PT_DYNAMIC can be used to determine if the binary is statically or dynamically linked, etc. You can't use grep on the binary because a lot of this information is in a binary format (for example, the vendor name and ABI version numbers).

What are you trying to accomplish?

Regards,
Alister

I want to know how "x86-64" is got and how is "GNU/Linux 2.6.16" got,
the info is determined by gcc or glibc, where can I find the source code to dertermine its"x86-84" but not i386, where can I find the source code it's "2.6.16" but not "2.6.36"

Thanks for the help

Lei
# 6  
Old 07-22-2012
Read up on the ELF specification. It's all in there.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

3. Shell Programming and Scripting

Using a single "find" cmd to search for multiple file types and output individual files

Hi All, I am new here but I have a scripting question that I can't seem to figure out with the "find" cmd. What I am trying to do is to only have to run a single find cmd parsing the directories and output the different file types to induvidual files and I have been running into problems.... (3 Replies)
Discussion started by: swaters
3 Replies

4. Shell Programming and Scripting

Perl open(CMD, "cmd |"); buffering problem..

Hello, There's a third-party application's command that shows the application's status like "tail -f verybusy.log". When use the command, the output comes every 1-sec. but when it goes in a script below the output comes every 8-sec...What is the problem and how can I fix it? open(CMD,... (2 Replies)
Discussion started by: Shawn, Lee
2 Replies

5. Shell Programming and Scripting

cmd || echo "something" - doesn't exit uppon error

Hi guys, I have a shell script where I have the following: for i in ad0 ad1 do gpart create -s gpt $i || echo "Cannot create GPT partition on "$i". Exiting ..." gpart add -s 128 -t freebsd-boot $i || echo "Cannot add freebsd-boot partition on "$i". Exiting ..." gpart add -s 4G -t... (2 Replies)
Discussion started by: da1
2 Replies

6. Shell Programming and Scripting

Perl script with "chkconfig --list" cmd

Hi everybody; I try to code a script perl to list all services that are active "ON" with a chkconfig -- list the problem is that code list all services which are active or not. #!/usr/bin/perl use strict; use warnings; open(FILE,"-|") || exec "chkconfig --list |grep ON";... (2 Replies)
Discussion started by: bassma
2 Replies

7. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

8. Shell Programming and Scripting

passing the output of cmd from "eval" to a variable

Hello, I need help with the eval command. I have been building a lengthy cmd using eval, and I need to create $var from the output of the cmd. Here is what I have. Out=/dfezz1/output.txt Node="'LPAR Info:'" Gr3p0=" |grep" Printc=" prtconf" Output1=" 1>>$Out 0>&1" Cat1="cat... (8 Replies)
Discussion started by: dfezz1
8 Replies

9. Shell Programming and Scripting

Need help on use of "cmd" command in net::Telnet module in PERL

in "cmd" command i want to copy the ouput of the command excuted to a particular file in a directory. How to do this..?? Ex : $telnet->cmd(String => 'allip:acl=a1;',Prompt => '/</'); i want to copy o/p of the command "allip:acl=a1;" in a log file in a particular directory. Plz suggest.. (1 Reply)
Discussion started by: sudhakaryadav
1 Replies

10. Shell Programming and Scripting

assign shell var output of cmd "wc"

how do I feed output of "wc" to a shell script variable "countBcp"? (2 Replies)
Discussion started by: devy
2 Replies
Login or Register to Ask a Question