This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 🚀 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Information about current Networl. | |
$ ip a | |
or | |
$ ipconfig -a | |
See the current adapter, eth0 for ethernet and wlan0 for wifi (probably). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------- | |
Xrdp Server (Remote Desktop) Installation: | |
-------------------------------------------- | |
Tested in Ubuntu 22.04.03 LTS | |
1. Update Environment | |
$ sudo apt-get update | |
$ sudo apt-get upgrade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |