ubuntu 10.10 alternateシステムSSHサービスインストールの概要



ubuntuシステムSSHサービスインストールの概要
 
最近androidの开発を始めて、会社のため、仕事はすべて単位でするしかなくて、多くの时家に帰ってまたコードの方面のものを学びたいと思って、ネット上で绍介するandroidソースの开発に苦労してすべてubuntuシステムの上で开発して、仕方がなくて、ただ以前ずっと使っていたcentosなどのいくつかのサーバーを舍てて、自分でubuntuシステムを再インストールしました.
システムのインストールはとても速くて、30分もしないうちに終わりました.システムに入ってみると、突然入ったubuntuシステムがsshサービスをサポートしていないことに気づき、あまり考えていないので、インストールしましょう.
おとなしくて、知らないふりをしないで、ubuntuインストールサービスがapt-getツールのオンラインインストールであることを発見しました(少なくともネット上で紹介されているのはこのような方法です).検索すると、投稿で紹介されているのは基本的に次のコマンドです.
         sudo apt-get install openssh-server
組み立てたばかりのubuntuを叩くと、次のエラーが発生します.
steve@basil:~$ sudo apt-get install openssh-server Reading package lists... Done Building dependency tree Reading state information... Done Package openssh-server is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package openssh-server has no installation candidate
検索すると、検索できる投稿は基本的に2つのコマンドを先に使用すると言います.
       sudo apt-get update
       sudo apt-get upgrade
しかし、実際に私が上記の2つのコマンドを使用しても、sudo apt-get install openssh-serverでは上の赤い部分のエラーが発生します.崩壊寸前に、突然このような投稿が見られました.
http://icesquare.com/wordpress/package-ssh-is-not-available-but-is-referred-to-by-another-package-this-may-mean-that-the-package-is-missing-has-been-obsoleted-or-is-only-available-from-another-source/
           sudo apt-get install openssh-server         ,          /etc/apt/source.list              。       ubuntu   ,                         ,             。        /etc/apt/source.list    ,       。   ,          ,           ,              ,         ,           :
        deb http://mirrors.163.com/ubuntu/ hardy main restricted universe multiverse
        deb-src http://mirrors.163.com/ubuntu/ hardy main restricted universe multiverse
  /etc/apt/source.list         ,       ,    

       sudo apt-get update
       sudo apt-get upgrade
   sudo apt-get install openssh-server
    ,        。     ,      openssh-client     。 
   sudo apt-get remove openssh-client
       openssh-client,   ,      ,      。  , http://39382728.blog.163.com/blog/static/3536006920110100120876/

に表示されます.もとは使っていた
        sudo apt-get remove openssh-client
コマンドをアンインストールします./etc/apt/sourceを使用します.Listファイルで指定したソースは、現在インストールされているopenssh-clientをアンインストールします.バージョンの違いにより、アンインストールに失敗しました.解決策はまず/etc/apt/sourceを注ぐことだ.リストに書き込まれたばかりのソース情報(実際にはすべてのソース情報を注視できます)を
        sudo apt-get update
        sudo apt-get upgrade
さいごさいよう
        sudo apt-get remove openssh-client
コマンドをアンインストールすると、autoremoveを使用してアンインストールするよう求められます.
        sudo apt-get autoremove openssh-client
アンインストールしてください.そしてまたソース情報を発信して、再び
       sudo apt-get update
       sudo apt-get upgrade
  

       sudo apt-get install openssh-server
インストールに成功しました.
 
以上の分析を総合して、以下の手順でインストールすればいいです.
1.注視する/etc/apt/source.listのすべてのソース、sudo apt-get update、sudo apt-get upgrade
2.sudo apt-get autoremove openssh-clientで元のopenssh-clientをアンインストールする
3.で/etc/apt/source.listに使用可能なソースを追加し、sudo apt-get update、sudo apt-get upgrade
4.sudo apt-get install openssh-serverでsshサービス側をインストールする
 
自己起動の設定:
vi/etc/rc.local加入:service sshd startまたは/etc/init.d/sshd start