zoukankan      html  css  js  c++  java
  • ubuntu 安装ssh-server时出现错误:openssh-server: Depends: openssh-client (= 1:5.3p1-3ubuntu3) but 1:5.3p1-3ubuntu4 is to be installed

    错误如下:

    tiger@ubuntu:~/Desktop/work$ sudo apt-get install openssh-server 
    [sudo] password for tiger: 
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Some packages could not be installed. This may mean that you have
    requested an impossible situation or if you are using the unstable
    distribution that some required packages have not yet been created
    or been moved out of Incoming.
    The following information may help to resolve the situation:
    
    The following packages have unmet dependencies:
      openssh-server: Depends: openssh-client (= 1:5.3p1-3ubuntu3) but 1:5.3p1-3ubuntu4 is to be installed
    E: Broken packages

    输入如下命令即可:

    sudo apt-get install openssh-client=1:5.3p1-3ubuntu3

    然后出现下面的执行过程:

    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Suggested packages:
      libpam-ssh keychain openssh-blacklist openssh-blacklist-extra
    The following packages will be DOWNGRADED:
      openssh-client
    0 upgraded, 0 newly installed, 1 downgraded, 0 to remove and 299 not upgraded.
    Need to get 761kB of archives.
    After this operation, 0B of additional disk space will be used.
    Do you want to continue [Y/n]? y
    Get:1 http://us.archive.ubuntu.com/ubuntu/ lucid/main openssh-client 1:5.3p1-3ubuntu3 [761kB]
    Fetched 761kB in 1min 48s (7,003B/s)                                                                         
    dpkg: warning: downgrading openssh-client from 1:5.3p1-3ubuntu4 to 1:5.3p1-3ubuntu3.
    (Reading database ... 124425 files and directories currently installed.)
    Preparing to replace openssh-client 1:5.3p1-3ubuntu4 (using .../openssh-client_1%3a5.3p1-3ubuntu3_i386.deb) ...
    Unpacking replacement openssh-client ...
    Processing triggers for man-db ...
    Setting up openssh-client (1:5.3p1-3ubuntu3) ...
    
    tiger@ubuntu:~/Desktop/work$ sudo apt-get install openssh-server 
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Suggested packages:
      rssh molly-guard openssh-blacklist openssh-blacklist-extra
    The following NEW packages will be installed:
      openssh-server
    0 upgraded, 1 newly installed, 0 to remove and 299 not upgraded.
    Need to get 285kB of archives.
    After this operation, 778kB of additional disk space will be used.
    Get:1 http://us.archive.ubuntu.com/ubuntu/ lucid/main openssh-server 1:5.3p1-3ubuntu3 [285kB]
    Fetched 285kB in 1min 13s (3,866B/s)                                                                         
    Preconfiguring packages ...
    Selecting previously deselected package openssh-server.
    (Reading database ... 124425 files and directories currently installed.)
    Unpacking openssh-server (from .../openssh-server_1%3a5.3p1-3ubuntu3_i386.deb) ...
    Processing triggers for ureadahead ...
    ureadahead will be reprofiled on next reboot
    Processing triggers for ufw ...
    Processing triggers for man-db ...
    Setting up openssh-server (1:5.3p1-3ubuntu3) ...
    Creating SSH2 RSA key; this may take some time ...
    Creating SSH2 DSA key; this may take some time ...
     * Stopping OpenBSD Secure Shell server sshd                                                           [ OK ] 
    ssh start/running, process 10119
    
    tiger@ubuntu:~/Desktop/work$ 
  • 相关阅读:
    微信转发或分享朋友圈带缩略图、标题和描述的实现方法
    apache一个IP多个站点的配置方法
    微信网页扫码登录的实现
    laravel take(3) 读取最近三条信息
    微信卡劵、微信卡包,必须是认证订阅号或认证服务号
    CSS3 去除苹果浏览器按钮input[type="submit"]和input[type="reset"]的默认样式
    使用laravel5.4结合easywechat进行微信开发--基本配置
    Class 'QrCode' not found ? 和 laravel 生成二维码接口(Simple QrCod)
    windows redis的启动 和 Laravel中Redis的使用
    改变checkbox的默认样式
  • 原文地址:https://www.cnblogs.com/xiaowenhu/p/3185631.html
Copyright © 2011-2022 走看看