kylekwon.com

Engineer • Researcher

Set-up Linux with utm (Virtual Machines for Mac)

Aug 19, 2026

가상 머신 SW인 UTM을 사용하여 Apple Sillicon Mac(M1 Pro, M4 Air) 에서 Ubuntu 26.04 64-bit PC (AMD64) Server 설치

You need to know!

  • UTM employs Apple's Hypervisor virtualization framework to run ARM64 operating systems on Apple Silicon at near native speeds
  • UTM can emulate classic operating systems, like x86_64, SPARC
  • UTM uses QEMU

1. Download UTM

2. Download Ubuntu ISO File

3. Select Emulation(Emulate)

x86_64(amd64) 환경의 linux ubuntu 설치를 위해 emulate 으로 가상머신을 구축한다.

Specification

  • Ubuntu 26.04 Server(AMD64)
  • Linux
  • Expert Mode 활성화
  • Architecture : x86_64
  • System : Standard PC(Q35 + ICH9, 2009) (alias of pc-q35-9.1)(q35)
  • Memory : 4096MB
  • CPU : 2
  • Enable Hardware OpenGL Accleration : Off
  • Storage : 45GiB
  • Shared Directory : 설정 안하기
  • Name : Ubuntu 26.04 Server

Allow Copy & Paste with SSH

  • 생성된 우분투에서는 호스트-게스트 간의 복사 붙여넣기가 안되어 불편할 수 있다.
  • SSH를 이용하여 복사 또는 붙여넣기가 가능한 형태로 구성
  • ip addr | ifconfig
    • enp0s1 inet(family) - 192.168.64.2(e.g)
  • sudo apt update
  • sudo apt install -y openssh-server
  • ssh <user>@<host> -p PORT -i [private_key]

4. After installation

before install packages, have to run code below

sudo apt update -y && sudo apt upgrade -y