Bitkistl

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Tuesday, 6 November 2012

ARM goes 64 Bit

Posted on 13:18 by Unknown
There are rumours that the ARM architecture will compete in the server market.
The architecture is called ARMv8 and will run 32 and 64 Bit Code, the first processor
designs from ARM are named Cortex-A57 (high performance) and Cortex-A53 (energy efficient).
The X-Gene from AppliedMicro has its own server-centric chip design.
  • With ARMv8 it is possible to address more then 4 GB of physical memory which is necessary for large servers.
Companies with Cortex-A5x license:
AMD, Broadcom, Calxeda, HiSilicon, STMicroelectronics, Samsung,
Freescale 
    Linux support is ready soon:
    http://www.h-online.com/open/news/item/64-bit-ARM-support-merged-into-Linux-kernel-1721911.html

    Debian support for ARM:
    http://wiki.debian.org/Arm64Port

    First Silicon from AppliedMicro:
    http://www.pcworld.com/article/2013429/dell-testing-64bit-arm-server-with-chip-from-appliedmicro.html

    Specification for server board ready:
    http://www.marketwire.com/press-release/appliedmicro-contributes-first-arm-based-microserver-specification-open-compute-project-nasdaq-amcc-1746572.htm 

    Micro module:
    http://www.opencompute.org/wp/wp-content/uploads/2013/01/Open_Compute_Project_MicroServer_AppliedMicro_MicroModuleMotherboard_Specification_v0.3.pdf

    Server from Mitac:
    http://www.mitac.com/Business/7-Star.html

    Spec:
    http://www.opencompute.org/wp/wp-content/uploads/2013/01/Open_Compute_Project_ARM_Server_Specification_v0.3.pdf

    http://www.opencompute.org/     interesting organisation

    X-Gene up to 3 GHz:    
    http://www.apm.com/products/x-gene 

    Apples A7 processor in iPhone5s is based on ARMv8:
    http://www.anandtech.com/show/7304/apple-announces-a7-worlds-first-64bit-smartphone-soc

    Combine - big.LITTLE Processing:
    http://www.arm.com/products/processors/technologies/biglittleprocessing.php
    Read More
    Posted in | No comments

    Saturday, 12 May 2012

    Writing a Toolbar with Java

    Posted on 10:54 by Unknown

    This Java example shows how to program a Toolbar by the use of a string array and an index for the buttons. It shows how to respond to click events.

    import java.awt.Container;
    import java.awt.FlowLayout;
    import java.awt.Font;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.IOException;
    import javax.swing.JButton;
    import javax.swing.JFrame;

    public class mButton {


      String[] Kommandos = {"xterm" ,"gedit" ,"xclock"};       //Define some buttons
      JButton Jb[] = new JButton[Kommandos.length];


    public mButton() {
       
        JFrame myframe = new JFrame("Buttons");   
        myframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        myframe.setLayout(new FlowLayout());   
        Font font = new Font("Dialog", Font.PLAIN, 30);
      
       
        for (int index=0; index < Kommandos.length; index++)
       
        {
        //System.out.println("index: " + index );
        Jb[index] = new JButton(Kommandos[index]);
        Jb[index].setFont(font);
        myframe.add(Jb[index]);
       
       
        Jb[index].addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent ev) {
                    JButton theButton = (JButton) ev.getSource();
                    String text = theButton.getText();
                   
                    //String num = theButton.getActionCommand();     
                    //System.out.println(num);
                    //System.out.println(text);

                   try {
                    Runtime.getRuntime().exec(text);        
                    } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                    }          
                }                  
        });
          
        myframe.pack();
        myframe.setLocationRelativeTo(myframe);    //center on screen
        myframe.setVisible(true);
        myframe.setResizable(false);
       
      }
    }

    public static void main(String[] args) {
        mButton myKommands = new mButton();
      }
     

    }
    Read More
    Posted in | No comments

    Wednesday, 9 May 2012

    APT essentials

    Posted on 12:49 by Unknown
    With this commands most of your problems with linux packages can be solved.

    apt-get update          /* update list of available packages
    apt-get dist-upgrade    /* upgrade your linux distro
    apt-cache search        /* search <name> packages
    apt-cache show <name>   /* display package information for package
    apt-get install <name>  /* install package <name>
    dpkg -L <name>          /* list files installed for package <name>
    dpkg -l                 /* list all installed packages
    apt-get remove <name>   /* remove package <name>
    apt-get remove --purge  /* remove also configuration files <name>
    apt-get autoclean       /* /var/cache/apt/archives delete old archives
    apt-get clean           /* delete apt archive

    /var/lib/dpkg/status    /* text file which holds status of packages
                            /* can be edited to solve problems with      
                            /* broken packages

    Read More
    Posted in | No comments

    Monday, 23 April 2012

    Windows RT (Windows 8 on ARM based Tablet or Convertible)

    Posted on 13:17 by Unknown

    Links about Windows RT:

    German links:
    http://entwickler.com/itr/news/psecom,id,60451,nodeid,82.html
    http://de.wikipedia.org/wiki/Microsoft_Windows_8 
    http://derstandard.at/1331207196085/InSite-Folge-19-Windows-8-am-Tablet-im-Test-Top-oder-Flop 
    Tegra 3 device von Asus:
    http://www.golem.de/news/tablet-600-asus-windows-rt-tablet-mit-tegra-3-wiegt-520-gramm-1206-92258.html


    English links:
    http://en.wikipedia.org/wiki/Windows_RT
    http://www.engadget.com/2012/01/17/microsofts-windows-8-hardware-requirements/
    http://blogs.msdn.com/b/b8/archive/2012/04/19/managing-quot-byo-quot-pcs-in-the-enterprise-including-woa.aspx
    http://www.techradar.com/news/mobile-computing/tablets/windows-8-tablets-what-you-need-to-know-916134

    German video:
    http://www.youtube.com/watch?v=o9kCSbIM3Js
    Read More
    Posted in | No comments
    Newer Posts Home
    Subscribe to: Posts (Atom)

    Popular Posts

    • Linux on ARM powered Devices
      This post should give an overview on which ARM powered devices GNU/Linux runs and also gives a hint how good it is supported on the respecti...
    • The Piface Interface board
      The PiFace is actually an I/O extender that uses the SPI bus to extend the I/O capabilities of the Raspberry Pi with 8 extra input and 8 ex...
    • The OUYA console, E-Book
      The OUYA is a $99 games console powered by a Tegra 3 processor (quadcore ARM). Do you want to know what can be done with the OUYA and where ...
    • ARM goes 64 Bit
      There are rumours that the ARM architecture will compete in the server market. The architecture is called ARMv8 and will run 32 and 64 Bit ...
    • The Utilite Computer
      The Utilite Computer is available with 1/2/4 Cortex A9 cores clocked at max. 1.2 Ghz. The Utilite is delivered with Ubuntu 12.04 pre-install...
    • APT essentials
      With this commands most of your problems with linux packages can be solved. apt-get update          /* update list of available packages apt...
    • Buch: Der Raspberry Pi Computer
      Der Raspberry Pi Computer (4 Euro für das e-Book als PDF Datei): Der Raspberry Pi ist ein scheckkartengroßer Computer mit USB,Video und LAN ...
    • Tiny Boards
      http://tinyboards.blogspot.com 
    • Raspberry Pi, E-Book
      The Raspberry Pi is a credit card sized Computer with USB, Video and Lan interfaces. Its primary use is for teaching computer science. E-Bo...
    • Writing a Toolbar with Java
      This Java example shows how to program a Toolbar by the use of a string array and an index for the buttons. It shows how to respond to click...

    Blog Archive

    • ►  2013 (7)
      • ►  July (2)
      • ►  February (3)
      • ►  January (2)
    • ▼  2012 (4)
      • ▼  November (1)
        • ARM goes 64 Bit
      • ►  May (2)
        • Writing a Toolbar with Java
        • APT essentials
      • ►  April (1)
        • Windows RT (Windows 8 on ARM based Tablet or Conve...
    Powered by Blogger.

    About Me

    Unknown
    View my complete profile