sudo apt-get install -y libssl-dev
/bin/sh: 1: bison: not found
sudo apt-get install bison/bin/sh: 1: flex: not found
sudo apt-get install flexA Simple Guide to Installing SSHPass on Ubuntu and macOS
Introduction#
SSHPass is a nifty little tool that lets you automate SSH login by bypassing the usual password prompt. While it’s super convenient for scripting, bear in mind that it’s not ideal for a multi-user setup due to security concerns. However, if you’re using it on your personal development machine, it’s pretty harmless.
How to Install SSHPass on Ubuntu#
Installing SSHPass on Ubuntu is as straightforward as it gets. All you need to do is open up your terminal and run the following command:
A Simple Guide to Installing Docker CE on Ubuntu
What You Need Before You Begin#
Operating System Requirements#
First things first, make sure you’re running one of the following 64-bit Ubuntu versions to install Docker CE:
- Ubuntu 18.04 (Bionic) - LTS
- Ubuntu 17.10 (Artful)
- Ubuntu 16.04 (Xenial) - LTS
- Ubuntu 14.04 (Trusty) - LTS
Docker CE is compatible with these architectures: x86_64, armhf, s390x (IBM Z), and ppc64le (IBM Power).
Note: For IBM Z and Power architectures, you’ll need at least Ubuntu 16.04 (Xenial) or higher.
Running Firefox OS apps on Ubuntu linux
A Simple Guide to Installing Both Firefox 4 and Firefox 3 on Ubuntu
Step 1: Add the Mozilla Daily PPA Repository#
First, open up your terminal window. Once it’s up, type in the command below to add the Ubuntu Mozilla Daily PPA repository to your system:
sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppaYou’ll be prompted to enter your password. Go ahead and do that, then hit Enter to confirm the addition of the repository.
Step 2: Update Your Package List#
After adding the repository, it’s crucial to update the package list to ensure you get the latest software. Type the following command:
ERROR: phpize failed [solved]
How to install PHP development files
If you want to run phpize on your system, you need to install the development files of PHP first. Otherwise, you might get an error message like this:
sh: phpize: not found
ERROR: `phpize' failedTo install the PHP development files on Ubuntu/Debian, you can use the following command in the terminal:
apt-get install php5-devThat should solve the problem. 🙂
How to Install PHP 5.3.1 on Ubuntu 64 bit and 32 bit
…yes just 2 lines#
For Ubuntu x64#
sudo su
cd /tmp && mkdir php53 && cd php53 && wget && wget && dpkg -i *.deb && echo “deb http://php53.dotdeb.org stable all” » /etc/apt/sources.list && aptitude update && aptitude install libapache2-mod-php5=5.3.1 apache2
For Ubuntu 32 bit i386#
sudo su
cd /tmp && mkdir php53 && cd php53 && wget && wget && dpkg -i *.deb && echo “deb http://php53.dotdeb.org stable all” » /etc/apt/sources.list && aptitude update && aptitude install libapache2-mod-php5=5.3.1 apache2
