Skip to content

Instantly share code, notes, and snippets.

View armandosg's full-sized avatar
:atom:

Armando Serna Gutiérrez armandosg

:atom:
  • P\S\L Group
  • México
  • 12:40 (UTC -06:00)
View GitHub Profile
@armandosg
armandosg / minecraft-server-ubuntu-18-04.md
Last active August 28, 2024 06:13
Create a Minecraft Server: the easiest way 🚀

How to create a Minecraft server and not die trying 🚀

Introduction

This guide will guide you through the configuration of a Minecraft Server using Docker, a technology that will hand almost all the server configuration.

Pre-requisites

The only thing that you need before getting started is a non-user account with administrative privileges (sudo access).

@rogerleite
rogerleite / install_monaco_font.sh
Last active April 15, 2025 00:23
Install Monaco font in Linux
#!/bin/bash
# Install Monaco font in Linux
# Version from nullvideo https://gist.github.com/rogerleite/99819#gistcomment-2799386
sudo mkdir -p /usr/share/fonts/truetype/ttf-monaco && \
sudo wget https://gist.github.com/rogerleite/b50866eb7f7b5950da01ae8927c5bd61/raw/862b6c9437f534d5899e4e68d60f9bf22f356312/mfont.ttf -O - > \
/usr/share/fonts/truetype/ttf-monaco/Monaco_Linux.ttf && \
sudo fc-cache