I recommend to spawn a Virtualized Ubuntu. I'm coming from M1 Macbook but I hate building from Podman.
I run with UTM on QEMU virtualization, with 6 CPU, 6 GB RAM and 100 GB disk space. It works for me.
cd ~/Document
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>You're entering DOM Cloud User Generated Content</title> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@567&display=swap" rel="stylesheet"> | |
<style> |
<?php | |
namespace App\Libraries; | |
use App\Entities\User; | |
use App\Entities\Purchase; | |
use Config\Services; | |
use WpOrg\Requests\Requests; | |
/** |
#!/usr/bin/expect -f | |
# Check if the correct number of arguments is provided | |
if { $argc != 2 } { | |
puts "Usage: $argv0 <npx_command_arguments> <admin_email>" | |
exit 1 | |
} | |
# Set timeout for expect | |
set timeout -1 |
I recommend to spawn a Virtualized Ubuntu. I'm coming from M1 Macbook but I hate building from Podman.
I run with UTM on QEMU virtualization, with 6 CPU, 6 GB RAM and 100 GB disk space. It works for me.
cd ~/Document
#!/bin/bash | |
while [ `passenger-config list-instances --json | jq length` -ne 1 ]; do | |
echo "Waiting until NGINX done reloading..." | |
sleep 1 | |
done | |
sudo -n -- passenger-config reopen-logs &> /dev/null || true | |
passenger-config restart-app ~ --ignore-app-not-running |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Welcome!</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
body { | |
text-align: center; | |
font-family: "Segoe UI", Roboto, sans-serif; |
user nginx; | |
worker_processes auto; | |
error_log /var/log/nginx/error.log; | |
pid /run/nginx.pid; | |
include /usr/share/nginx/modules/*.conf; | |
events { | |
worker_connections 1024; | |
} |
Main article: https://computingforgeeks.com/upgrade-to-rocky-linux-9-from-rocky-linux-8/
There are some adjustment that I need to aware with. For instance I have to disable many old modules also upgrading my REMI and postgres data.
Using PHP from builtin rocky linux repo turns out have a devastating consequences... It's much better to move away from it and use remi repo.
dnf update -y
REPO_URL="https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/Packages/r"