Loading...

Blog

A Journey of a Thousand Miles Begins with a Single Step

netstat on CentOS

Doing some Oracle DB Installation on CentOS, netstat is an essential tool for checking ports. On the minimal installation it is not installed. Check out how to install it.

Read more

Remove Oracle 12c DB software from Windows

Well in my impression Oracle 12c has a habit to put many obstacles for uninstall. :mad: If you find the right spots, it is still manageable. Keep in mind that you have to open the Windows CMD as Administrator. Otherwise the uninstall just goes south. In my case I had to enter at my installation path

Read more

Install VirtualBox Guest Additions on CentOS

The guest additions of VirtualBox require DKMS (Dynamic Kernel Module Support). After every kernel update the modules for VirtualBox are automatically built. Therefore we need to install dkms which is outside the default repository, but in the EPEL (Extra Packages for Enterprise Linux) repository.

Read more

Using proxy in Dockerfile

Using docker in companies with tight security involves using proxies for pulling the image data of dockerhub. In my previous post I illustrated several ways how to enable docker using the proxy. I assume you are using a central local proxy auth server like CNTLM. So no bypassing any auth data. In the Dockerfile itself, it can be used like this:

Read more

Use custom docker registry

Using docker since 2013 allows you to use custom docker registries with the docker pull and push commands. Just add the registry location to the repository name.

Read more

Install docker on CentOS as virtual machine

Working with Windows sucks. Working with Docker and Windows also sucks. Working in a company with Docker and Windows sucks big time. Besides security and proxy everything is a hassle, because connectivity, filesystem or permissions might not work out of a box. Too many workarounds for docker freshmen. So I decided to run docker in a CentOS virtual machine. That is the closest thing to RHEL. This post demonstrates how to get Docker installed and properly configured, so you can work with docker with great pleasure :wink: .

Read more

Deploy rpm file to Artifactory with maven deploy:deploy-file

The maven deploy plugin allows to deploy artifacts and files to your internal repository. If you happen to have a Maven Repository like Sonatype Nexus or JFrog’s Artifactory the plugin is the right choice. This post covers how to deploy a rpm file to Artifactory. The Maven repository itself is not covered here.

Read more

Highlight lines in vim

To highlight lines that exceed more than 80 characters, we can colorize the extraneous characters.

Read more

Setup keyboard language in CentOS

Got a weird situation, my keyboard is US_EN and it appears the shell has CH_DE.

Read more