From Fedora Project Wiki
fp-wiki>ImportUser (Imported from MoinMoin) |
m (Adjust category) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 5: | Line 5: | ||
== Steps To Reproduce == | == Steps To Reproduce == | ||
# Boot the installer using any available means. | |||
# At the disk partitioning step, choose customized partitioning. Create at least one encrypted and one non-encrypted device. | |||
# Proceed with installation as usual. | |||
== Expected Results == | == Expected Results == | ||
# Installation completes without error. | |||
# The system boots into runlevel 3 (at least). | |||
# All partitions specified are mounted (e.g. no failed mounts). | |||
# Partitions look sane (e.g. no garbage files). | |||
# They match the chosen configuration (e.g. not that /usr is encrypted where it should not be). | |||
== Automation == | == Automation == | ||
Line 25: | Line 24: | ||
part /home --fstype ext3 --size=1000 --grow --asprimary --encrypted --passphrase=<your_password> | part /home --fstype ext3 --size=1000 --grow --asprimary --encrypted --passphrase=<your_password> | ||
</pre> | </pre> | ||
[[Category:Installer Partitioning Test Cases]] |
Latest revision as of 22:21, 15 January 2010
QA/TestCases/PartitioningEncryptedMix
Description
This test verifies that partitioning with a mix of encrypted and non-encrypted block devices work.
Steps To Reproduce
- Boot the installer using any available means.
- At the disk partitioning step, choose customized partitioning. Create at least one encrypted and one non-encrypted device.
- Proceed with installation as usual.
Expected Results
- Installation completes without error.
- The system boots into runlevel 3 (at least).
- All partitions specified are mounted (e.g. no failed mounts).
- Partitions look sane (e.g. no garbage files).
- They match the chosen configuration (e.g. not that /usr is encrypted where it should not be).
Automation
In your ks.cfg the partitioning section should look like:
clearpart --all part / --fstype ext3 --size=4096 --asprimary part swap --size=2048 --asprimary part /home --fstype ext3 --size=1000 --grow --asprimary --encrypted --passphrase=<your_password>