Membuat file ISO di Ubuntu 20.04: Difference between revisions
Appearance
Created page with "Under Linux, you can create an ISO image from a folder using a command line argument with the Mkisofs utility. You can use Mkisofs to automatically backup the data with the option to exclude some individual files if necessary. It supports wildcards as well. The basic syntax of the command is: mkisofs -o [filename.iso] [ directory_path] <code>-o</code> defines the file name of the ISO you want to create followed by the directory you want to backup or store an ISO file...." |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Di [[Linux]], Anda dapat membuat image ISO dari folder menggunakan argumen baris perintah dengan utilitas [[Mkisofs]]. Anda dapat menggunakan [[Mkisofs]] untuk mencadangkan data secara otomatis dengan opsi untuk mengecualikan beberapa file individual jika perlu. Ini mendukung wildcard juga. | |||
Perintah dasar tersebut adalah: | |||
mkisofs -o [filename.iso] [ directory_path] | mkisofs -o [filename.iso] [ directory_path] | ||
<code>-o</code> | <code>-o</code> mendefinisikan nama file ISO yang ingin Anda buat diikuti dengan direktori yang ingin Anda backup atau menyimpan file ISO. | ||
Misalnya, saya ingin membuat file ISO dari direktori <code>/home/user/Documents/backup</code> dan menyimpannya sebagai file <code>backup.iso</code>: | |||
mkisofs | mkisofs -o backup.iso /home/tin/Documents/backup | ||
atau | |||
mkisofs -D -o backup.iso /home/kangtain/Documents/ | |||
==Source== | ==Source== | ||
*[https://vitux.com/how-to-create-an-iso-file-in-ubuntu/ vitux.com] | *[https://vitux.com/how-to-create-an-iso-file-in-ubuntu/ vitux.com] | ||
[[Category:Linux]] | |||
[[Category:Ubuntu]] | |||
[[Category:Tutorial]] | |||
Latest revision as of 20:10, 11 August 2022
Di Linux, Anda dapat membuat image ISO dari folder menggunakan argumen baris perintah dengan utilitas Mkisofs. Anda dapat menggunakan Mkisofs untuk mencadangkan data secara otomatis dengan opsi untuk mengecualikan beberapa file individual jika perlu. Ini mendukung wildcard juga.
Perintah dasar tersebut adalah:
mkisofs -o [filename.iso] [ directory_path]
-o mendefinisikan nama file ISO yang ingin Anda buat diikuti dengan direktori yang ingin Anda backup atau menyimpan file ISO.
Misalnya, saya ingin membuat file ISO dari direktori /home/user/Documents/backup dan menyimpannya sebagai file backup.iso:
mkisofs -o backup.iso /home/tin/Documents/backup
atau
mkisofs -D -o backup.iso /home/kangtain/Documents/