-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
As per the Fedora 19 schedule [1], Fedora 19 Final Release Candidate 2 (RC2) is now available for testing. Content information, including changes, can be found at https://fedorahosted.org/rel-eng/ticket/5623#comment:21 . Please see the following pages for testing instructions.
Download: http://armpkgs.fedoraproject.org/mash/stage/19-RC2/
Installation:
https://fedoraproject.org/wiki/Test_Results:Current_Installation_Test
Base:
https://fedoraproject.org/wiki/Test_Results:Current_Base_Test
Desktop:
https://fedoraproject.org/wiki/Test_Results:Current_Desktop_Test
Ideally, all Alpha, Beta, and Final priority test cases for Installation [2], Base [3], and Desktop [4] should pass in order to meet the Final Release Criteria [5]. Help is available on #fedora-arm on irc.freenode.net [6], or on the arm list [7].
Create Fedora 19 Final test composes (TC) and release candidates (RC) https://fedorahosted.org/rel-eng/ticket/5623
Current Blocker and Freeze Exception bugs: http://qa.fedoraproject.org/blockerbugs/current
[1] http://fedorapeople.org/groups/schedule/f-19/f-19-quality-tasks.html [2] https://fedoraproject.org/wiki/QA:Installation_validation_testing [3] https://fedoraproject.org/wiki/QA:Base_validation_testing [4] https://fedoraproject.org/wiki/QA:Desktop_validation_testing [5] https://fedoraproject.org/wiki/Fedora_19_Final_Release_Criteria [6] irc://irc.freenode.net/fedora-arm [7] https://admin.fedoraproject.org/mailman/listinfo/arm
Hi
Here is a quick snip of shell code to pull down the entire set, verify checksum, and decompress.
mkdir -p ~/Downloads/f19-arm-rc2 wget -P ~/Downloads/f19-arm-rc2 -i - <<EOF http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-Imag... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-KDE-... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-KDE-... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-LXDE... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-LXDE... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-Mate... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-Mate... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-Mini... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-Mini... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-SoaS... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-SoaS... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-XFCE... http://armpkgs.fedoraproject.org/mash/stage/19-RC2/Images/armhfp/Fedora-XFCE... EOF cd ~/Downloads/f19-arm-rc2 sha256sum --check Fedora-Images-armhfp-19-TC1-CHECKSUM.txt && unxz -v ~/Downloads/f19-arm-rc2/*.xz #THE END
Happy testing!
-Jon Disnard fas: parasense irc: masta
On Wed, Jun 26, 2013 at 8:29 AM, Dennis Gilmore dennis@ausil.us wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
As per the Fedora 19 schedule [1], Fedora 19 Final Release Candidate 2 (RC2) is now available for testing. Content information, including changes, can be found at https://fedorahosted.org/rel-eng/ticket/5623#comment:21 . Please see the following pages for testing instructions.
Download: http://armpkgs.fedoraproject.org/mash/stage/19-RC2/
Installation:
https://fedoraproject.org/wiki/Test_Results:Current_Installation_Test
Base:
https://fedoraproject.org/wiki/Test_Results:Current_Base_Test
Desktop:
https://fedoraproject.org/wiki/Test_Results:Current_Desktop_Test
Ideally, all Alpha, Beta, and Final priority test cases for Installation [2], Base [3], and Desktop [4] should pass in order to meet the Final Release Criteria [5]. Help is available on #fedora-arm on irc.freenode.net [6], or on the arm list [7].
Create Fedora 19 Final test composes (TC) and release candidates (RC) https://fedorahosted.org/rel-eng/ticket/5623
Current Blocker and Freeze Exception bugs: http://qa.fedoraproject.org/blockerbugs/current
[1] http://fedorapeople.org/groups/schedule/f-19/f-19-quality-tasks.html [2] https://fedoraproject.org/wiki/QA:Installation_validation_testing [3] https://fedoraproject.org/wiki/QA:Base_validation_testing [4] https://fedoraproject.org/wiki/QA:Desktop_validation_testing [5] https://fedoraproject.org/wiki/Fedora_19_Final_Release_Criteria [6] irc://irc.freenode.net/fedora-arm [7] https://admin.fedoraproject.org/mailman/listinfo/arm -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux)
iEYEARECAAYFAlHK7MAACgkQkSxm47BaWffGqQCfeaV+7Dj04YqRxSi/Y75TU6Vv uJQAnRZw4BqRQhsuRk7Emeo20dqFNjZ6 =P7vm -----END PGP SIGNATURE----- _______________________________________________ arm mailing list arm@lists.fedoraproject.org https://admin.fedoraproject.org/mailman/listinfo/arm
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Wed, 26 Jun 2013 10:47:28 -0500 Jon jdisnard@gmail.com wrote:
Hi
Here is a quick snip of shell code to pull down the entire set, verify checksum, and decompress.
much simpler way
mkdir 19-RC2 cd 19-RC2/ lftp http://armpkgs.fedoraproject.org/mash/stage/19-RC2/ glob get * quit
and done
Dennis