There is a bug on the website

Here you can provide suggestions on how to improve the product, website, etc.
Post Reply
mahma90
Posts: 6
Joined: 25. Feb 2023, 18:25

There is a bug on the website

Post by mahma90 »

I am not sure if the VirtualBox bug tracker is also for the website. Does anybody know? That's why I post it here.

The bug is on this page. (mod edit: this is the Linux Downloads page)

There is a syntax error in this command:

Code: Select all

sudo gpg --dearmor oracle_vbox_2016.asc --yes --output /usr/share/keyrings/oracle-virtualbox-2016.gpg
It throws this error:

Code: Select all

gpg: Note: '--yes' is not considered an option
gpg: Note: '--output' is not considered an option
usage: gpg [options] --dearmor [file]
It must be this instead (parameter order matters):

Code: Select all

sudo gpg --yes --output /usr/share/keyrings/oracle-virtualbox-2016.gpg --dearmor oracle_vbox_2016.asc
Where to report this error? Perhaps someone can report it for me (I don't want to join the mailing list)?
scottgus1
Site Moderator
Posts: 20945
Joined: 30. Dec 2009, 20:14
Primary OS: MS Windows 10
VBox Version: PUEL
Guest OSses: Windows, Linux

Re: There is a bug on the website

Post by scottgus1 »

Thanks for letting us know. I'll pass this on to the forum admin Klaus, who may be able to get it to the main website admins and devs for checking.
klaus
Oracle Corporation
Posts: 1139
Joined: 10. May 2007, 14:57

Re: There is a bug on the website

Post by klaus »

Many thanks for pointing it out. Fixed. The incorrect commands have been there for 1.5 years without anyone noticing (or more precisely without anyone questioning the correctness). The order dependent option processing is extremely unusual for any command line tool.
Post Reply