Setting up CS:GO dedicated server with eBot – on Ubuntu 16.04

Robert AndresenPC and apps, Tutorials 40 Comments

This little project took me about 25 hours, because of a lot of debugging and very little documentation for error messages regarding eBot. With this tutorial I will hopefully help someone else (and future me) to do this in 1-2 hours instead 🙂 My setup Ubuntu 16.04 running as a VM in ESXi 6 eBot v3.1 My local IP for the server …

Setting up external hotspot with Ubiquiti (ubnt) and debugging

Robert AndresenProgramming, Tutorials 2 Comments

My setup: Webserver: Ubuntu 16.04 with default Apache2, PHP7 and MySQL. The webserver also has a local issued certificate with HTTPS. UniFi Controller: 4.8.18 (Running on a Windows 10 client) Laptop with wireless, running Windows 10, for testing. This article will focus more on debugging than on the setup itself, as there are multiple of howto-guides everywhere on the Internet. My guest …

How to Secure Apache with Let’s Encrypt on CentOS 6

Robert AndresenProgramming, Tutorials Leave a Comment

Install the Let’s Encrypt client $ git clone https://github.com/letsencrypt/letsencrypt $ cd letsencrypt I didn’t have git installed, so I just downloaded it from Github and added it under /opt/letsencrypt on the server.   So to the Centos 6 «fix» You’ll need to run the client in Pyhon 2.7. $ yum install centos-release-SCL $ yum install python27 Your python version should …

Create a bootable USB to Install ISO from (Linux/Windows…)

Robert AndresenPC and apps, Tutorials Leave a Comment

Rufus is a easy program that does this for you Download Rufus Run program. Check that the Device is correct. Select ISO (by clicking small CD-rom button at the left… Where it’s written «Create a bootable disk using…») Click Start.   The other way Check this link, to do it the hard commando-line-style way – or check one of my old blog post (in Norwegian). …

WebGUI on ESXi (Howto)

Robert AndresenTutorials Leave a Comment

Just installed installed ESXi Embedded host client on my ESXi server to get a Web GUI, instead of using the vSphare console. See my post about my ESXi here (Written in Norwegian).   Guide: Download here: https://labs.vmware.com/flings/esxi-embedded-host-client See this video: https://www.youtube.com/watch?v=JRb2BeWSI_4   If video doesn’t work, or you just wan’t a short step-by-step: Download the ESXi Embedded host client. Upload the file …

Centos7 – Something filling up the disk space

Robert AndresenProgramming, Tutorials Leave a Comment

When a webserver uses 100% of the diskspace, there is not enough space to create a session in PHP. In other words people cannot login to your web-application. I had some problems with the httpd logs (/var/log/httpd) over some time with one single webserver. The access log can take up to mulitple gigabytes. After deleting the logs, everything worked fine. After …