# Cloning the machines and post-install for Oracle Linux v9

At the moment of writing, on 2025-07-18, my VirtualBox is v7.1.6.
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/scaled-1680-/RK08FKtg1TLwc0v5-image-1752829529756.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/RK08FKtg1TLwc0v5-image-1752829529756.png)

Open VirtualBox, find the source machine, click once to select

[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/scaled-1680-/WviJ4EavSJH3tkCy-image-1752828662314.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/WviJ4EavSJH3tkCy-image-1752828662314.png)

It is possible to either use menu: Snapshot> Clone
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/scaled-1680-/GaEOlUH6mymlpB5O-image-1752828731016.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/GaEOlUH6mymlpB5O-image-1752828731016.png)

Or click on [Clone] icon with a sheep:
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/scaled-1680-/yL3nxBRALl4iFZUT-image-1752828794910.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/yL3nxBRALl4iFZUT-image-1752828794910.png)

Or right-click on virtual machine itself:
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/scaled-1680-/3A52ilj8yoTdldMA-image-1752828882388.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/3A52ilj8yoTdldMA-image-1752828882388.png)

of press C-S-c (CTRL+SHIFT+c) or, from the list: C-o (CTRL+o)

Give machine a new name, check location and remember to choose "Generate new MAC for adapters". Your network infra will be happy to see healthy traffic and route it properly.
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/scaled-1680-/UZD52uylCvWDvibP-image-1752829067935.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/UZD52uylCvWDvibP-image-1752829067935.png)

When machne is cloned, let's start it:
[![](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/scaled-1680-/xmJlmtYDwcNSCMe6-image-1752829340549.png)](https://storage.googleapis.com/iau-data-dox/uploads/images/gallery/2025-07/xmJlmtYDwcNSCMe6-image-1752829340549.png)



## Post-cloning precedures

All commands executed in the elevated shell
```bash
sudo su
```

Change hostname
```bash
hostnamectl hostname lt58dox1
```

During cloning the machines, change physical ID and MAC address in the hypervisor (sometimes, it will not do it automatically in VirtualBox, proxmox and others).

When machines are cloned, 'machine ID':
```bash
cat /etc/machine-id
rm -f /etc/machine-id
systemd-machine-id-setup
systemd-machine-id-setup --commit --print
```

SSH server's keys need to be re-generated to be seen as different machines
```bash
rm -rf /etc/ssh/ssh_host_*
ssh-keygen -A
ls -la /etc/ssh/ssh_host_*
```

And finally perform reboot
```bash
shutdown -r now
```

As there will be new MAC assigned, check for new IP addresses:
```bash
ip -br a
```