2017-07-16 74 views
2
ssh: Could not resolve hostname slack-master: Name or service not known 
rsync: did not see server greeting 
rsync error: error starting client-server protocol (code 5) at main.c(1653) [Receiver=3.1.0] 
FATAL[slack-getroles]: 'rsync --links --times -e ssh slack-master::slack/etc/roles.conf /var/cache/slack/_role_list' exited 5 at /usr/lib/slack/slack-getroles line 158. 
FATAL[slack]: '/usr/lib/slack/slack-getroles' exited 5 at /usr/sbin/slack line 205. 

回答

2

我怀疑,这个问题发生在我安装了python的anaconda软件包的时候。以下步骤帮助我解决了这个问题。

步骤1:重新启动机器

步骤2:$ sudo易于得到消除松弛

步骤3:下载最新版本的时差网站松弛(查看这里的最新包装 - https://slack.com/): $ wget https://downloads.slack-edge.com/linux_releases/slack-desktop-2.9.0-amd64.deb

步骤4须藤dpkg -i来松弛桌面-2.9.0-amd64.deb

在步骤4中,我们将看到以下错误:$使用dpkg的实用工具安装下载的软件包:

$ sudo dpkg -i slack-desktop-2.9.0-amd64.deb 
(Reading database ... 215272 files and directories currently installed.) 
Preparing to unpack slack-desktop-2.9.0-amd64.deb ... 
Unpacking slack-desktop (2.9.0) over (2.9.0) ... 
dpkg: dependency problems prevent configuration of slack-desktop: 
slack-desktop depends on python; however: 
    Package python is not installed. 

dpkg: error processing package slack-desktop (--install): 
dependency problems - leaving unconfigured 
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ... 
Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ... 
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160824-0ubuntu1) ... 
Rebuilding /usr/share/applications/bamf-2.index... 
Processing triggers for mime-support (3.59ubuntu1) ... 
Errors were encountered while processing: 
slack-desktop 
$ 

要解决此问题:在步骤5中

步骤5:安装使用缺少的依赖关系:命令和apt - 克et install -f

$ sudo apt-get install -f 
Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
Correcting dependencies... Done 
The following additional packages will be installed: 
    python python2.7 
Suggested packages: 
    python-doc python-tk python2.7-doc 
The following NEW packages will be installed: 
    python python2.7 
0 upgraded, 2 newly installed, 0 to remove and 125 not upgraded. 
1 not fully installed or removed. 
Need to get 361 kB of archives. 
After this operation, 1,009 kB of additional disk space will be used. 
Do you want to continue? [Y/n] Y 
Get:1 http://in.archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7 amd64 2.7.12-1ubuntu0~16.04.1 [224 kB] 
Get:2 http://in.archive.ubuntu.com/ubuntu xenial/main amd64 python amd64 2.7.11-1 [137 kB] 
Fetched 361 kB in 0s (384 kB/s) 
Selecting previously unselected package python2.7. 
(Reading database ... 215272 files and directories currently installed.) 
Preparing to unpack .../python2.7_2.7.12-1ubuntu0~16.04.1_amd64.deb ... 
Unpacking python2.7 (2.7.12-1ubuntu0~16.04.1) ... 
Selecting previously unselected package python. 
Preparing to unpack .../python_2.7.11-1_amd64.deb ... 
Unpacking python (2.7.11-1) ... 
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ... 
Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ... 
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160824-0ubuntu1) ... 
Rebuilding /usr/share/applications/bamf-2.index... 
Processing triggers for mime-support (3.59ubuntu1) ... 
Processing triggers for man-db (2.7.5-1) ... 
Processing triggers for doc-base (0.10.7) ... 
Processing 1 added doc-base file... 
Setting up python2.7 (2.7.12-1ubuntu0~16.04.1) ... 
Setting up python (2.7.11-1) ... 
Setting up slack-desktop (2.9.0) ... 
$ 
相关问题