thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Sun Jul 31, 2005 7:56 am Post subject: FreeBSD : Display information about the system |
|
|
1) Determining the Hardware Type/platform:
# uname –m
2) Determining machine processor architecture:
# uname –p
3) Determining FreeBSD release level:
# uname –r
Generally, following command is use to get all info at a time:
# uname -mrs |
|