Skip to content

Instantly share code, notes, and snippets.

View aatizghimire's full-sized avatar

Aatiz Ghimiré aatizghimire

View GitHub Profile
@aatizghimire
aatizghimire / Disable-Proxmox-Enterprise-9.1-Subscription-Update
Last active March 26, 2026 11:24
Disable-Proxmox-Enterprise-9.1-Subscription-Update
1. Log in to your Proxmox VE Web Interface.
2. Navigate to Datacenter > [Your Node Name] > Updates > Repositories.
3. Select the pve-enterprise.list repository and click Disable.
4. If you use Ceph, repeat step 4 for the Ceph repository to select the "no-subscription" option.
5. Disable the Enterprise Repository:
$ sed -i 's/^deb/#deb/' /etc/apt/sources.list.d/pve-enterprise.sources
6. Add the No-Subscription Repository:
# 🚀 SLURM on Ubuntu 24.04 with GPU (GRES) Support
> ✍️ Author: Aatiz Ghimire
> 📅 Updated: June 2025
> 🧠 Description: Minimal working example to install and configure SLURM with GPU support on a single-node Ubuntu Server 24.04 setup.
## 🧹 Step 0 – Clean Previous SLURM/MUNGE Setup
sudo systemctl stop slurmctld slurmd munge
@aatizghimire
aatizghimire / Setting-Static-IP-in -Ubuntu.txt
Created October 1, 2023 07:49
Instruction to Set Static IP in Ubuntu in both Desktop and Server.
1. Information about current Networl.
$ ip a
or
$ ipconfig -a
See the current adapter, eth0 for ethernet and wlan0 for wifi (probably).
@aatizghimire
aatizghimire / XRDP-MultiUser-Installation
Last active November 26, 2025 22:55
This is short tutorial to install XRDP on Ubuntu for multi-user Remote desktop connection.
--------------------------------------------
Xrdp Server (Remote Desktop) Installation:
--------------------------------------------
Tested in Ubuntu 22.04.03 LTS
1. Update Environment
$ sudo apt-get update
$ sudo apt-get upgrade
@aatizghimire
aatizghimire / QEMU-Run-Code.txt
Created September 27, 2023 15:34
Use QEMU to boot another OS (windows)
1. Set Up a Virtual Disk
Under C:/ Drive Run these command:
$ qemu-img create image.img 200M
2. To Run :
$ qemu-system-i386 -hda image.img -cdrom isofile.iso -m 16M -boot order=dc
qemu-system-i386 : Legacy System or you can use qemu-system-x86_64
-hda : denotes the image file of harddisk.