$ sudo dd if=/path/to/oran-image-inf-host-intel-x86-64.iso of=/dev/sdX bs=1M
Notes: In the CLI installer, you can only select which hard disk to install, the whole disk will be used and partitioned automatically.
Some of the tuning options are machine specific or depend on use cases, like the hugepages, isolcpus, rcu_nocbs, kthread_cpus, irqaffinity, nohz_full and so on, please do not just copy and past.
# Notes: the grub.cfg file path is different for legacy and UEFI mode # For legacy mode: /boot/grub/grub.cfg # For UEFI mode: /boot/EFI/BOOT/grub.cfg grub_cfg="/boot/grub/grub.cfg" #grub_cfg="/boot/EFI/BOOT/grub.cfg" # In this example, 1-16 cores are isolated for real time processes root@intel-x86-64:~# rt_tuning="crashkernel=auto biosdevname=0 iommu=pt usbcore.autosuspend=-1 nmi_watchdog=0 softlockup_panic=0 intel_iommu=on cgroup_enable=memory skew_tick=1 hugepagesz=1G hugepages=4 default_hugepagesz=1G isolcpus=1-16 rcu_nocbs=1-16 kthread_cpus=0 irqaffinity=0 nohz=on nohz_full=1-16 intel_idle.max_cstate=0 processor.max_cstate=1 intel_pstate=disable nosoftlockup idle=poll mce=ignore_ce" # optional to add the console setting root@intel-x86-64:~# console="console=ttyS0,115200" root@intel-x86-64:~# sed -i "/linux / s/$/ $console $rt_tuning/" $grub_cfg
root@intel-x86-64:~# reboot