Skip to main content
Installing Ubuntu on a MS-S1 MAX

Installing Ubuntu on a MS-S1 MAX

·128 words·1 min
Mike Curtis
Author
Mike Curtis
Dedicated to Technology

Drivers
#

The dual 10G nic will not work out of the box. Download Driver from here

sudo apt update && sudo apt install docker-compose-v2 docker.io  build-essential libdrm-dev linux-oem-24.04c python3.12-venv

After downloading the 10G Ethernet LINUX driver r8127 for kernel up to 6.15 driver

unzip r8127-9.015.00.zip
cd r8125-9.015.00
sudo ./autorun.sh
sudo reboot

More info can be found here

Install Rocm
#

Up to date information can be found here

sudo apt update
wget https://repo.radeon.com/amdgpu-install/7.2/ubuntu/noble/amdgpu-install_7.2.70200-1_all.deb
sudo apt install ./amdgpu-install_7.2.70200-1_all.deb
amdgpu-install -y --usecase=rocm --no-dkms
sudo usermod -a -G render,video $LOGNAME
sudo reboot

Post reboot rocminfo should list 3 agents with one of them being

*******
Agent 2
*******
  Name:                    gfx1151
  Uuid:                    GPU-XX
  Marketing Name:          Radeon 8050S Graphics
  Vendor Name:             AMD
  [...]

Install amdgpu_top
#

wget https://github.com/Umio-Yasuno/amdgpu_top/releases/download/v0.11.2/amdgpu-top_without_gui_0.11.2-1_amd64.deb
sudo apt install ./amdgpu-top_without_gui_0.11.2-1_amd64.deb

Related