Jump to content

Membuat file ISO di Ubuntu 20.04

From Wiki
Revision as of 16:13, 18 February 2022 by Kangtain (talk | contribs) (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....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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]

-o defines the file name of the ISO you want to create followed by the directory you want to backup or store an ISO file.

For instance, I want to create an ISO file from the directory /home/user/Documents/backup and save it as backup.iso file:

mkisofs –o backup.iso /home/tin/Documents/backup

Source