screenbin command not found

In this troubleshooting guide we learn how to fix screenbin command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

screenbin: command not found

or when using sudo you get the following error message

sudo: screenbin: command not found

Solutions to screenbin: command not found

How To Fix screenbin: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu screenbin is provided by screenbin package.

screenbin is:

screenbin uses Amazon’s EC2 cloud to dynamically instantiate an Ubuntu instance in the cloud, install a specified list of ssh keys, and launch a shared screen session as a guest user. In this manner, screenbin is a collaborative tool like pastebin, or gobby, but provides a shared shell environment.

This is particularly useful for synchronous code reviews, education, collaborative debugging, and demonstrations when a shared terminal between two or more people is required.

Amazon EC2 provides a central location accessible via ssh by all parties, such that no individual needs to modify local firewall settings to allow incoming ssh access. And the ’throw-away’ nature of EC2 instances allows the host to immediately destroy the instance should anything go wrong.

To fix this problem, we can install more using the command below.

sudo apt-get -y install screenbin

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install screenbin.

sudo apt -y install screenbin

Or if you have aptitude installed you can use the following command.

sudo aptitude install screenbin

Summary

In this tutorial we learn how to fix screenbin command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.