How to know the version of GRUB

Multi tool use
How do I find the version of GRUB that is running in a particular version of Ubuntu? I want a terminal command that tells me.
command-line grub2
add a comment |
How do I find the version of GRUB that is running in a particular version of Ubuntu? I want a terminal command that tells me.
command-line grub2
add a comment |
How do I find the version of GRUB that is running in a particular version of Ubuntu? I want a terminal command that tells me.
command-line grub2
How do I find the version of GRUB that is running in a particular version of Ubuntu? I want a terminal command that tells me.
command-line grub2
command-line grub2
edited Jan 19 at 14:02
Newbyte
54
54
asked Feb 25 '12 at 0:52


Luis Alvarado♦Luis Alvarado
145k135486653
145k135486653
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
For me the above answer given by @Daniel does not work. I have Ubuntu 14.04 LTS (this also works with Ubuntu 17.10) and to check the version of Grub (Grub2) I need to type:
grub-install --version
1
Correct they seemed to have changed it with some newer version. Just like inapt
whereapt-get update -f
won't work anymore and you'll have to use the explicitapt-get update --fix-missing
– Daniel W.
Nov 3 '14 at 15:21
works with 16.04 LTS as well :)
– sarthak-sopho
Oct 16 '18 at 13:17
add a comment |
On clean ubuntu installs the grub package itself doesn't seem to be installed. Thus typing 'grub -anyoption' results in an error that says grub is not installed.
However you can type for example
grub-install -v
And it will give you the correct version of grub currently installed
The version of the Grub is 1.99-21ubuntu3
EDIT: As others have pointed out the commandline flags have been changed in newer versions. So now instead of typing grub-install -v
you'd have to use a capital 'V' or the explicit --version
2
I find it more friendly this way. Also grub-probe -V works.
– Luis Alvarado♦
Feb 25 '12 at 1:14
1
basicly everything in your /usr/bin folder that starts with 'grub' does the job
– Daniel W.
Feb 25 '12 at 1:22
1
Uppercase-V
, not lowercase.
– Sopalajo de Arrierez
Nov 3 '14 at 4:43
Ahh thanks for the hint! They must have changed it with a newer version..I'll edit it in the post
– Daniel W.
Nov 3 '14 at 15:22
add a comment |
This will roughly do the job:
dpkg -l | grep grub | grep ii
You should note that just to confuse things that the version 1.9x is known as Grub2. I think they number it in a similar way that people would call the 1600-1699, the 17th century.
1
I find it weird that there is no command for it. like a grub command that grub -v and done. Thanks again Oli you rock ^^.
– Luis Alvarado♦
Feb 25 '12 at 1:02
I think that v1.9 is supposed to be "pre-Grub2" - i.e., an almost ready version. Yet, you'd think that 2.0.x RC# would have been better naming for them...
– Mei
Feb 25 '12 at 2:30
1
The thing is--the grub you may be using to boot may not be installed from the Ubuntu system you are currently running. Therefore I prefer the other answer.
– John S Gruber
Oct 7 '12 at 17:52
add a comment |
The package name is grub-pc, so you can do this:
dpkg -l grub-pc
which will show you something like this:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-========================================-=========================-=========================-=====================================================================================
ii grub-pc 2.02~beta2-9ubuntu1.7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)
add a comment |
It can be also found out with either of these:
grub-probe --version
grub-probe -V
add a comment |
I'll throw my hat into the ring as well. You can also do it with apt-cache policy grub-pc
:~$ apt-cache policy grub-pc
grub-pc:
Installed: 2.02-2ubuntu8.7
Candidate: 2.02-2ubuntu8.7
Version table:
*** 2.02-2ubuntu8.7 500
500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
100 /var/lib/dpkg/status
2.02-2ubuntu8 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f107486%2fhow-to-know-the-version-of-grub%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
For me the above answer given by @Daniel does not work. I have Ubuntu 14.04 LTS (this also works with Ubuntu 17.10) and to check the version of Grub (Grub2) I need to type:
grub-install --version
1
Correct they seemed to have changed it with some newer version. Just like inapt
whereapt-get update -f
won't work anymore and you'll have to use the explicitapt-get update --fix-missing
– Daniel W.
Nov 3 '14 at 15:21
works with 16.04 LTS as well :)
– sarthak-sopho
Oct 16 '18 at 13:17
add a comment |
For me the above answer given by @Daniel does not work. I have Ubuntu 14.04 LTS (this also works with Ubuntu 17.10) and to check the version of Grub (Grub2) I need to type:
grub-install --version
1
Correct they seemed to have changed it with some newer version. Just like inapt
whereapt-get update -f
won't work anymore and you'll have to use the explicitapt-get update --fix-missing
– Daniel W.
Nov 3 '14 at 15:21
works with 16.04 LTS as well :)
– sarthak-sopho
Oct 16 '18 at 13:17
add a comment |
For me the above answer given by @Daniel does not work. I have Ubuntu 14.04 LTS (this also works with Ubuntu 17.10) and to check the version of Grub (Grub2) I need to type:
grub-install --version
For me the above answer given by @Daniel does not work. I have Ubuntu 14.04 LTS (this also works with Ubuntu 17.10) and to check the version of Grub (Grub2) I need to type:
grub-install --version
edited Oct 21 '17 at 16:47


