“Drug Toxicity DB” is a mobile application containing information about more than 11200 molecules of therapeutic interest, the semantic instant search engine built-in allows you to perform quick searches within more than 32000 synonyms to find the right compound that you are seeking for. Including structure, CAS ID, description, classification, indications, toxicity and mechanism ofRead more about […]
ClickOnce Prerequisites: Add SQL Server Express 2016 LocalDB package Manually
You can include the sqlLocalDB.msi with your installer package and then run a silent install as part of your setup. I use the Visual Studio Setup & Deployment project add-in. You can specify prerequisites by selecting the setup project properties. It will list all the bootstrapper packages that it finds in “C:\Program Files (x86)\Microsoft Visual Studio 14.0\SDK\Bootstrapper\Packages” (forRead more about ClickOnce Prerequisites: Add SQL Server Express 2016 LocalDB package Manually[…]
Install and run Ruby On Rails Application on localhost
USE standalone Ruby Server installations: a) http://railsinstaller.org/en b) http://www.helicontech.com/zoo/install.html c) https://bitnami.com/stack/ruby OR 1) Install WAMP (or etc) 2) Install Ruby 3) open …wamp\bin\apache\apacheXXXX\conf\httpd.conf, then search & replace Options Indexes FollowSymLinks with Options Indexes FollowSymLinks ExecCGI (or Options Indexes FollowSymLinks Includes ExecCGI) p.s. also, Find & ensure that LoadModule cgi_module is NOT commented. 4) search & replace #AddHandler cgi-script .cgi with (…removing # ) AddHandler cgi-script .cgi AddHandler cgi-script .rbRead more about Install and run Ruby On Rails Application on localhost[…]
Installing Ansible on Debian 9
Ansible is free software that allows the deployment and the automation of administration tasks on multiple remote servers at the same time, regardless of their operating system. What is interesting with Ansible, no need to install an agent on the servers, only the deployment of the public key of Ansible server is necessary, because theRead more about Installing Ansible on Debian 9[…]
CentOS eth0 Network config
Here is a short tutorial to configure the network interface under CentOS. Here the network interface is called: eth0. Configuring the ifcfg-eth0 file vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE = eth0 ## Interface Name BOOTPROTO = static ## Switch to static and non-DHCP mode BROADCAST = 192.168.0.255 ## broadcast address HWADDR = AA: BB: DC: DD: EE: FFRead more about CentOS eth0 Network config[…]
Install htop on CentOS
Under CentOS, it is not possible to install htop via the official repositories. Here is a small memo about how to install htop under CentOS. To install htop, we will go through the addition of an external repository: CentOS-Dag.repo. vi /etc/yum.repos.d/CentOS-Dag.repo Then paste the following lines: [dag] name=Dag RPM Repository for Red Hat Enterprise Linux baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag gpgcheck=1Read more about Install htop on CentOS[…]
Easily install an OpenVPN server on Debian, Ubuntu, CentOS and Linux Mint 18
To simplify the installation of OpenVPN server, an installation script is available on github, named openvpn-install. This script allows you to install and configure your own VPN server in less than 5 minutes by generating a .ovpn configuration file for use with the OpenVPN client on all GNU / Linux, MacOS X and Windows operating systems.Read more about Easily install an OpenVPN server on Debian, Ubuntu, CentOS and Linux Mint 18[…]
Running a netinstall over HTTP to install CentOS
In this Tutorial we will learn how to initiate the process of running a netinstall over HTTP (using the URL method) in order to install CentOS 6. The CentOS network installation is a process by which a small image file is used to boot the computer and enable the download of all the necessary files that willRead more about Running a netinstall over HTTP to install CentOS[…]
Installing CentOS from USB
In this tutorial we will learn how to download and confirm the checksum of one or more CentOS 6 disk image(s) using a typical Windows desktop computer on a USB drive. CentOS is made available in various formats by HTTP, FTP, or via a Torrent-based client from a series of mirror sites located across the world. It supportsRead more about Installing CentOS from USB[…]
CentOS yum install
CentOS yum install/update – we will learn how to enhance the minimal install with additional tools that will give you a variety of administrative and development options that will prove vital during the lifetime of your server. The minimal install is probably the most efficient way you can install a server, but having said that, a minimalRead more about CentOS yum install[…]