Difference between revisions of "USB OFFLINE: Ubuntu 22.04 Install OS Server"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| Line 12: | Line 12: | ||
sudo dd if=ubuntu-server.iso of=/dev/sdc oflag=direct bs=1M status=progress | sudo dd if=ubuntu-server.iso of=/dev/sdc oflag=direct bs=1M status=progress | ||
sudo dd if=ubuntu-server.iso of=/dev/sdc oflag=direct bs=4M status=progress | sudo dd if=ubuntu-server.iso of=/dev/sdc oflag=direct bs=4M status=progress | ||
| + | |||
| + | * dd : Start the dd command to write DVD/CD iso image. | ||
| + | * if=ubuntu-server.iso : Path to input file. | ||
| + | * of=/dev/sdc : Path to destination USB disk/stick. | ||
| + | * bs=1M : read and write up to BYTES bytes at a time. In this example, 1M at a time. | ||
| + | * status=progress : Display progress bar while writing image to the USB | ||
Instalasi | Instalasi | ||
* Pastikan SSH terinstall | * Pastikan SSH terinstall | ||
Revision as of 03:27, 18 June 2023
Download Ubuntu
https://ubuntu.com/download
Bersihkan fs
wipefs -a /dev/sdc
Tambahkan oflag=direct
sudo dd if=ubuntu-server.iso of=/dev/sdc oflag=direct bs=1M status=progress sudo dd if=ubuntu-server.iso of=/dev/sdc oflag=direct bs=4M status=progress
- dd : Start the dd command to write DVD/CD iso image.
- if=ubuntu-server.iso : Path to input file.
- of=/dev/sdc : Path to destination USB disk/stick.
- bs=1M : read and write up to BYTES bytes at a time. In this example, 1M at a time.
- status=progress : Display progress bar while writing image to the USB
Instalasi
- Pastikan SSH terinstall