tfactl purge -older 25d
I could run it using hours, for example:
tfactl purge -older 200h
The full syntax and parameters are:
su -
ubiosconfig export all -x bios.xml
su -
ubiosconfig import config -f --expert -y -x bios.xml
odacli update-cpucore --cores 8
{
"jobId" : "388ac288-abaf-4304-8a3b-b033e4ca7dde",
"status" : "Created",
"message" : null,
"reports" : [ ],
"createTimestamp" : "July 11, 2024 02:49:22 AM BRT",
"resourceList" : [ ],
"description" : "CPU cores service update",
"updatedTime" : "July 11, 2024 02:49:22 AM BRT"
}
We don't have an installer to Oracle 23ai for the Mac M3.
So, I'm use Colima + Docker + QEMU to emulate x86_64 arch and run the Oracle 23ai.
Colima is an open source container runtime for macOS with minimal configuration. In addition,
QEMU was an open source software virtualization tool that performs hardware emulation.
Now, we need to install Docker, Docker-compose, Colima and reinstall QEMU.
brew update
brew install docker
brew install docker-compose
brew install colima
brew reinstall qemu
* Yes, I forgot to take the screenshots
We are to install Rosetta, as well.
oftwareupdate --install-rosetta
According Apple, "Rosetta is not an app that you open or interact with. Rosetta works
automatically in the background whenever you use an app that was built only for Mac
computers with an Intel processor. It translates the app for use with Apple silicon."
Check the colima status.
colima help
Stop and delete the old profile.
colima stop
colima delete
And start Colima with the parameters bellow:
colima start --cpu 4 --memory 10 --arch x86_64 --vm-type vz --vz-rosetta
Where:
--vm-type=vz ==> Virtual machine type.
--vz-rosetta ==> Enable Rosetta for amd64 emulation.
--mount-type=virtiofs ==> Volume Mount Driver for vz.
--arch x86_64 ==> Architecture (x86_64).
colima status
* The default VM created by Colima has 2 CPUs, 60GB storage and 2GB memory runing
Ubuntu.
# Check if Colima is using the new profile
docker context ls
Finally, create a docker container running Oracle 23ai:
Hello everyone. How are you doing? Today, I going to show you a quick tip about the AHF - Autonomous Health Framework. In case your au...