Make a directory to mount the ISO –
sudo mkdir -p /mnt/mount-iso/
Now, we will mount the ISO image on /mnt/mount-iso/ through mount command –
mount -o loop /path/to/ubuntu-19.10-desktop-amd64.iso /mnt/mount-iso/
Open /etc/apt/sources.list in a text editor, we have used nano.
sudo nano /etc/apt/sources.list
And, add the following entries in /etc/apt/sources.list
deb file:/mnt/mount-iso eoan main
and, run
sudo apt update
ref. https://askubuntu.com/questions/4694/how-to-use-a-iso-image-as-a-cd-rom-repository
'개발' 카테고리의 다른 글
[cassandra] Detected a synchronous call on an I/O thread (0) | 2022.08.09 |
---|---|
port kill (0) | 2022.08.06 |
mac Microk8s 설치 (0) | 2022.08.06 |
[kafka] NotLeaderForPartitionException 해결 방법 (0) | 2022.08.06 |
nvidia 를 사용하는 ubuntu 네트워크 인터페이스가 안보이는 문제 (0) | 2022.08.06 |