scripts/extract-cert.c:21:10: fatal error: openssl/bio.h: No such file or directory
sudo apt-get install -y libssl-dev
sudo apt-get install -y libssl-dev
sudo apt-get install bison
sudo apt-get install flex
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: ...
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. ...
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/ppa You’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: ...
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' failed To install the PHP development files on Ubuntu/Debian, you can use the following command in the terminal: apt-get install php5-dev That should solve the problem. 🙂
…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 ...