Skip to main content

Sun Microsystems

Sun Microsystems(中国大陆分公司原称作“太阳计算机系统(中国)有限公司”,现为“甲骨文(中国)软件系统有限公司”;台湾分公司原称作“升阳电脑股份有限公司”,现为“美商甲骨文有限公司台湾分公司”)创建于1982年2月24日,1986年在美国纳斯达克上市。主要产品是工作站、服务器和UNIX 操作系统。1992年升阳推出了市场上第一台多处理器工作站SPARCstation 10,并于次年进入财富500强。SUN公司的名字是由Stanford University Network缩写而来。

主要操作系统为Solaris,具有32位和64位两个版本,并同时支持SPARC系列和x86/x64系列处理器。Solaris可以兼容于Sun全系列的工作站与服务器,并可为用户掩盖底层平台差别,给用户在不同平台上提供一致的使用感受。

1995年太阳开发了Java技术,这是第一个通用软件平台。在1997年升阳开始推出其新的64位服务器家族Sun Enterprise 10000。同年又开发出Java 2。

近年Sun在设计制造基于CMT技术的UltraSPARC T1,UltraSPARC T2和Rock微处理器。

升阳在行业中被认为是最具创造性的企业之一,它想尝试新的软件方式和定价模式等等。目前它是极少数几个自己生产微处理器,电脑系统以及操作系统的公司之一。1995年以来,x86市场成长迅速。目前Sun除设计制造基于SPARC处理器的机器设备外,也与Intel & AMD合作生产x86/x64服务器。其操作系统Solaris也开始采用开放源代码,称为OpenSolaris项目。

2009年4月20日,太阳计算机系统公司宣布以每股9.50美元,74亿美金的总额被甲骨文公司收购。
目录

    1 历史
    2 硬件产品
    3 软件产品
        3.1 操作系统
        3.2 Java平台
        3.3 办公包
        3.4 数据库管理系统
        3.5 其它软件
    4 明星员工
    5 参考文献
    6 参见

历史

    2009年4月20日,甲骨文公司宣布以每股9.50美元,总计74亿美金收购太阳计算机系统公司。[5]

硬件产品

    SPARC-based系统
    x86-based系统

软件产品
操作系统

    Solaris
    OpenSolaris

Java平台

    Java
    GlassFish(Sun Java System Application Server)

办公包

    StarOffice
    OpenOffice.org

数据库管理系统

    MySQL
    Java DB

其它软件

    NetBeans
    Sun Grid Engine
    Sun Studio
    Sun Identity Manager
    Sun Virtual Box

明星员工

    比尔·乔伊(Bill Joy)、埃里克·施密特(Eric Emerson Schmidt)、伊恩·默多克(Ian Murdock)、John Gilmore、Whitfield Diffie、Radia Perlman、Marc Tremblay以及Ned Freed。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...