{"id":23946156,"url":"https://github.com/ermos/linux-init","last_synced_at":"2026-03-01T01:35:28.955Z","repository":{"id":99161656,"uuid":"606286220","full_name":"ermos/linux-init","owner":"ermos","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-18T23:41:25.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-24T07:16:05.753Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ermos.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":"2023-02-25T03:17:15.000Z","updated_at":"2023-02-25T03:17:15.000Z","dependencies_parsed_at":"2024-02-19T00:55:59.957Z","dependency_job_id":null,"html_url":"https://github.com/ermos/linux-init","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ermos/linux-init","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermos%2Flinux-init","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermos%2Flinux-init/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermos%2Flinux-init/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermos%2Flinux-init/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ermos","download_url":"https://codeload.github.com/ermos/linux-init/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermos%2Flinux-init/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29957404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T22:53:01.873Z","status":"ssl_error","status_checked_at":"2026-02-28T22:52:50.699Z","response_time":90,"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":[],"created_at":"2025-01-06T08:28:44.133Z","updated_at":"2026-03-01T01:35:28.936Z","avatar_url":"https://github.com/ermos.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# From Command-line\n```shell\n# Remove useless folders\nrm -r ~/Music\nrm -r ~/Templates\n# Disable apache 2\nsudo systemctl disable apache2 \u0026\u0026 sudo systemctl stop apache2\nsudo apt purge -y apache2\n# Install default apps\necho \"deb [trusted=yes arch=amd64] https://download.konghq.com/insomnia-ubuntu/ default all\" \\\n    | sudo tee -a /etc/apt/sources.list.d/insomnia.list\nsudo add-apt-repository ppa:peek-developers/stable\nsudo apt update\nsudo apt upgrade -y\nsudo apt install -y net-tools\nsudo apt install -y python3-launchpadlib\nsudo apt install -y snapd\nsudo snap install core\nsudo snap install snapcraft --classic\nsudo apt install -y curl\nsudo apt install -y libfuse2\nsudo apt install -y gnome-tweaks\nsudo apt install -y mariadb-client\nsudo apt install -y vim\nsudo apt install -y git\nsudo apt install -y htop\nsudo apt install -y peek\nsudo apt install -y insomnia\n# Chrome\nsudo wget -q -O /tmp/chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb\nsudo dpkg -i /tmp/chrome.deb\n# Node\nsudo wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash\n# Golang\nsudo wget -q -O /tmp/go.tar.gz https://golang.org/dl/$(curl -s https://go.dev/VERSION?m=text | awk 'NR==1').linux-amd64.tar.gz\nsudo rm -rf /usr/local/go\nsudo tar -C /usr/local -xzf /tmp/go.tar.gz\necho \"# Golang\" \u003e\u003e ~/.bashrc\necho \"export PATH=\\$PATH:/usr/local/go/bin:~/go/bin\" \u003e\u003e ~/.bashrc\n# PHP\nsudo apt install -y software-properties-common ca-certificates lsb-release apt-transport-https\nsudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg\necho \"deb https://packages.sury.org/php/ $(lsb_release -sc) main\" | sudo tee /etc/apt/sources.list.d/php.list\nsudo apt update\nsudo apt install -y php8.3\ncurl -sS https://getcomposer.org/installer | php \u0026\u0026 sudo mv composer.phar /usr/local/bin/composer\n# Terminator\nsudo apt install -y terminator\nmkdir -p .config/terminator\nwget -q -O .config/terminator/config https://gist.githubusercontent.com/ermos/c3fb706718e47c09781fbb51a62261ce/raw/ba24c0f94b76dd1d19215a535ab5b3e898d42528/config\n# Remove useless apps\nsudo apt purge -y libreoffice-*\nsudo apt purge -y firefox-esr*\nsudo apt purge -y transmission-*\nsudo apt purge -y cheese\nsudo apt purge -y rhythmbox\nsudo apt purge -y gnome-terminal\nsudo apt purge -y gnome-contacts\nsudo apt purge -y gnome-games\nsudo apt purge -y gnome-maps\nsudo apt purge -y gnome-software\nsudo apt purge -y gnome-music\nsudo apt purge -y gnome-weather\nsudo apt purge -y gnome-sound-recorder\nsudo apt purge -y evolution\nsudo apt purge -y shotwell\nsudo apt -y autoremove\nsudo apt autoclean\n```\n\n## From web\n\n### Docker\n- https://docs.docker.com/engine/install/debian/\n\n### Jetbrains Toolbox\n- https://www.jetbrains.com/fr-fr/toolbox-app/\n- ``sudo tar -xzf jetbrains-toolbox-1.17.7391.tar.gz -C /opt``\n\naction :\n- disable mouse acceleration\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fermos%2Flinux-init","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fermos%2Flinux-init","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fermos%2Flinux-init/lists"}