Skip to content

Instantly share code, notes, and snippets.

View luispabon's full-sized avatar

Luis Pabon luispabon

  • Auron Consulting Ltd
  • London
View GitHub Profile
  • Based on https://gist.github.com/mdziekon/221bdb597cf32b46c50ffab96dbec08a
  • Installation date: 16-08-2019
  • Additional notes based on my own experience
  • EFI boot
  • Ubuntu 19.04 -> 21.04
  • This should work on any computer. Only the RAID > AHCI change described below and the device name for the nvme ssd drive are specific to this laptop.
  • The process describes a completely fresh installation with complete repartitioning, however it should work fine when Windows is already installed (eg. brand new machine with Windows preinstalled) as long as Windows already boots with EFI.
  • The process was conducted on Dell's XPS 15 9560 (2017) with specs:
  • CPU: i7-7700HQ
@luispabon
luispabon / rescan-wifi.sh
Created September 14, 2023 09:26
NetworkManager command line wifi rescan
#!/bin/bash
echo -e "Re-scanning wifi...\n"
nmcli dev wifi rescan
nmcli dev wifi list
echo -e "\nScan finished."
@luispabon
luispabon / Dockerfile
Created May 15, 2019 21:19
Example symfony and encore dockerfile
###########
# Backend #
###########
# Dev env base container
FROM phpdockerio/php73-fpm:latest AS backend-dev
WORKDIR "/application"
# Fix debconf warnings upon build
ARG DEBIAN_FRONTEND=noninteractive
@luispabon
luispabon / readme.md
Created May 1, 2023 18:45
Linux sensors for GA-Z170N-WIFI (rev. 1.0)

Extra linux sensors for GA-Z170N-WIFI (rev. 1.0) motherboard

For a GA-Z170N-WIFI (rev. 1.0), just modprobe it87 is enough, you can just load the it87 module without any options. This enables not only fan speed sensors but also voltages and various other temperature sensors

echo it87 > /etc/modules-load.d/gigabyte-sensors-it87.conf

Full sensor output:

@luispabon
luispabon / readme.md
Last active March 19, 2023 14:47
Jellyscrub + jellyfin + docker with unprivileged jellyfin user

Jellyfin and Jellyscrub in Docker with unprivileged jellyfin user (fixes player not showing thumbnails)

Jellyscrub needs to be able to write to Jellyfin's index.html. If you're running Jellyfin as an unprivileged user it won't be able to, since the official container jellyfin files are owned by root.

This is a docker-compose example of how to work around this problem. The docker-compose service definition for jellyfin also passes through an intel igpu. Leaving here as this might be useful to someone.

Once adding the below, make sure you build the container, delete the old one and bring up a new one with docker-compose down jellyfin && docker-compose up -d. Any changes to the dockerfile or build params also mandate this.

@luispabon
luispabon / Example.md
Last active March 15, 2023 10:51
Wait for DNS
~ wait_for_dns.sh "google.com foobar.foo"                                                                                      Wed 15 Mar 2023 10:49:37 GMT

### Trying to resolve google.com foobar.foo ###
>> Waiting for dns 'google.com' to be available -> 172.217.16.238 2a00:1450:4009:821::200e 👍
>> Waiting for dns 'foobar.foo' to be available ----> Timed out after 4s 👎
@luispabon
luispabon / gist:243e33f1d92aab2301c6b8fd15b72487
Last active October 19, 2022 17:34
Find folders that contain one file but not another
find my/search/path -type d -exec test -e '{}'/i_want_this_file.txt -a '!' -e '{}'/but_not_this_one.txt \; -print | sort
# Note if not obvs: remove the '!' to search for folders that contain both files
@luispabon
luispabon / command line (bash)
Created October 4, 2022 11:47
aws cli terraform import secret and secret version
~ terraform import aws_secretsmanager_secret.yep my_name
~ terraform import aws_secretsmanager_secret_version.yep my_name\|$(aws secretsmanager get-secret-value --secret-id=my_name | jq ".VersionId" --raw-output)
@luispabon
luispabon / Base64EncodedImagesInterface.php
Last active July 30, 2022 11:42
Easyadmin bundle + TinyMCE + Base64 images stored into s3 (will load up TinyMCE on all your textareas)
<?php
namespace AppBundle\Entity;
/**
* Interface that identifies entities which have fields that can contain base64 encoded images
*
* @package AppBundle\Entity
*/
interface Base64EncodedImagesInterface
{
@luispabon
luispabon / main window
Created April 21, 2022 10:28
New jetbrains windows
{
"id": 577,
"type": "con",
"orientation": "none",
"percent": 0.49679487179487181,
"urgent": false,
"marks": [
],
"focused": false,
"layout": "none",