{"id":31667802,"url":"https://github.com/onggizam/my-ubuntu","last_synced_at":"2026-07-21T01:37:26.520Z","repository":{"id":272918607,"uuid":"918146421","full_name":"onggizam/my-ubuntu","owner":"onggizam","description":"Install Ubuntu on Oracle VirtualBox","archived":false,"fork":false,"pushed_at":"2025-01-17T11:45:02.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-07-21T01:37:24.036Z","etag":null,"topics":["linux","oracle-virtualbox","ubuntu","ubuntu2204","virtualbox","vm"],"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/onggizam.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-17T10:41:48.000Z","updated_at":"2025-01-17T11:47:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"375c79d0-eda8-43ee-8d5c-48bd6b39a029","html_url":"https://github.com/onggizam/my-ubuntu","commit_stats":null,"previous_names":["seunggihong/my-ubuntu","onggizam/my-ubuntu"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/onggizam/my-ubuntu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onggizam%2Fmy-ubuntu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onggizam%2Fmy-ubuntu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onggizam%2Fmy-ubuntu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onggizam%2Fmy-ubuntu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/onggizam","download_url":"https://codeload.github.com/onggizam/my-ubuntu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onggizam%2Fmy-ubuntu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35705774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"ssl_error","status_checked_at":"2026-07-20T02:08:09.736Z","response_time":111,"last_error":"SSL_read: 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":["linux","oracle-virtualbox","ubuntu","ubuntu2204","virtualbox","vm"],"created_at":"2025-10-08T00:18:37.547Z","updated_at":"2026-07-21T01:37:26.484Z","avatar_url":"https://github.com/onggizam.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Oracle VirtualBox Ubuntu Setting Docs\n\nThis repo is a document with Ubuntu servers installed in Oracle Virtualbox.\n\n## Contents\n\n### [1. Install Tools.](#install)\n\n### [2. Settings Ubuntu.](#settings)\n\n\u003ca name='install'\u003e\u003c/a\u003e\n\n## 1. Install Tools.\n\n### Install Oracle VirtualBox\n\n### [Download Link 👈](https://www.virtualbox.org/)\n\n### Install Ubuntu 22.04 LTS Server\n\n![Static Badge](https://img.shields.io/badge/ubuntu-22.04-%23ffffff?style=flat-square\u0026logo=Ubuntu\u0026logoColor=white\u0026labelColor=%23E95420)\n\n### [Download Link 👈](https://releases.ubuntu.com/jammy/)\n\nWhen the installation is complete, turn on the `Oracle virtualbox` and create a new virtual machine. At this time, insert the downloaded `Ubuntu ISO image` and create it.\n\n\u003ca name='install'\u003e\u003c/a\u003e\n\n## 2. Settings ubuntu.\n\nDownload the required Linux package. If you install `net-tools`, you can use the `ifconfig` command.\n\n```bash\n$ sudo apt install net-tools\n$ ifconfig\n# Show your IP Addresses and Adapter Names\n```\n\nI will fix my VM(virtual machine) IP Addresses.\n\n```bash\n$ sudo vi /etc/netplan/50-cloud-init.yaml\n# File name can be difference. ex) 00-installer-config.yaml\n```\n\nAnd typing like this..\n\n```yaml\nnetwork:\n  ethernets:\n    enp0s3:\n      addresses:\n        - 192.168.1.10/24 # Input the IP Address you want.\n      nameservers:\n        addresses: [8.8.8.8, 8.8.4.4]\n      routes:\n        - to: default\n          via: 192.168.1.1\n  version: 2\n```\n\n```bash\n# Apply command\n$ sudo netplan apply\n# Check Ip address.\n$ ifconfig\n```\n\nBut it is not done. because we can `Port Fowarding`.\n\nOpen Oracle VirtualBox Manager. And Click `Tools -\u003e Network`.\n\n![Image](https://github.com/user-attachments/assets/06c43986-a8ce-48ce-94ba-52b94bb2fdc9)\n\nCreate, Typing General Options, Typing Port Forwarding. Like This..\n\n![Image](https://github.com/user-attachments/assets/b7c225c0-cdea-4228-a6b9-40b66909a615)\n\nFinally, Fix Master VM Network.\n\n![Image](https://github.com/user-attachments/assets/d8b73876-7cc4-43ac-8cf9-162bd15243f0)\n\nWe Are Done!!\n\n### If you want intall Hadoop Cluster and Kubernetes Cluster?\n\n[Hadoop Settings Link 👈](https://github.com/seunggihong/hadoop-install-guide)\n\n[Kubernetes Settings Link 👈](https://github.com/seunggihong/k8s-cluster-setting)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonggizam%2Fmy-ubuntu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fonggizam%2Fmy-ubuntu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonggizam%2Fmy-ubuntu/lists"}