David Foerster
28.2k1365111
28.2k1365111
answered Apr 27 '14 at 12:18


DevidDevid
684717
684717
1
Correct they seemed to have changed it with some newer version. Just like inapt
whereapt-get update -f
won't work anymore and you'll have to use the explicitapt-get update --fix-missing
– Daniel W.
Nov 3 '14 at 15:21
works with 16.04 LTS as well :)
– sarthak-sopho
Oct 16 '18 at 13:17
add a comment |
1
Correct they seemed to have changed it with some newer version. Just like inapt
whereapt-get update -f
won't work anymore and you'll have to use the explicitapt-get update --fix-missing
– Daniel W.
Nov 3 '14 at 15:21
works with 16.04 LTS as well :)
– sarthak-sopho
Oct 16 '18 at 13:17
1
1
Correct they seemed to have changed it with some newer version. Just like in
apt
where apt-get update -f
won't work anymore and you'll have to use the explicit apt-get update --fix-missing
– Daniel W.
Nov 3 '14 at 15:21
Correct they seemed to have changed it with some newer version. Just like in
apt
where apt-get update -f
won't work anymore and you'll have to use the explicit apt-get update --fix-missing
– Daniel W.
Nov 3 '14 at 15:21
works with 16.04 LTS as well :)
– sarthak-sopho
Oct 16 '18 at 13:17
works with 16.04 LTS as well :)
– sarthak-sopho
Oct 16 '18 at 13:17
add a comment |
On clean ubuntu installs the grub package itself doesn't seem to be installed. Thus typing 'grub -anyoption' results in an error that says grub is not installed.
However you can type for example
grub-install -v
And it will give you the correct version of grub currently installed
The version of the Grub is 1.99-21ubuntu3
EDIT: As others have pointed out the commandline flags have been changed in newer versions. So now instead of typing grub-install -v
you'd have to use a capital 'V' or the explicit --version
2
I find it more friendly this way. Also grub-probe -V works.
– Luis Alvarado♦
Feb 25 '12 at 1:14
1
basicly everything in your /usr/bin folder that starts with 'grub' does the job
– Daniel W.
Feb 25 '12 at 1:22
1
Uppercase-V
, not lowercase.
– Sopalajo de Arrierez
Nov 3 '14 at 4:43
Ahh thanks for the hint! They must have changed it with a newer version..I'll edit it in the post
– Daniel W.
Nov 3 '14 at 15:22
add a comment |
On clean ubuntu installs the grub package itself doesn't seem to be installed. Thus typing 'grub -anyoption' results in an error that says grub is not installed.
However you can type for example
grub-install -v
And it will give you the correct version of grub currently installed
The version of the Grub is 1.99-21ubuntu3
EDIT: As others have pointed out the commandline flags have been changed in newer versions. So now instead of typing grub-install -v
you'd have to use a capital 'V' or the explicit --version
2
I find it more friendly this way. Also grub-probe -V works.
– Luis Alvarado♦
Feb 25 '12 at 1:14
1
basicly everything in your /usr/bin folder that starts with 'grub' does the job
– Daniel W.
Feb 25 '12 at 1:22
1
Uppercase-V
, not lowercase.
– Sopalajo de Arrierez
Nov 3 '14 at 4:43
Ahh thanks for the hint! They must have changed it with a newer version..I'll edit it in the post
– Daniel W.
Nov 3 '14 at 15:22
add a comment |
On clean ubuntu installs the grub package itself doesn't seem to be installed. Thus typing 'grub -anyoption' results in an error that says grub is not installed.
However you can type for example
grub-install -v
And it will give you the correct version of grub currently installed
The version of the Grub is 1.99-21ubuntu3
EDIT: As others have pointed out the commandline flags have been changed in newer versions. So now instead of typing grub-install -v
you'd have to use a capital 'V' or the explicit --version
On clean ubuntu installs the grub package itself doesn't seem to be installed. Thus typing 'grub -anyoption' results in an error that says grub is not installed.
However you can type for example
grub-install -v
And it will give you the correct version of grub currently installed
The version of the Grub is 1.99-21ubuntu3
EDIT: As others have pointed out the commandline flags have been changed in newer versions. So now instead of typing grub-install -v
you'd have to use a capital 'V' or the explicit --version
edited Nov 3 '14 at 16:42
answered Feb 25 '12 at 1:01


