Advertisement
Guest User

uname -a

a guest
Aug 19th, 2015
539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # Let's issue a uname -a command on 64-bit Linux
  2. $ uname -a
  3. Linux host 4.0.5-300.fc22.x86_64 #1 SMP Mon Jun 8 16:15:26 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
  4. # Let's launch a bash shell with an i386 architecture exposed to the process
  5. $ setarch i386 bash
  6. # Watch uname -a give us the exposed architecture, not the kernel architecture
  7. $ uname -a
  8. Linux host 4.0.5-300.fc22.x86_64 #1 SMP Mon Jun 8 16:15:26 UTC 2015 i686 i686 i386 GNU/Linux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement