VirtualBox

source: vbox/trunk/src/VBox/Installer/linux/VBoxSysInfo.sh@ 9082

Last change on this file since 9082 was 8155, checked in by vboxsync, 17 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1#!/bin/sh
2
3# @file
4#
5# Installer (Unix-like)
6# Information about the host system/Linux distribution
7
8# Copyright (C) 2006-2007 Sun Microsystems, Inc.
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19# Clara, CA 95054 USA or visit http://www.sun.com if you need
20# additional information or have any questions.
21#
22
23# Print information about a Linux system
24# @param distribution name of the distribution
25# @param version version of the distribution
26print_linux_info () {
27 # The following regex is not quite correct for an e-mail address, as
28 # the local part may not start or end with a dot. Please correct if
29 # this upsets you.
30 kern_ver=`cat /proc/version | sed -e 's/ ([a-zA-Z0-9.!#$%*/?^{}\`+=_-]*@[a-zA-Z0-9.-]*)//'`
31 echo "Distribution: $1 | Version: $2 | Kernel: $kern_ver"
32}
33
34# Determine the distribution name and release for a Linux system and print
35# send the information to stdout using the print_linux_info function.
36# For practical reasons (i.e. lack of time), this function only gives
37# information for distribution releases considered "of interest" and reports
38# others as unknown. It can be extended later if other distributions are
39# found to be "of interest".
40get_linux_info () {
41 if [ -r /etc/lsb-release ] && grep Ubuntu /etc/lsb-release >/dev/null 2>&1
42 then
43 # Ubuntu-based system
44 . /etc/lsb-release
45 print_linux_info "Ubuntu" $DISTRIB_RELEASE
46 elif [ -r /etc/debian_version ]
47 then
48 # Debian-based system
49 release=`cat /etc/debian_version`
50 print_linux_info "Debian" $release
51 elif [ -r /etc/mandriva-release ]
52 then
53 # Mandriva-based system
54 release=`cat /etc/mandriva-release | sed -e 's/[A-Za-z ]* release //'`
55 print_linux_info "Mandriva" $release
56 elif [ -r /etc/fedora-release ]
57 then
58 # Fedora-based
59 release=`cat /etc/fedora-release | sed -e 's/[A-Za-z ]* release //'`
60 print_linux_info "Fedora" $release
61 elif [ -r /etc/SuSE-release ]
62 then
63 # SUSE-based.
64 release=`cat /etc/SuSE-release | grep "VERSION" | sed -e 's/VERSION = //'`
65 if grep openSUSE /etc/SuSE-release
66 then
67 # Is it worth distinguishing here? I did it mainly to prevent
68 # confusion with the version number
69 print_linux_info "openSUSE" $release
70 else
71 print_linux_info "SUSE" $release
72 fi
73 elif [ -r /etc/gentoo-release ]
74 then
75 # Gentoo-based
76 release=`cat /etc/gentoo-release | sed -e 's/[A-Za-z ]* release //'`
77 print_linux_info "Gentoo" $release
78 elif [ -r /etc/slackware-version ]
79 then
80 # Slackware
81 release=`cat /etc/slackware-version | sed -e 's/Slackware //'`
82 print_linux_info "Slackware" $release
83 elif [ -r /etc/arch-release ]
84 then
85 # Arch Linux
86 print_linux_info "Arch Linux" "none"
87 elif [ -r /etc/redhat-release ]
88 then
89 # Redhat-based. This should come near the end, as it other
90 # distributions may give false positives.
91 release=`cat /etc/redhat-release | sed -e 's/[A-Za-z ]* release //'`
92 print_linux_info "Redhat" $release
93 else
94 print_linux_info "unknown" "unknown"
95 fi
96}
97
98# Print information about a Solaris system. FIXME.
99get_solaris_info () {
100 kernel=`uname -v`
101 echo "Kernel: $kernel"
102}
103
104# Print information about a MacOS system. FIXME.
105get_macos_info () {
106 machine=`uname -m`
107 kernel=`uname -v`
108 echo "Machine: $machine | Kernel: $kernel"
109}
110
111# Print information about a FreeBSD system. FIXME.
112get_freebsd_info () {
113 kernel=`uname -v`
114 echo "Kernel: $kernel"
115}
116
117system=`uname -s`
118case "$system" in
119Linux|linux)
120 get_linux_info
121 ;;
122SunOS)
123 get_solaris_info
124 ;;
125Darwin)
126 get_macos_info
127 ;;
128FreeBSD)
129 get_freebsd_info
130 ;;
131*)
132 echo "System unknown"
133 exit 1
134 ;;
135esac
136exit 0
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette