Skip to content

Instantly share code, notes, and snippets.

View adns44's full-sized avatar

adns44

View GitHub Profile
@adns44
adns44 / eco-server-order-on-ovhcloud-api.md
Last active November 14, 2025 01:01
Eco server order process with OVHcloud API step-by-step

OVH - How to use the API to order any server? The answer is here!

I wrote this tutorial in 2024 and since this it is very popular on the LET Kimsufi topic, I make a few changes to help to understand better how the API works behind the scenes.

There are many APPs that helps you to order machines with OVH API automatable so when you understand the steps, you can use all of them as a pro.

And let me to say thanks to everyone who mention me and my tutorial on the forum.

I ASK YOU IN FIRST

@Demiu
Demiu / move_appdata_win10.md
Last active October 29, 2025 09:32
How to properly move AppData in Windows 10

Moving AppData folder on Windows 10

  1. Create a new user with administrator permissions
  2. Sign out of the current user and sign in as the newly created user
  3. Navigate to C:\Users in File Explorer
  4. Click into the account you want move AppData from
    • There could be a popup telling you that you need to allow yourself to access that user's data, do so
  5. Cut the AppData folder
    • If invisible, go to View and check Hidden Items
  6. Paste in the desired location
@pshchelo
pshchelo / mount-qcow2-lvm-image.sh
Last active August 4, 2025 09:00
List of commands to mount/unmount a qcow2 image conatining LVM partitions.
# kudos to dzaku at consolechars.wordpress.com
### MOUNT qcow2 image with lvm partitions
# ensure nbd can handle that many partitions
sudo modprobe nbd max_part=8
# present image as block device through NBD
sudo qemu-nbd --connect=/dev/nbd0 <image.qcow2>
@varqox
varqox / install_debian_with_debootstrap_howto.md
Last active November 10, 2025 07:19
Instructions how to install Debian using debootstrap
@shamil
shamil / mount_qcow2.md
Last active November 5, 2025 00:00
How to mount a qcow2 disk image

How to mount a qcow2 disk image

This is a quick guide to mounting a qcow2 disk images on your host server. This is useful to reset passwords, edit files, or recover something without the virtual machine running.

Step 1 - Enable NBD on the Host

modprobe nbd max_part=8