From 05a5eb4e85ee11d20b138617ce91cd513fbaff92 Mon Sep 17 00:00:00 2001 From: Peter Boy Date: Aug 24 2023 15:40:42 +0000 Subject: Added metadata, moved partials into main text body, fixed typos. --- diff --git a/modules/ROOT/pages/_partials/2delete-con_disk-partition-linux.adoc b/modules/ROOT/pages/_partials/2delete-con_disk-partition-linux.adoc new file mode 100644 index 0000000..dedd8c6 --- /dev/null +++ b/modules/ROOT/pages/_partials/2delete-con_disk-partition-linux.adoc @@ -0,0 +1,9 @@ +// Module included in the following assemblies: +// +// creating-a-disk-partition-in-linux-using-the-parted-command.adoc +:experimental: + +[#{context}-disk-partition-linux] += Disk Partitioning in Linux + +Creating and deleting partitions in Linux is a regular practice because storage devices (such as hard drives and USB drives) must be structured in some way before they can be used. In most cases, large storage devices are divided into separate sections called partitions. Partitioning also allows you to divide your hard drive into isolated sections, where each section behaves as its own hard drive. Partitioning is particularly useful if you run multiple operating systems. diff --git a/modules/ROOT/pages/_partials/2delete-proc_creating-a-disk-partition-in-linux.adoc b/modules/ROOT/pages/_partials/2delete-proc_creating-a-disk-partition-in-linux.adoc new file mode 100644 index 0000000..c518b61 --- /dev/null +++ b/modules/ROOT/pages/_partials/2delete-proc_creating-a-disk-partition-in-linux.adoc @@ -0,0 +1,103 @@ +// Module included in the following assemblies: +// +// + +// Base the file name and the ID on the module title. For example: +// * file name: proc_creating-a-disk-partition-in-linux.adoc +// * ID: [id='creating-a-disk-partition-in-linux'] + +// The ID is used as an anchor for linking to the module. Avoid changing it after the module has been published to ensure existing links are not broken. +[id='creating-a-disk-partition-in-linux_{context}'] +// The `context` attribute enables module reuse. Every module's ID includes {context}, which ensures that the module has a unique ID even if it is reused multiple times in a guide. += Creating a Disk Partition in Linux +// Start the title of a procedure module with a verb, such as Creating or Create. See also _Wording of headings_ in _The IBM Style Guide_. + +This procedure describes how to partition a storage disk in Linux using the `parted` command. + +== Procedure + +. List the partitions using the `parted -l` command to identify the storage device you want to partition. Typically, the first hard disk (`/dev/sda` or `/dev/vda`) will contain the operating system, so look for another disk to find the one you want. For example: ++ +---- +sudo parted -l +Model: ATA RevuAhn_850X1TU5 (scsi) +Disk /dev/vdc: 512GB +Sector size (logical/physical): 512B/512B +Partition Table: msdos +Disk Flags: + +Number Start End Size Type File system Flags + 1 1049kB 525MB 524MB primary ext4 boot + 2 525MB 512GB 512GB primary lvm +---- ++ +. Open the storage device. Use the `parted` command to begin working with the selected storage device. For example: ++ +---- +sudo parted /dev/vdc +GNU Parted 3.3 +Using /dev/vdc +Welcome to GNU Parted! Type 'help' to view a list of commands. +(parted) +---- ++ +[IMPORTANT] +==== +Be sure to indicate the specific device you want to partition. If you just enter `parted` without a device name, it will randomly select a storage device to modify. +==== ++ +. Set the partition table type to `gpt`, then enter `Yes` to accept it. ++ +---- +(parted) mklabel gpt +Warning: the existing disk label on /dev/vdc will be destroyed +and all data on this disk will be lost. Do you want to continue? +Yes/No? Yes +---- ++ +[NOTE] +==== +The `mklabel` and `mktable` commands are both used for making a partition table on a storage device. At the time of writing, the supported partition tables are: `aix`, `amiga`, `bsd`, `dvh`, `gpt`, `mac`, `ms-dos`, `pc98`, `sun`, `atari`, and `loop`. Use `help mklabel` to get a list of supported partition tables. Remember `mklabel` will not make a partition, rather it will make a partition table. +==== +. Review the partition table of the storage device. ++ +---- +(parted) print +Model: Virtio Block Device (virtblk) +Disk /dev/vdc: 1396MB +Sector size (logical/physical): 512B/512B +Partition Table: gpt +Disk Flags: +Number Start End Size File system Name Flags +---- ++ +. Create a new partition using the following command. For example, 1396 MB on partition 0: ++ +---- +(parted) mkpart primary 0 1396MB + +Warning: The resulting partition is not properly aligned for best performance +Ignore/Cancel? I + +(parted) print +Model: Virtio Block Device (virtblk) +Disk /dev/vdc: 1396MB +Sector size (logical/physical): 512B/512B +Partition Table: gpt +Disk Flags: +Number Start End Size File system Name Flags + 1 17.4kB 1396MB 1396MB primary +---- ++ +[NOTE] +==== +Providing a partition name under GPT is a must; in the above example, primary is the name, not the partition type. In a GPT partition table, the partition type is used as partition name. +==== ++ +. Quit using the `quit` command. Changes are automatically saved when you quit `parted`. ++ +---- +(parted) quit +Information: You may need to update /etc/fstab. +---- ++ diff --git a/modules/ROOT/pages/_partials/2delete-ref_help-mkpart.adoc b/modules/ROOT/pages/_partials/2delete-ref_help-mkpart.adoc new file mode 100644 index 0000000..64d9631 --- /dev/null +++ b/modules/ROOT/pages/_partials/2delete-ref_help-mkpart.adoc @@ -0,0 +1,37 @@ +// Module included in the following assemblies: +// +// + +// Base the file name and the ID on the module title. For example: +// * file name: help-mkpart.adoc +// * ID: [id='help-mkpart'] + +// The ID is used as an anchor for linking to the module. Avoid changing it after the module has been published to ensure existing links are not broken. +[id='help-mkpart_{context}'] +// The `context` attribute enables module reuse. Every module's ID includes {context}, which ensures that the module has a unique ID even if it is reused multiple times in a guide. += Help command for creating a new partition + +To get help on how to make a new partition, type: `help mkpart`. + +---- +(parted) help mkpart + mkpart PART-TYPE [FS-TYPE] START END make a partition + + PART-TYPE is one of: primary, logical, extended + FS-TYPE is one of: udf, btrfs, nilfs2, ext4, ext3, ext2, fat32, fat16, hfsx, hfs+, hfs, jfs, swsusp, + linux-swap(v1), linux-swap(v0), ntfs, reiserfs, hp-ufs, sun-ufs, xfs, apfs2, apfs1, asfs, amufs5, + amufs4, amufs3, amufs2, amufs1, amufs0, amufs, affs7, affs6, affs5, affs4, affs3, affs2, affs1, + affs0, linux-swap, linux-swap(new), linux-swap(old) + START and END are disk locations, such as 4GB or 10%. Negative values count from the end of the + disk. For example, -1s specifies exactly the last sector. + + 'mkpart' makes a partition without creating a new file system on the partition. FS-TYPE may be + specified to set an appropriate partition ID. +---- + +[NOTE] +==== +* Setting filesystem type (`FS-TYPE`) will not create an ext4 filesystem on /dev/vdc1. You still have to create the ext4 filesystem with `mkfs.ext4`. +* A DOS partition table's partition types are primary, logical, and extended. +* Providing a partition name under GPT is a must. In a GPT partition table, the partition type is used as the partition name. +==== diff --git a/modules/ROOT/pages/_partials/con_disk-partition-linux.adoc b/modules/ROOT/pages/_partials/con_disk-partition-linux.adoc deleted file mode 100644 index dedd8c6..0000000 --- a/modules/ROOT/pages/_partials/con_disk-partition-linux.adoc +++ /dev/null @@ -1,9 +0,0 @@ -// Module included in the following assemblies: -// -// creating-a-disk-partition-in-linux-using-the-parted-command.adoc -:experimental: - -[#{context}-disk-partition-linux] -= Disk Partitioning in Linux - -Creating and deleting partitions in Linux is a regular practice because storage devices (such as hard drives and USB drives) must be structured in some way before they can be used. In most cases, large storage devices are divided into separate sections called partitions. Partitioning also allows you to divide your hard drive into isolated sections, where each section behaves as its own hard drive. Partitioning is particularly useful if you run multiple operating systems. diff --git a/modules/ROOT/pages/_partials/proc_creating-a-disk-partition-in-linux.adoc b/modules/ROOT/pages/_partials/proc_creating-a-disk-partition-in-linux.adoc deleted file mode 100644 index c518b61..0000000 --- a/modules/ROOT/pages/_partials/proc_creating-a-disk-partition-in-linux.adoc +++ /dev/null @@ -1,103 +0,0 @@ -// Module included in the following assemblies: -// -// - -// Base the file name and the ID on the module title. For example: -// * file name: proc_creating-a-disk-partition-in-linux.adoc -// * ID: [id='creating-a-disk-partition-in-linux'] - -// The ID is used as an anchor for linking to the module. Avoid changing it after the module has been published to ensure existing links are not broken. -[id='creating-a-disk-partition-in-linux_{context}'] -// The `context` attribute enables module reuse. Every module's ID includes {context}, which ensures that the module has a unique ID even if it is reused multiple times in a guide. -= Creating a Disk Partition in Linux -// Start the title of a procedure module with a verb, such as Creating or Create. See also _Wording of headings_ in _The IBM Style Guide_. - -This procedure describes how to partition a storage disk in Linux using the `parted` command. - -== Procedure - -. List the partitions using the `parted -l` command to identify the storage device you want to partition. Typically, the first hard disk (`/dev/sda` or `/dev/vda`) will contain the operating system, so look for another disk to find the one you want. For example: -+ ----- -sudo parted -l -Model: ATA RevuAhn_850X1TU5 (scsi) -Disk /dev/vdc: 512GB -Sector size (logical/physical): 512B/512B -Partition Table: msdos -Disk Flags: - -Number Start End Size Type File system Flags - 1 1049kB 525MB 524MB primary ext4 boot - 2 525MB 512GB 512GB primary lvm ----- -+ -. Open the storage device. Use the `parted` command to begin working with the selected storage device. For example: -+ ----- -sudo parted /dev/vdc -GNU Parted 3.3 -Using /dev/vdc -Welcome to GNU Parted! Type 'help' to view a list of commands. -(parted) ----- -+ -[IMPORTANT] -==== -Be sure to indicate the specific device you want to partition. If you just enter `parted` without a device name, it will randomly select a storage device to modify. -==== -+ -. Set the partition table type to `gpt`, then enter `Yes` to accept it. -+ ----- -(parted) mklabel gpt -Warning: the existing disk label on /dev/vdc will be destroyed -and all data on this disk will be lost. Do you want to continue? -Yes/No? Yes ----- -+ -[NOTE] -==== -The `mklabel` and `mktable` commands are both used for making a partition table on a storage device. At the time of writing, the supported partition tables are: `aix`, `amiga`, `bsd`, `dvh`, `gpt`, `mac`, `ms-dos`, `pc98`, `sun`, `atari`, and `loop`. Use `help mklabel` to get a list of supported partition tables. Remember `mklabel` will not make a partition, rather it will make a partition table. -==== -. Review the partition table of the storage device. -+ ----- -(parted) print -Model: Virtio Block Device (virtblk) -Disk /dev/vdc: 1396MB -Sector size (logical/physical): 512B/512B -Partition Table: gpt -Disk Flags: -Number Start End Size File system Name Flags ----- -+ -. Create a new partition using the following command. For example, 1396 MB on partition 0: -+ ----- -(parted) mkpart primary 0 1396MB - -Warning: The resulting partition is not properly aligned for best performance -Ignore/Cancel? I - -(parted) print -Model: Virtio Block Device (virtblk) -Disk /dev/vdc: 1396MB -Sector size (logical/physical): 512B/512B -Partition Table: gpt -Disk Flags: -Number Start End Size File system Name Flags - 1 17.4kB 1396MB 1396MB primary ----- -+ -[NOTE] -==== -Providing a partition name under GPT is a must; in the above example, primary is the name, not the partition type. In a GPT partition table, the partition type is used as partition name. -==== -+ -. Quit using the `quit` command. Changes are automatically saved when you quit `parted`. -+ ----- -(parted) quit -Information: You may need to update /etc/fstab. ----- -+ diff --git a/modules/ROOT/pages/_partials/ref_help-mkpart.adoc b/modules/ROOT/pages/_partials/ref_help-mkpart.adoc deleted file mode 100644 index 64d9631..0000000 --- a/modules/ROOT/pages/_partials/ref_help-mkpart.adoc +++ /dev/null @@ -1,37 +0,0 @@ -// Module included in the following assemblies: -// -// - -// Base the file name and the ID on the module title. For example: -// * file name: help-mkpart.adoc -// * ID: [id='help-mkpart'] - -// The ID is used as an anchor for linking to the module. Avoid changing it after the module has been published to ensure existing links are not broken. -[id='help-mkpart_{context}'] -// The `context` attribute enables module reuse. Every module's ID includes {context}, which ensures that the module has a unique ID even if it is reused multiple times in a guide. -= Help command for creating a new partition - -To get help on how to make a new partition, type: `help mkpart`. - ----- -(parted) help mkpart - mkpart PART-TYPE [FS-TYPE] START END make a partition - - PART-TYPE is one of: primary, logical, extended - FS-TYPE is one of: udf, btrfs, nilfs2, ext4, ext3, ext2, fat32, fat16, hfsx, hfs+, hfs, jfs, swsusp, - linux-swap(v1), linux-swap(v0), ntfs, reiserfs, hp-ufs, sun-ufs, xfs, apfs2, apfs1, asfs, amufs5, - amufs4, amufs3, amufs2, amufs1, amufs0, amufs, affs7, affs6, affs5, affs4, affs3, affs2, affs1, - affs0, linux-swap, linux-swap(new), linux-swap(old) - START and END are disk locations, such as 4GB or 10%. Negative values count from the end of the - disk. For example, -1s specifies exactly the last sector. - - 'mkpart' makes a partition without creating a new file system on the partition. FS-TYPE may be - specified to set an appropriate partition ID. ----- - -[NOTE] -==== -* Setting filesystem type (`FS-TYPE`) will not create an ext4 filesystem on /dev/vdc1. You still have to create the ext4 filesystem with `mkfs.ext4`. -* A DOS partition table's partition types are primary, logical, and extended. -* Providing a partition name under GPT is a must. In a GPT partition table, the partition type is used as the partition name. -==== diff --git a/modules/ROOT/pages/create-hello-world-rpm.adoc b/modules/ROOT/pages/create-hello-world-rpm.adoc deleted file mode 100644 index 536ff97..0000000 --- a/modules/ROOT/pages/create-hello-world-rpm.adoc +++ /dev/null @@ -1,3 +0,0 @@ -[NOTE] -This page has been replaced with Package Maintainer Docs page -https://docs.fedoraproject.org/en-US/package-maintainers/Packaging_Tutorial_GNU_Hello/[Packaging Tutorial: GNU Hello] diff --git a/modules/ROOT/pages/creating-a-disk-partition-in-linux.adoc b/modules/ROOT/pages/creating-a-disk-partition-in-linux.adoc index 771224c..bd9480a 100644 --- a/modules/ROOT/pages/creating-a-disk-partition-in-linux.adoc +++ b/modules/ROOT/pages/creating-a-disk-partition-in-linux.adoc @@ -1,12 +1,141 @@ -:experimental: -ifdef::context[:parent-context: {context}] -:context: using-parted -[id='disk-partition-in-linux-{context}'] -= Creating a disk partition in Linux - -include::{partialsdir}/con_disk-partition-linux.adoc[leveloffset=+1] -include::{partialsdir}/proc_creating-a-disk-partition-in-linux.adoc[leveloffset=+1] -include::{partialsdir}/ref_help-mkpart.adoc[leveloffset=+1] += Creating a Disk Partition in Linux + Connor Lim ; +:revnumber: unspecified +:revdate: 2021-01-28 +:category: Administration +:tags: How-to, Storage, Disk partition +//:page-aliases: + + + +Creating and deleting partitions in Linux is a regular practice because storage devices (such as hard drives and USB drives) must be structured in some way before they can be used. In most cases, large storage devices are divided into separate sections called partitions. Partitioning also allows you to divide your hard drive into isolated sections, where each section behaves as its own hard drive. Partitioning is particularly useful if you run multiple operating systems. + + + +== Creating a Disk Partition in Linux + +This procedure describes how to partition a storage disk in Linux using the `parted` command. + +=== Procedure + +. List the partitions using the `parted -l` command to identify the storage device you want to partition. Typically, the first hard disk (`/dev/sda` or `/dev/vda`) will contain the operating system, so look for another disk to find the one you want. For example: ++ +---- +sudo parted -l +Model: ATA RevuAhn_850X1TU5 (scsi) +Disk /dev/vdc: 512GB +Sector size (logical/physical): 512B/512B +Partition Table: msdos +Disk Flags: + +Number Start End Size Type File system Flags + 1 1049kB 525MB 524MB primary ext4 boot + 2 525MB 512GB 512GB primary lvm +---- ++ +. Open the storage device. Use the `parted` command to begin working with the selected storage device. For example: ++ +---- +sudo parted /dev/vdc +GNU Parted 3.3 +Using /dev/vdc +Welcome to GNU Parted! Type 'help' to view a list of commands. +(parted) +---- ++ +[IMPORTANT] +==== +Be sure to indicate the specific device you want to partition. If you just enter `parted` without a device name, it will randomly select a storage device to modify. +==== ++ +. Set the partition table type to `gpt`, then enter `Yes` to accept it. ++ +---- +(parted) mklabel gpt +Warning: the existing disk label on /dev/vdc will be destroyed +and all data on this disk will be lost. Do you want to continue? +Yes/No? Yes +---- ++ +[NOTE] +==== +The `mklabel` and `mktable` commands are both used for making a partition table on a storage device. At the time of writing, the supported partition tables are: `aix`, `amiga`, `bsd`, `dvh`, `gpt`, `mac`, `ms-dos`, `pc98`, `sun`, `atari`, and `loop`. Use `help mklabel` to get a list of supported partition tables. Remember `mklabel` will not make a partition, rather it will make a partition table. +==== +. Review the partition table of the storage device. ++ +---- +(parted) print +Model: Virtio Block Device (virtblk) +Disk /dev/vdc: 1396MB +Sector size (logical/physical): 512B/512B +Partition Table: gpt +Disk Flags: +Number Start End Size File system Name Flags +---- ++ +. Create a new partition using the following command. For example, 1396 MB on partition 0: ++ +---- +(parted) mkpart primary 0 1396MB + +Warning: The resulting partition is not properly aligned for best performance +Ignore/Cancel? I + +(parted) print +Model: Virtio Block Device (virtblk) +Disk /dev/vdc: 1396MB +Sector size (logical/physical): 512B/512B +Partition Table: gpt +Disk Flags: +Number Start End Size File system Name Flags + 1 17.4kB 1396MB 1396MB primary +---- ++ +[NOTE] +==== +Providing a partition name under GPT is a must; in the above example, primary is the name, not the partition type. In a GPT partition table, the partition type is used as partition name. +==== ++ +. Quit using the `quit` command. Changes are automatically saved when you quit `parted`. ++ +---- +(parted) quit +Information: You may need to update /etc/fstab. +---- + + + +=== Help command for creating a new partition + +To get help on how to make a new partition, type: `help mkpart`. + +---- +(parted) help mkpart + mkpart PART-TYPE [FS-TYPE] START END make a partition + + PART-TYPE is one of: primary, logical, extended + FS-TYPE is one of: udf, btrfs, nilfs2, ext4, ext3, ext2, fat32, fat16, hfsx, hfs+, hfs, jfs, swsusp, + linux-swap(v1), linux-swap(v0), ntfs, reiserfs, hp-ufs, sun-ufs, xfs, apfs2, apfs1, asfs, amufs5, + amufs4, amufs3, amufs2, amufs1, amufs0, amufs, affs7, affs6, affs5, affs4, affs3, affs2, affs1, + affs0, linux-swap, linux-swap(new), linux-swap(old) + START and END are disk locations, such as 4GB or 10%. Negative values count from the end of the + disk. For example, -1s specifies exactly the last sector. + + 'mkpart' makes a partition without creating a new file system on the partition. FS-TYPE may be + specified to set an appropriate partition ID. +---- + +[NOTE] +==== +* Setting filesystem type (`FS-TYPE`) will not create an ext4 filesystem on /dev/vdc1. You still have to create the ext4 filesystem with `mkfs.ext4`. +* A DOS partition table's partition types are primary, logical, and extended. +* Providing a partition name under GPT is a must. In a GPT partition table, the partition type is used as the partition name. +==== + + + + + ifdef::parent-context[:context: {parent-context}] ifndef::parent-context[:!context:] diff --git a/modules/ROOT/pages/creating-and-using-a-live-installation-image.adoc b/modules/ROOT/pages/creating-and-using-a-live-installation-image.adoc index b21f66c..883160a 100644 --- a/modules/ROOT/pages/creating-and-using-a-live-installation-image.adoc +++ b/modules/ROOT/pages/creating-and-using-a-live-installation-image.adoc @@ -3,7 +3,7 @@ Chase Lau ; The Fedora Docs Team :revnumber: unknown :revdate: 2019-10-05 :category: Installation -:tags: How-to Workstation +:tags: How-to, Workstation //:page-aliases: include::partial$attributes.adoc[] diff --git a/modules/ROOT/pages/creating-windows-virtual-machines-using-virtio-drivers.adoc b/modules/ROOT/pages/creating-windows-virtual-machines-using-virtio-drivers.adoc index bd94ab9..4f62bdc 100644 --- a/modules/ROOT/pages/creating-windows-virtual-machines-using-virtio-drivers.adoc +++ b/modules/ROOT/pages/creating-windows-virtual-machines-using-virtio-drivers.adoc @@ -1,7 +1,11 @@ -ifdef::context[:parent-context: {context}] -:context: creating-windows-virtual-machines-using-virtio-drivers -[id='creating-windows-virtual-machines-using-virtio-drivers'] = Creating Windows virtual machines using virtIO drivers +Cole Robinson +:revnumber: unspecified +:revdate: 2021-01-25 +:category: Virtualization +:tags: How-to, Windows, VirtIO, Drivers +//:page-aliases: + Fedora infrastructure hosts virtIO drivers and additional software agents for Windows virtual machines running on kernel-based virtual machines (KVM). https://www.linux-kvm.org/page/Virtio[virtIO] is a virtualization standard for network and disk device drivers. @@ -9,5 +13,3 @@ Fedora cannot ship Windows virtIO drivers because they cannot be built automatic For details on downloading the drivers, please see: https://github.com/virtio-win/virtio-win-pkg-scripts/blob/master/README.md -ifdef::parent-context[:context: {parent-context}] -ifndef::parent-context[:!context:] diff --git a/modules/ROOT/pages/virtualization-an-overview.adoc b/modules/ROOT/pages/virtualization-an-overview.adoc index e6dbd3b..09cdca2 100644 --- a/modules/ROOT/pages/virtualization-an-overview.adoc +++ b/modules/ROOT/pages/virtualization-an-overview.adoc @@ -4,7 +4,7 @@ Markmc ; Denisarnaud ; Lhirlimann :revdate: 2019-10-29 :revremark: Needs Reviewing! :category: Virtualization -:tags: How-to Overview Introduction +:tags: How-to, Overview, Introduction //:page-aliases: // :experimental: diff --git a/modules/ROOT/pages/virtualization-howto-debug-issues.adoc b/modules/ROOT/pages/virtualization-howto-debug-issues.adoc index 9f9bc11..c78a97d 100644 --- a/modules/ROOT/pages/virtualization-howto-debug-issues.adoc +++ b/modules/ROOT/pages/virtualization-howto-debug-issues.adoc @@ -4,7 +4,7 @@ :revdate: 2018-05-20 :revremark: Needs a review! :category: Virtualization -:tags: How-to Troubleshooting +:tags: How-to, Troubleshooting //:page-aliases: // :experimental: diff --git a/modules/ROOT/pages/vmware-what-is-it.adoc b/modules/ROOT/pages/vmware-what-is-it.adoc index 2fbe6f6..3c3ba53 100644 --- a/modules/ROOT/pages/vmware-what-is-it.adoc +++ b/modules/ROOT/pages/vmware-what-is-it.adoc @@ -3,7 +3,7 @@ Héctor Louzao; The Fedora Docs team :revnumber: unknown :revdate: 2020-08-05 :category: Virtualization -:tags: How-to VMware +:tags: How-to, VMware :page-aliases: how-to-use-vmware.adoc diff --git a/modules/ROOT/pages/wine.adoc b/modules/ROOT/pages/wine.adoc index bbcdf40..d199a88 100644 --- a/modules/ROOT/pages/wine.adoc +++ b/modules/ROOT/pages/wine.adoc @@ -2,8 +2,8 @@ Héctor H. Louzao Pozueco; Ankur Sinha; Akshata Khedekar :revnumber: unknown :revdate: 2022-10-03 -:category: Virtualisation -:tags: How-to Windows Wine +:category: Virtualization +:tags: How-to, Windows, Wine //:page-aliases: [abstract] diff --git a/modules/ROOT/pages/zoom.adoc b/modules/ROOT/pages/zoom.adoc index 19b4395..85443d7 100644 --- a/modules/ROOT/pages/zoom.adoc +++ b/modules/ROOT/pages/zoom.adoc @@ -1,9 +1,9 @@ = Installing Zoom on Fedora - Akshata Khedekar +Akshata Khedekar :revnumber: unknown :revdate: 2021 :category: Administration -:tags: How-to Video +:tags: How-to, Video //:page-aliases: include::partial$3rdparty-message.adoc[]