{"id":15059155,"url":"https://github.com/stephane-klein/vagrant-virtualbox-fedora","last_synced_at":"2026-02-09T04:05:16.656Z","repository":{"id":99041075,"uuid":"463321406","full_name":"stephane-klein/vagrant-virtualbox-fedora","owner":"stephane-klein","description":"Install Vagrant + VirtualBox provider on Fedora","archived":false,"fork":false,"pushed_at":"2025-02-04T15:11:30.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-29T12:56:44.273Z","etag":null,"topics":["fedora-workstation","vagrant","virtualbox"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stephane-klein.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-24T22:31:53.000Z","updated_at":"2025-02-04T15:11:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"f4f68cae-b3be-4130-abc8-09b00f4db54b","html_url":"https://github.com/stephane-klein/vagrant-virtualbox-fedora","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stephane-klein/vagrant-virtualbox-fedora","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stephane-klein%2Fvagrant-virtualbox-fedora","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stephane-klein%2Fvagrant-virtualbox-fedora/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stephane-klein%2Fvagrant-virtualbox-fedora/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stephane-klein%2Fvagrant-virtualbox-fedora/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stephane-klein","download_url":"https://codeload.github.com/stephane-klein/vagrant-virtualbox-fedora/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stephane-klein%2Fvagrant-virtualbox-fedora/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29255986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T03:07:45.136Z","status":"ssl_error","status_checked_at":"2026-02-09T03:07:24.123Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fedora-workstation","vagrant","virtualbox"],"created_at":"2024-09-24T22:38:39.882Z","updated_at":"2026-02-09T04:05:16.632Z","avatar_url":"https://github.com/stephane-klein.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Install Vagrant + VirtualBox provider on Fedora Workstation\n\nHost: Fedora Workstation 41  \nGuest: [Ubuntu 24.04 LTS](https://en.wikipedia.org/wiki/Ubuntu_version_history#Ubuntu_24.04_LTS_(Noble_Numbat))\n\n[VirtualBox](https://en.wikipedia.org/wiki/VirtualBox) package is installed from [RPM Fusion](https://rpmfusion.org) repository.\n\n## Prepare your computer\n\n1. disable secure boot.\n2. Configure RPM Fusion (if you haven't already):\n\n```sh\n$ sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm\n```\n\n3. Install VirtualBox package\n\n```sh\n$ sudo dnf install -y VirtualBox\n```\n\n4. Configure Hashicorp RPM repository to install Vagrant (if you haven't already):\n\n```sh\n$ sudo dnf install -y dnf-plugins-core\n$ sudo dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo\n```\n\n5. Install Vagrant:\n\n```sh\n$ sudo dnf -y install vagrant\n```\n\n6. Checking installed versions:\n\n```sh\n$ vagrant version\nInstalled Version: 2.4.3\nLatest Version: 2.4.3\n```\n\n```sh\n$ VBoxManage --version\n7.1.4_rpmfusionr165100\n```\n\n## Vagrant Ubuntu image\n\nSince version 24.04, Ubuntu [no longer seems to offer the official Vagrant image](https://discourse.ubuntu.com/t/ubuntu-24-04-lts-noble-numbat-release-notes/39890):\n\n\u003e Starting in Ubuntu 24.04, Ubuntu no longer produces Vagrant images. Documentation regarding creating an Ubuntu Base Image from scratch is provided at https://documentation.ubuntu.com/public-images/en/latest/public-images-how-to/build-vagrant-with-bartender/ 84.\n\nI've chosen more or less arbitrarily to use the following Vagrant image: [`bento/ubuntu-24.04`](https://portal.cloud.hashicorp.com/vagrant/discover/bento/ubuntu-24.04)\n\nIf you know of a reliable image, please feel free to share it with me \u003ccontact@stephane-klein.info\u003e.\n\n## Start and enter in guest VM\n\n```sh\n$ vagrant box update  # can fix some issue, like https://github.com/stephane-klein/vagrant-virtualbox-fedora/issues/1\n$ vagrant up\n$ vagrant ssh\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstephane-klein%2Fvagrant-virtualbox-fedora","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstephane-klein%2Fvagrant-virtualbox-fedora","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstephane-klein%2Fvagrant-virtualbox-fedora/lists"}