Daniel W.Daniel W.
3,01821731
3,01821731
2
I find it more friendly this way. Also grub-probe -V works.
– Luis Alvarado♦
Feb 25 '12 at 1:14
1
basicly everything in your /usr/bin folder that starts with 'grub' does the job
– Daniel W.
Feb 25 '12 at 1:22
1
Uppercase-V
, not lowercase.
– Sopalajo de Arrierez
Nov 3 '14 at 4:43
Ahh thanks for the hint! They must have changed it with a newer version..I'll edit it in the post
– Daniel W.
Nov 3 '14 at 15:22
add a comment |
2
I find it more friendly this way. Also grub-probe -V works.
– Luis Alvarado♦
Feb 25 '12 at 1:14
1
basicly everything in your /usr/bin folder that starts with 'grub' does the job
– Daniel W.
Feb 25 '12 at 1:22
1
Uppercase-V
, not lowercase.
– Sopalajo de Arrierez
Nov 3 '14 at 4:43
Ahh thanks for the hint! They must have changed it with a newer version..I'll edit it in the post
– Daniel W.
Nov 3 '14 at 15:22
2
2
I find it more friendly this way. Also grub-probe -V works.
– Luis Alvarado♦
Feb 25 '12 at 1:14
I find it more friendly this way. Also grub-probe -V works.
– Luis Alvarado♦
Feb 25 '12 at 1:14
1
1
basicly everything in your /usr/bin folder that starts with 'grub' does the job
– Daniel W.
Feb 25 '12 at 1:22
basicly everything in your /usr/bin folder that starts with 'grub' does the job
– Daniel W.
Feb 25 '12 at 1:22
1
1
Uppercase
-V
, not lowercase.– Sopalajo de Arrierez
Nov 3 '14 at 4:43
Uppercase
-V
, not lowercase.– Sopalajo de Arrierez
Nov 3 '14 at 4:43
Ahh thanks for the hint! They must have changed it with a newer version..I'll edit it in the post
– Daniel W.
Nov 3 '14 at 15:22
Ahh thanks for the hint! They must have changed it with a newer version..I'll edit it in the post
– Daniel W.
Nov 3 '14 at 15:22
add a comment |
This will roughly do the job:
dpkg -l | grep grub | grep ii
You should note that just to confuse things that the version 1.9x is known as Grub2. I think they number it in a similar way that people would call the 1600-1699, the 17th century.
1
I find it weird that there is no command for it. like a grub command that grub -v and done. Thanks again Oli you rock ^^.
– Luis Alvarado♦
Feb 25 '12 at 1:02
I think that v1.9 is supposed to be "pre-Grub2" - i.e., an almost ready version. Yet, you'd think that 2.0.x RC# would have been better naming for them...
– Mei
Feb 25 '12 at 2:30
1
The thing is--the grub you may be using to boot may not be installed from the Ubuntu system you are currently running. Therefore I prefer the other answer.
– John S Gruber
Oct 7 '12 at 17:52
add a comment |
This will roughly do the job:
dpkg -l | grep grub | grep ii
You should note that just to confuse things that the version 1.9x is known as Grub2. I think they number it in a similar way that people would call the 1600-1699, the 17th century.
1
I find it weird that there is no command for it. like a grub command that grub -v and done. Thanks again Oli you rock ^^.
– Luis Alvarado♦
Feb 25 '12 at 1:02
I think that v1.9 is supposed to be "pre-Grub2" - i.e., an almost ready version. Yet, you'd think that 2.0.x RC# would have been better naming for them...
– Mei
Feb 25 '12 at 2:30
1
The thing is--the grub you may be using to boot may not be installed from the Ubuntu system you are currently running. Therefore I prefer the other answer.
– John S Gruber
Oct 7 '12 at 17:52
add a comment |
This will roughly do the job:
dpkg -l | grep grub | grep ii
You should note that just to confuse things that the version 1.9x is known as Grub2. I think they number it in a similar way that people would call the 1600-1699, the 17th century.
This will roughly do the job:
dpkg -l | grep grub | grep ii
You should note that just to confuse things that the version 1.9x is known as Grub2. I think they number it in a similar way that people would call the 1600-1699, the 17th century.
answered Feb 25 '12 at 0:59
Oli♦Oli
222k87562764
222k87562764
1
I find it weird that there is no command for it. like a grub command that grub -v and done. Thanks again Oli you rock ^^.
– Luis Alvarado♦
Feb 25 '12 at 1:02
I think that v1.9 is supposed to be "pre-Grub2" - i.e., an almost ready version. Yet, you'd think that 2.0.x RC# would have been better naming for them...
– Mei
Feb 25 '12 at 2:30
1
The thing is--the grub you may be using to boot may not be installed from the Ubuntu system you are currently running. Therefore I prefer the other answer.
– John S Gruber
Oct 7 '12 at 17:52
add a comment |
1
I find it weird that there is no command for it. like a grub command that grub -v and done. Thanks again Oli you rock ^^.
– Luis Alvarado♦
Feb 25 '12 at 1:02
I think that v1.9 is supposed to be "pre-Grub2" - i.e., an almost ready version. Yet, you'd think that 2.0.x RC# would have been better naming for them...
– Mei
Feb 25 '12 at 2:30
1
The thing is--the grub you may be using to boot may not be installed from the Ubuntu system you are currently running. Therefore I prefer the other answer.
– John S Gruber
Oct 7 '12 at 17:52
1
1
I find it weird that there is no command for it. like a grub command that grub -v and done. Thanks again Oli you rock ^^.
– Luis Alvarado♦
Feb 25 '12 at 1:02
I find it weird that there is no command for it. like a grub command that grub -v and done. Thanks again Oli you rock ^^.
– Luis Alvarado♦
Feb 25 '12 at 1:02
I think that v1.9 is supposed to be "pre-Grub2" - i.e., an almost ready version. Yet, you'd think that 2.0.x RC# would have been better naming for them...
– Mei
Feb 25 '12 at 2:30
I think that v1.9 is supposed to be "pre-Grub2" - i.e., an almost ready version. Yet, you'd think that 2.0.x RC# would have been better naming for them...
– Mei
Feb 25 '12 at 2:30
1
1
The thing is--the grub you may be using to boot may not be installed from the Ubuntu system you are currently running. Therefore I prefer the other answer.
– John S Gruber
Oct 7 '12 at 17:52
The thing is--the grub you may be using to boot may not be installed from the Ubuntu system you are currently running. Therefore I prefer the other answer.
– John S Gruber
Oct 7 '12 at 17:52
add a comment |
The package name is grub-pc, so you can do this:
dpkg -l grub-pc
which will show you something like this:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-========================================-=========================-=========================-=====================================================================================
ii grub-pc 2.02~beta2-9ubuntu1.7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)
add a comment |
The package name is grub-pc, so you can do this:
dpkg -l grub-pc
which will show you something like this:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-========================================-=========================-=========================-=====================================================================================
ii grub-pc 2.02~beta2-9ubuntu1.7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)
add a comment |
The package name is grub-pc, so you can do this:
dpkg -l grub-pc
which will show you something like this:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-========================================-=========================-=========================-=====================================================================================
ii grub-pc 2.02~beta2-9ubuntu1.7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)
The package name is grub-pc, so you can do this:
dpkg -l grub-pc
which will show you something like this:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-========================================-=========================-=========================-=====================================================================================
ii grub-pc 2.02~beta2-9ubuntu1.7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)
answered May 5 '16 at 12:07
MirekMirek
211
211
add a comment |
add a comment |
It can be also found out with either of these:
grub-probe --version
grub-probe -V
add a comment |
It can be also found out with either of these:
grub-probe --version
grub-probe -V
add a comment |
It can be also found out with either of these:
grub-probe --version
grub-probe -V
It can be also found out with either of these:
grub-probe --version
grub-probe -V
edited Jan 10 '18 at 17:38
answered Jan 10 '18 at 8:04
Florin fFlorin f
212
212
add a comment |
add a comment |
I'll throw my hat into the ring as well. You can also do it with apt-cache policy grub-pc
:~$ apt-cache policy grub-pc
grub-pc:
Installed: 2.02-2ubuntu8.7
Candidate: 2.02-2ubuntu8.7
Version table:
*** 2.02-2ubuntu8.7 500
500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
100 /var/lib/dpkg/status
2.02-2ubuntu8 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
add a comment |
I'll throw my hat into the ring as well. You can also do it with apt-cache policy grub-pc
:~$ apt-cache policy grub-pc
grub-pc:
Installed: 2.02-2ubuntu8.7
Candidate: 2.02-2ubuntu8.7
Version table:
*** 2.02-2ubuntu8.7 500
500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
100 /var/lib/dpkg/status
2.02-2ubuntu8 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
add a comment |
I'll throw my hat into the ring as well. You can also do it with apt-cache policy grub-pc
:~$ apt-cache policy grub-pc
grub-pc:
Installed: 2.02-2ubuntu8.7
Candidate: 2.02-2ubuntu8.7
Version table:
*** 2.02-2ubuntu8.7 500
500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
100 /var/lib/dpkg/status
2.02-2ubuntu8 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
I'll throw my hat into the ring as well. You can also do it with apt-cache policy grub-pc
:~$ apt-cache policy grub-pc
grub-pc:
Installed: 2.02-2ubuntu8.7
Candidate: 2.02-2ubuntu8.7
Version table:
*** 2.02-2ubuntu8.7 500
500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
100 /var/lib/dpkg/status
2.02-2ubuntu8 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
answered Oct 30 '18 at 14:13


TerranceTerrance
19.6k34797
19.6k34797
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f107486%2fhow-to-know-the-version-of-grub%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
F8ebQpEspYvgUBxFnEQcMt0SaLxQ