<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: ECHENDU Victor Ikenna</title>
    <description>The latest articles on DEV Community by ECHENDU Victor Ikenna (@morlimoore).</description>
    <link>https://dev.to/morlimoore</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F346086%2F4caff778-cf7d-4a8f-986b-3a3727bc065c.jpg</url>
      <title>DEV Community: ECHENDU Victor Ikenna</title>
      <link>https://dev.to/morlimoore</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/morlimoore"/>
    <language>en</language>
    <item>
      <title>How to resolve missing 'libxcb-xtest0' package, when installing Zoom on Ubuntu 18.04</title>
      <dc:creator>ECHENDU Victor Ikenna</dc:creator>
      <pubDate>Sun, 14 Jun 2020 20:59:09 +0000</pubDate>
      <link>https://dev.to/morlimoore/how-to-resolve-missing-libxcb-xtest0-package-when-installing-zoom-on-ubuntu-18-04-mgo</link>
      <guid>https://dev.to/morlimoore/how-to-resolve-missing-libxcb-xtest0-package-when-installing-zoom-on-ubuntu-18-04-mgo</guid>
      <description>&lt;p&gt;This quick guide would walk you through installing Zoom video conferencing software and also teach you how to install packages from the Ubuntu store, using the libxcb-xtest0 package as a guide.&lt;/p&gt;

&lt;p&gt;First, let me show you how to download and install the Zoom  software:&lt;/p&gt;

&lt;p&gt;In your terminal, enter:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

wget -O /tmp/zoom.deb https://zoom.us/client/latest/zoom_amd64.deb


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;This would download the zoom.deb file from the official website to the /tmp directory in your PC. &lt;br&gt;
You can as well download this file by accessing the Zoom website directly. The important thing is to note where you saved the file you downloaded.&lt;/p&gt;

&lt;p&gt;Next up, in your terminal, enter:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

sudo dpkg -i /tmp/zoom.deb


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;This would install .deb file.&lt;br&gt;
If you downloaded the file by accessing the website directly, replace the /tmp there with the correct path.&lt;/p&gt;

&lt;p&gt;After this installation, you would likely be faced with the unmet dependency problem as depicted in the image below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fc8lhogkugpxzxfhpo83w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fc8lhogkugpxzxfhpo83w.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is caused by a missing libxcb-xtest0 package.&lt;/p&gt;

&lt;p&gt;Doing &lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

sudo apt-get install libxcb-xtest0


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;would most likely not be of any help, because that package is somehow missing from the Advanced Package Tool (APT) store and cannot be gotten in that way, but you can try it out anyways.&lt;/p&gt;

&lt;p&gt;So, this is what you do: &lt;/p&gt;

&lt;p&gt;Go to the &lt;a href="https://packages.ubuntu.com/bionic/amd64/libxcb-xtest0/download" rel="noopener noreferrer"&gt;ubuntu manager page&lt;/a&gt; to download the libxcb-xtest0 package. &lt;br&gt;
Select your preferred mirror, based on your region and the download would start. &lt;br&gt;
Please note the folder where this is downloaded to.&lt;/p&gt;

&lt;p&gt;On completion, in your terminal, navigate to the folder where this file was downloaded, and enter:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

sudo dpkg -i libxcb-xtest0_1.13-1_amd64.deb


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;This would install the .deb package&lt;/p&gt;

&lt;p&gt;Finally, run&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

sudo apt install -f


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Hope you enjoyed my article and were able to resolve your issue.&lt;br&gt;
Do leave a comment below so I can get your feedback.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>ubuntu</category>
      <category>zoom</category>
      <category>apt</category>
    </item>
  </channel>
</rss>
