Amazon web services and ubuntu 10.04 ec2 instance

后端 未结 3 1139
盖世英雄少女心
盖世英雄少女心 2021-01-02 17:21

I have created ubuntu 10.04 ec2 image and now I need to install tomcat apache and jdk6 on my instance but whenever I use the command sudo apt-get install sun-java6-jdk

3条回答
  •  别那么骄傲
    2021-01-02 17:58

    Another option is to add their official repository to apt - this will provide you up to date AWS tools:

    sudo apt-add-repository ppa:awstools-dev/awstools
    sudo apt-get update
    sudo apt-get install ec2-api-tools -y
    

    This is extremely useful for farther releases and and for up to date official bug fixes etc. just by running the usual

    sudo apt-get update
    sudo apt-get upgrade -y
    

提交回复
热议问题