1root@jenkins3:~# apt-cache search chromedriver 2chromium-chromedriver - WebDriver driver for the Chromium Browser 3chromium-chromedriver-dbg - chromium-chromedriver debug symbols 4oxideqt-chromedriver - Web browser engine for Qt (transitional package)
Read MorePPA or Personal Package Archive are unofficial and may therefore harm your system. It is always recommended to use official sources. Nevertheless, if you know what you're doing, proceed. It is in: 1/etc/apt/sources.list.d/ More info in https://askubuntu.com/questions/57326/where-is-the-ppa-sources-config-file
Read MoreSee https://www.digitalocean.com/community/questions/how-to-upgrade-from-php-v-5-5-9-to-v-5-6
Read More1sudo apt-get install -y python-software-properties 2sudo add-apt-repository -y ppa:ondrej/php 3sudo apt-get update -y 4sudo apt-get install -y $(apt-cache pkgnames | grep php7.1|tr "\n" " ") See https://www.vultr.com/docs/how-to-install-and-configure-php-70-or-php-71-on-ubuntu-16-04
Read MoreIn our example, we have Debian Squeeze (6.0) and it's been unsupported since Feb 2016. We can no longer install nor update the packages until you point it to another source...the archives. So, in /etc/apt/sources.list, add you will see: 1deb http://ftp.us.debian.org/debian/ squeeze main 2deb-src …
Read More1sudo apt-get update 2sudo apt-get install linux-virtual See details in https://www.digitalocean.com/community/tutorials/how-to-update-a-digitalocean-server-s-kernel#upgrading-only-the-latest-kernel
Read More1apt-get install --only-upgrade <packagename> See details in https://askubuntu.com/questions/44122/how-to-upgrade-a-single-package-using-apt-get
Read More
If you need less keystrokes in updating your git code specially if it's very minimal change, do the following: 1git clone https://<github_token_here>@github.com/icasimpan/quicktasks-git 2cd quicktasks-git 3git config user.name "Ismael Casimpan" 4git config user.email "ismael.angelo@casimpan.com"
Read More
Cherry Picking in Git is quite easy: For single commit 1git checkout <destination_branch> 2git cherry-pick <hash-here> See https://swsblog.stanford.edu/blog/cherry-picking-small-git-lesson Multiple commit NOTE: only the commits between 'initial_commit_hash' and 'terminal_commit_hash' are merged. 1git …
Read More