Bug 1945779
Summary: | Kickstart `ignoredisk` command hides USB CD-ROM installation media | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | David Barr <dafydd> | ||||||||
Component: | anaconda | Assignee: | Vendula Poncova <vponcova> | ||||||||
Status: | CLOSED EOL | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||
Severity: | medium | Docs Contact: | |||||||||
Priority: | unspecified | ||||||||||
Version: | 34 | CC: | anaconda-maint-list, andreas.luik, jonathan, kellin, vanmeeuwen+fedora, vponcova, wwoods | ||||||||
Target Milestone: | --- | ||||||||||
Target Release: | --- | ||||||||||
Hardware: | x86_64 | ||||||||||
OS: | Linux | ||||||||||
Whiteboard: | |||||||||||
Fixed In Version: | Doc Type: | If docs needed, set a value | |||||||||
Doc Text: | Story Points: | --- | |||||||||
Clone Of: | Environment: | ||||||||||
Last Closed: | 2022-06-08 06:29:08 UTC | Type: | Bug | ||||||||
Regression: | --- | Mount Type: | --- | ||||||||
Documentation: | --- | CRM: | |||||||||
Verified Versions: | Category: | --- | |||||||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||
Cloudforms Team: | --- | Target Upstream Version: | |||||||||
Embargoed: | |||||||||||
Attachments: |
|
Description
David Barr
2021-04-01 23:01:25 UTC
Created attachment 1771191 [details]
The ks file where I first noticed the problem.
Created attachment 1771192 [details]
The ks file where I started with a minimum command set and worked up.
I got a reply on the kickstart-list that caused me to try replicating the problem from the bottom up. That is, start with a minimum kickstart command set and see if I still saw the problem. I started with this command set. ``` cdrom graphical logging --level=info ``` I worked up to the attached `ks.cfg.bottomUp` and couldn't recreate the problem. So, my starting/failing kickstart file and the bottomUp kickstart file are attached, and I'm still trying to narrow the parameters of my problem. Turns out the `network` command is covering for the `ignoredisk` command. My second attachment is `ks.cfg.bottomUp`. Here are some diffs. This failed. Note the `ignoredisk`. ``` [root@bravo ~]# diff ks.cfg.bottomUp ks.cfg 2d1 < #install # Deprecated 7d5 < logging --level=info 19a18,21 > # Partition clearing information > zerombr > ignoredisk --only-use=sda > clearpart --initlabel --drives=sda --all ``` This succeeds. Note the `ignoredisk` is commented. ``` [root@bravo ~]# diff ks.cfg.bottomUp ks.cfg 2d1 < #install # Deprecated 7d5 < logging --level=info 19a18,21 > # Partition clearing information > zerombr > #ignoredisk --only-use=sda > clearpart --initlabel --drives=sda --all ``` This succeeds with the `ignoredisk` uncommented and a `network` command added. ``` [root@bravo ~]# diff ks.cfg.bottomUp ks.cfg 2d1 < #install # Deprecated 7d5 < logging --level=info 14a13 > network --bootproto=dhcp --device=link --onboot=off --noipv6 19a19,22 > # Partition clearing information > zerombr > ignoredisk --only-use=sda > clearpart --initlabel --drives=sda --all ``` Please, attach all files with installation logs, especially the file named syslog. You can find them during the installation in /tmp or on the installed system in /var/log/anaconda/. Created attachment 1771495 [details]
TGZ of all log files.
Uncompressed, the syslog file was 2.2MB and timed out the uploader twice. So, I compressed all of the logs to 1.2MB and sent the TGZ. The installer fails to find the USB CD-ROM drive, because the `ignoredisk --only-use=` kickstart command hides it. As a workaround, you can use the `harddrive` command instead of the `cdrom` command. For example: harddrive --partition=sdb --dir=/ where sdb is the name of the USB device, or specify the USB device with a label: harddrive --partition=LABEL=CentOS-8-3-2011-x86_64-dvd --dir=/ It is a known issue that we would like to fix soon. This message is a reminder that Fedora Linux 34 is nearing its end of life. Fedora will stop maintaining and issuing updates for Fedora Linux 34 on 2022-06-07. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At that time this bug will be closed as EOL if it remains open with a 'version' of '34'. Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, change the 'version' to a later Fedora Linux version. Thank you for reporting this issue and we are sorry that we were not able to fix it before Fedora Linux 34 is end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora Linux, you are encouraged to change the 'version' to a later version prior to this bug being closed. Fedora Linux 34 entered end-of-life (EOL) status on 2022-06-07. Fedora Linux 34 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug. If you can reproduce this bug against a currently maintained version of Fedora please feel free to reopen this bug against that version. If you are unable to reopen this bug, please file a new report against the current release. Thank you for reporting this bug and we are sorry it could not be fixed. |