summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-04-20 14:48:29 +0200
committerAhmed Abdelhalim <[email protected]>2026-04-20 14:48:29 +0200
commit019e9bd7281b303d8c1d27e3d1ceba1c6b1cc774 (patch)
treee126e070e0d79d576412e8966baf1f3a8ec1ef73
parent8ee10fb59163977fb95fa688fcd6ee2409b48f02 (diff)
Update the ubuntu readme to include the steps for Mac setups
-rw-r--r--ubuntu.md29
1 files changed, 28 insertions, 1 deletions
diff --git a/ubuntu.md b/ubuntu.md
index 7782e5f..5ba2dd4 100644
--- a/ubuntu.md
+++ b/ubuntu.md
@@ -16,9 +16,36 @@
**Example:**
```bash
+sudo hostnamectl set-hostname ubuntuiso
passwd
nmcli dev wifi connect <SSID> password <PASSPHRASE>
-sudo hostnamectl set-hostname ubuntuiso
+sudo apt update
+sudo DEBIAN_FRONTEND=noninteractive apt install -y openssh-server
+sudo systemctl restart ssh avahi-daemon
+```
+
+**Mac Example:**
+
+On a machine with internet connection, download the Apple missing drivers dependencies
+
+- Get the kernel version from the live ISO (ex. `uname -r`)
+- Use the kernel version to download dependencies (ex. `./hack/ubuntu/mac-drivers.sh 6.11.0-17-generic`)
+- Copy downloaded dependencies (in `/tmp/bcmwl-drivers`) to the USB
+
+On the Ubuntu Live ISO
+
+```bash
+sudo mkdir /media/usb
+lsblk
+sudo mount /dev/sdX1 /media/usb
+cp -r /media/usb/bcmwl-drivers /tmp/bcmwl
+bash /tmp/bcmwl/install-wl.sh /tmp/bcmwl
+
+ip link
+hostnamectl set-hostname mubuntuiso
+passwd
+nmcli dev wifi connect <SSID> password <PASSPHRASE>
+dhcpcd wlps3s0
sudo apt update
sudo DEBIAN_FRONTEND=noninteractive apt install -y openssh-server
sudo systemctl restart ssh avahi-daemon